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
40f37195
Commit
40f37195
authored
Feb 03, 2020
by
华国豪
🙄
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
8a232393
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
58 additions
and
1 deletion
+58
-1
CarDetails.vue
src/components/LeaderManagement/CarDetails.vue
+14
-0
DinningDetails.vue
src/components/LeaderManagement/DinningDetails.vue
+14
-0
leaderPayHotelDetail.vue
src/components/LeaderManagement/leaderPayHotelDetail.vue
+14
-0
leaderPayTicketDetail.vue
src/components/LeaderManagement/leaderPayTicketDetail.vue
+15
-0
workManager2.vue
src/components/work/workManager2.vue
+1
-1
No files found.
src/components/LeaderManagement/CarDetails.vue
View file @
40f37195
...
...
@@ -17,6 +17,7 @@
<th>
金额
</th>
<th>
币种
</th>
<th>
支付方式
</th>
<th>
附件
</th>
<th>
备注
</th>
</tr>
<tr>
...
...
@@ -54,6 +55,16 @@
<p
v-if=
"item.ReimburseList.SettlementType==1"
>
现金支付
</p>
<p
v-if=
"item.ReimburseList.SettlementType==2"
>
公司结算
</p>
</td>
<td
>
<div
v-if=
"item.ReimburseList.VoucherPicList.length"
>
<div
v-for=
"(vou, vouIndex) in item.ReimburseList.VoucherPicList"
:key=
"vouIndex"
>
<img
@
click=
"openImg(vou.url)"
style=
"width: 20px;height: 20px;"
:src=
"vou.url"
alt=
""
>
</div>
</div>
<div
v-else
>
无
</div>
</td>
<td>
{{
item
.
ReimburseList
.
Remarks
}}
</td>
</tr>
...
...
@@ -113,6 +124,9 @@ export default {
query
:
{
id
:
id
,
blank
:
"y"
,
tab
:
name
}
});
},
openImg
(
src
){
window
.
open
(
src
,
"_blank"
);
},
handleCurrentChange
(
val
)
{
this
.
msg
.
pageIndex
=
val
;
this
.
getList
();
...
...
src/components/LeaderManagement/DinningDetails.vue
View file @
40f37195
...
...
@@ -16,6 +16,7 @@
<th>
实付
</th>
<th>
币种
</th>
<th>
支付方式
</th>
<th>
附件
</th>
<th>
备注
</th>
</tr>
<tr>
...
...
@@ -60,6 +61,16 @@
<td
v-if=
"childIndex==0"
:rowspan=
"subItem.DiningPriceList.length"
>
{{
urrencyTypeObj
[
subItem
.
ReimburseList
.
CurrencyId
]
}}
</td>
<td
v-if=
"childIndex==0"
:rowspan=
"subItem.ReimburseList.ReimburseDetailsList.length"
>
<div
v-if=
"subItem.ReimburseList.VoucherPicList.length"
>
<div
v-for=
"(vou, vouIndex) in subItem.ReimburseList.VoucherPicList"
:key=
"vouIndex"
>
<img
@
click=
"openImg(vou.url)"
style=
"width: 20px;height: 20px;"
:src=
"vou.url"
alt=
""
>
</div>
</div>
<div
v-else
>
无
</div>
</td>
<td
v-if=
"childIndex==0"
:rowspan=
"subItem.DiningPriceList.length"
>
{{
subItem
.
ReimburseList
.
Remarks
}}
</td>
...
...
@@ -153,6 +164,9 @@ export default {
this
.
msg
.
pageIndex
=
1
;
this
.
currentPage
=
1
;
},
openImg
(
src
){
window
.
open
(
src
,
"_blank"
);
},
getList
()
{
this
.
loading
=
true
;
...
...
src/components/LeaderManagement/leaderPayHotelDetail.vue
View file @
40f37195
...
...
@@ -15,6 +15,7 @@
<th>
金额小计
</th>
<th>
支付方式
</th>
<th>
币种
</th>
<th>
附件
</th>
<th>
备注
</th>
</tr>
<template
v-for=
'(item,index) in dataList'
>
...
...
@@ -48,6 +49,16 @@
<td
v-if=
"childIndex==0"
:rowspan=
"item.ReimburseList.ReimburseDetailsList.length"
>
{{
getCurrencyStr
(
item
.
ReimburseList
.
CurrencyId
)
}}
</td>
<td
v-if=
"childIndex==0"
:rowspan=
"item.ReimburseList.ReimburseDetailsList.length"
>
<div
v-if=
"item.ReimburseList.VoucherPicList.length"
>
<div
v-for=
"(vou, vouIndex) in item.ReimburseList.VoucherPicList"
:key=
"vouIndex"
>
<img
@
click=
"openImg(vou.url)"
style=
"width: 20px;height: 20px;"
:src=
"vou.url"
alt=
""
>
</div>
</div>
<div
v-else
>
无
</div>
</td>
<td
v-if=
"childIndex==0"
:rowspan=
"item.ReimburseList.ReimburseDetailsList.length"
>
{{
item
.
ReimburseList
.
Remarks
}}
</td>
...
...
@@ -94,6 +105,9 @@ export default {
}
}
},
openImg
(
src
){
window
.
open
(
src
,
"_blank"
);
},
//获取数据
getList
(
TCIDs
,
date
)
{
this
.
loading
=
true
;
...
...
src/components/LeaderManagement/leaderPayTicketDetail.vue
View file @
40f37195
...
...
@@ -15,6 +15,7 @@
<th>
金额小计
</th>
<th>
支付方式
</th>
<th>
币种
</th>
<th>
附件
</th>
<th>
备注
</th>
</tr>
<template
v-for=
'(item,index) in dataList'
>
...
...
@@ -48,6 +49,16 @@
<td
v-if=
"childIndex==0"
:rowspan=
"subItem.ReimburseList.ReimburseDetailsList.length"
>
{{
getCurrencyStr
(
subItem
.
ReimburseList
.
CurrencyId
)
}}
</td>
<td
v-if=
"childIndex==0"
:rowspan=
"subItem.ReimburseList.ReimburseDetailsList.length"
>
<div
v-if=
"subItem.ReimburseList.VoucherPicList.length"
>
<div
v-for=
"(vou, vouIndex) in subItem.ReimburseList.VoucherPicList"
:key=
"vouIndex"
>
<img
@
click=
"openImg(vou.url)"
style=
"width: 20px;height: 20px;"
:src=
"vou.url"
alt=
""
>
</div>
</div>
<div
v-else
>
无
</div>
</td>
<td
v-if=
"childIndex==0"
:rowspan=
"subItem.ReimburseList.ReimburseDetailsList.length"
>
{{
subItem
.
ReimburseList
.
Remarks
}}
</td>
...
...
@@ -88,6 +99,9 @@ export default {
}
}
},
openImg
(
src
){
window
.
open
(
src
,
"_blank"
);
},
//获取数据
getList
(
TCIDs
,
date
)
{
this
.
loading
=
true
;
...
...
@@ -109,6 +123,7 @@ export default {
dataList
=
data
}
this
.
dataList
=
dataList
;
console
.
log
(
dataList
)
}
else
{
this
.
Error
(
res
.
data
.
message
);
}
...
...
src/components/work/workManager2.vue
View file @
40f37195
...
...
@@ -54,7 +54,7 @@
></el-option>
</el-select>
</li>
<li>
<li
v-if=
"false"
>
<span>
<em>
审批状态
</em>
<el-select
class=
"w200"
v-model=
"msg.examineStatus"
>
...
...
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