Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
罗超
SuperMan
Commits
351f9898
Commit
351f9898
authored
Mar 20, 2025
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
96f92e07
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
243 additions
and
0 deletions
+243
-0
TravelItinerary.vue
.../FinancialModule/MonthlyCostStatement/TravelItinerary.vue
+235
-0
config.js
src/router/config.js
+8
-0
No files found.
src/components/FinancialModule/MonthlyCostStatement/TravelItinerary.vue
0 → 100644
View file @
351f9898
<
style
scoped
>
/
deep
/
.el-table
th
.el-table__cell
{
background-color
:
#E6E6E6
;
}
</
style
>
<
template
>
<div
class=
"page_fnDm page_RecPayQuery"
@
keyup
.
enter=
"resetPageIndex()"
>
<div
class=
"query-box"
style=
"margin-bottom: 0px;"
>
<el-form
class=
"_info_box clearfix"
label-width=
"110px"
>
<el-row
style=
"padding:15px 20px 0 0;"
>
<el-col
:span=
"5"
>
<el-form-item
label=
"出团月份"
>
<el-date-picker
class=
"h34"
v-model=
"missionDate"
@
change=
"timeAdd()"
type=
"monthrange"
value-format=
"yyyy-MM"
>
</el-date-picker>
</el-form-item>
</el-col>
</el-row>
</el-form>
<ul
class=
"clearfix"
>
<li
class=
"hight_query"
>
<button
class=
"hollowFixedBtn"
@
click=
"resetPageIndex()"
>
{{
$t
(
'pub.searchBtn'
)
}}
</button>
<!--
<button
class=
"normalBtn"
@
click=
"method5()"
>
{{
$t
(
'visa.v_daochu'
)
}}
</button>
-->
</li>
</ul>
</div>
<div
class=
"_fnDm_content"
v-loading=
'loading'
>
<el-table
ref=
"multipleTable"
:data=
"DataList"
tooltip-effect=
"dark"
style=
"width: 100%"
row-key=
"FrID"
>
<el-table-column
prop=
"StartDate"
label=
"月份"
width=
"100"
>
<template
slot-scope=
"scope"
>
{{
scope
.
row
.
StartDate
}}
</
template
>
</el-table-column>
<el-table-column
prop=
"AccountAlias"
label=
"平台别名"
width=
"260"
show-overflow-tooltip
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
AccountAlias
}}
</
template
>
</el-table-column>
<el-table-column
prop=
"CardNum"
label=
"卡号"
width=
"260"
show-overflow-tooltip
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
CardNum
}}
</
template
>
</el-table-column>
<el-table-column
prop=
"TotalMoney"
label=
"累计付款"
width=
"260"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
TotalMoney
}}
</
template
>
</el-table-column>
<el-table-column
prop=
"InvoiceMoney"
label=
"发票金额"
width=
"260"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
InvoiceMoney
}}
</
template
>
</el-table-column>
<el-table-column
prop=
"ItineraryMoney"
label=
"行程单金额"
width=
"260"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
ItineraryMoney
}}
</
template
>
</el-table-column>
<el-table-column
prop=
"SurplusMoney"
label=
"差额"
width=
"260"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
SurplusMoney
}}
</
template
>
</el-table-column>
<el-table-column
prop=
""
label=
"操作"
show-overflow-tooltip
>
<
template
slot-scope=
"scope"
>
<i
class=
"el-icon-edit"
style=
"cursor: pointer;"
@
click=
"showEdit(scope.row)"
></i>
</
template
>
</el-table-column>
</el-table>
<div
style=
"padding-bottom:15px"
>
<el-pagination
background
@
size-change=
"handleSizeChange"
@
current-change=
"handleCurrentChanges"
layout=
"total,sizes,prev, pager, next, jumper"
:page-sizes=
"[100,200,300,400,500]"
:page-size=
"msg.pageSize"
:current-page
.
sync=
"currentPage"
:total=
'total'
>
</el-pagination>
</div>
</div>
<el-dialog
:title=
"addMsg.AccountAlias"
:visible
.
sync=
"dialogFormVisible"
width=
"400px"
:close-on-click-modal=
"false"
>
<el-form
:model=
"addMsg"
>
<el-form-item
label=
"发票金额"
label-width=
"120px"
>
<el-input
v-model=
"addMsg.InvoiceMoney"
autocomplete=
"off"
></el-input>
</el-form-item>
<el-form-item
label=
"行程单额"
label-width=
"120px"
>
<el-input
v-model=
"addMsg.ItineraryMoney"
autocomplete=
"off"
></el-input>
</el-form-item>
</el-form>
<div
slot=
"footer"
class=
"dialog-footer"
>
<el-button
@
click=
"dialogFormVisible = false"
>
取 消
</el-button>
<el-button
type=
"primary"
@
click=
"submitMoney()"
>
确 定
</el-button>
</div>
</el-dialog>
</div>
</template>
<
script
>
import
Vue
from
'vue'
export
default
{
data
()
{
return
{
msg
:
{
pageIndex
:
1
,
pageSize
:
100
,
StartDate
:
''
,
EndDate
:
''
,
EmployeeId
:
''
,
},
DataList
:
[],
missionDate
:
[],
loading
:
false
,
currentPage
:
1
,
total
:
0
,
dialogFormVisible
:
false
,
addMsg
:{
AccountAlias
:
''
,
StartDate
:
''
,
ClientAccountId
:
0
,
InvoiceMoney
:
0
,
ItineraryMoney
:
0
}
}
},
created
()
{
if
(
this
.
$route
.
query
.
pageIndex
)
{
this
.
msg
.
pageIndex
=
this
.
$route
.
query
.
pageIndex
;
}
var
now
=
new
Date
();
let
sDate
=
now
.
getFullYear
()
+
'-'
+
now
.
getMonth
();
let
eDate
=
sDate
;
this
.
missionDate
=
[
sDate
,
eDate
];
this
.
msg
.
StartDate
=
sDate
;
this
.
msg
.
EndDate
=
eDate
;
},
mounted
()
{
let
userInfo
=
this
.
getLocalStorage
();
this
.
msg
.
EmployeeId
=
userInfo
.
EmployeeId
;
this
.
getPageList
();
},
methods
:
{
// 单据详情
openDetails
(
FrID
)
{
let
query
=
{
id
:
FrID
,
blank
:
"y"
,
};
this
.
$router
.
push
({
path
:
"/FinancialDocumentsDetail"
,
query
});
},
handleSizeChange
(
val
)
{
this
.
msg
.
pageSize
=
val
this
.
msg
.
pageIndex
=
1
;
this
.
getPageList
();
},
handleCurrentChanges
(
val
)
{
this
.
msg
.
pageIndex
=
val
;
this
.
getPageList
();
},
getPageList
()
{
// 获取列表数据
this
.
loading
=
true
;
this
.
apipost
(
'Financial_post_GetAirTravelItineraryPageList'
,
this
.
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
total
=
res
.
data
.
data
.
count
;
if
(
this
.
total
==
0
)
{
this
.
DataList
=
[];
}
else
{
this
.
DataList
=
res
.
data
.
data
.
pageData
;
}
this
.
loading
=
false
;
}
else
{
this
.
loading
=
false
;
this
.
$message
.
error
(
res
.
data
.
message
);
}
this
.
currentPage
=
parseInt
(
this
.
msg
.
pageIndex
);
},
err
=>
{})
},
method5
:
function
()
{
if
(
!
this
.
msg
.
CreateBy
)
this
.
msg
.
CreateBy
=
0
;
let
time
=
this
.
getBeforeDate
(
0
,
new
Date
().
Format
(
"yyyy-MM-dd"
))
var
fileName
=
`凭证编号
${
time
}
.xls`
;
this
.
GetLocalFile
(
"Financial_post_GetAccountVoucherNumberListToExcel"
,
this
.
msg
,
fileName
);
},
timeAdd
()
{
// 日期格式
if
(
!
this
.
missionDate
)
{
this
.
msg
.
StartDate
=
''
;
this
.
msg
.
EndDate
=
''
;
return
}
this
.
msg
.
StartDate
=
this
.
missionDate
[
0
];
this
.
msg
.
EndDate
=
this
.
missionDate
[
1
];
},
handleCurrentChange
(
val
)
{
//翻页
this
.
msg
.
pageIndex
=
val
;
this
.
getPageList
();
},
resetPageIndex
()
{
// 重置页码
this
.
msg
.
pageIndex
=
1
;
this
.
currentPage
=
1
;
this
.
getPageList
()
},
showEdit
(
row
){
this
.
addMsg
.
AccountAlias
=
row
.
AccountAlias
;
this
.
addMsg
.
StartDate
=
row
.
StartDate
;
this
.
addMsg
.
ClientAccountId
=
row
.
ClientAccountId
;
this
.
addMsg
.
InvoiceMoney
=
row
.
InvoiceMoney
;
this
.
addMsg
.
ItineraryMoney
=
row
.
ItineraryMoney
;
this
.
dialogFormVisible
=
true
;
},
submitMoney
(){
this
.
apipost
(
"Financial_post_SetAirTravelItinerary"
,
this
.
addMsg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
$message
.
success
(
res
.
data
.
message
);
this
.
dialogFormVisible
=
false
;
this
.
getPageList
();
}
else
{
this
.
Error
(
res
.
data
.
message
);
}
this
.
dialogFormVisible
=
false
},
err
=>
{}
);
}
}
}
</
script
>
src/router/config.js
View file @
351f9898
...
@@ -4330,6 +4330,14 @@ export default {
...
@@ -4330,6 +4330,14 @@ export default {
title
:
'凭证编号查询'
title
:
'凭证编号查询'
},
},
},
},
{
//财务 团队发票/行程单维护
path
:
'/TravelItinerary'
,
name
:
'TravelItinerary'
,
component
:
resolve
=>
require
([
'@/components/FinancialModule/MonthlyCostStatement/TravelItinerary'
],
resolve
),
meta
:
{
title
:
'机票行程单'
},
},
{
//财务 财务单据 帮收帮付公司
{
//财务 财务单据 帮收帮付公司
path
:
'/HelpBranch'
,
path
:
'/HelpBranch'
,
name
:
'HelpBranch'
,
name
:
'HelpBranch'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment