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
1b3e33a4
Commit
1b3e33a4
authored
Nov 12, 2024
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
53ff14bb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
8 deletions
+11
-8
index.vue
...ponents/FinancialModule/ConsolidationOfAccounts/index.vue
+6
-5
ClientBankAccount.vue
...mponents/FinancialModule/components/ClientBankAccount.vue
+5
-3
No files found.
src/components/FinancialModule/ConsolidationOfAccounts/index.vue
View file @
1b3e33a4
...
@@ -398,9 +398,9 @@
...
@@ -398,9 +398,9 @@
<el-table-column
v-if=
"msg.IsAirTicketSelect=='1'"
<el-table-column
v-if=
"msg.IsAirTicketSelect=='1'"
prop=
""
prop=
""
:label=
"$t('objFill.caiwubz')"
:label=
"$t('objFill.caiwubz')"
show-overflow-tooltip
show-overflow-tooltip
width=
"120"
>
width=
"120"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<div>
{{
scope
.
row
.
Remark
}}
</div>
<div>
{{
scope
.
row
.
Remark
}}
</div>
<template
v-if=
"scope.row.vorcherInos"
>
<template
v-if=
"scope.row.vorcherInos"
>
<div
v-for=
"(vitem,index) in scope.row.vorcherInos"
style=
"display: flex;flex-direction: row;flex-wrap: wrap;"
>
<div
v-for=
"(vitem,index) in scope.row.vorcherInos"
style=
"display: flex;flex-direction: row;flex-wrap: wrap;"
>
...
@@ -414,7 +414,7 @@
...
@@ -414,7 +414,7 @@
<div
class=
"iconfont _wenjian_P"
<div
class=
"iconfont _wenjian_P"
:class=
"vitem.Content.substring(vitem.Content.lastIndexOf('.')+1,vitem.Content.length).toUpperCase()=='PDF'? 'icon-pdf' : 'icon-excel'"
:class=
"vitem.Content.substring(vitem.Content.lastIndexOf('.')+1,vitem.Content.length).toUpperCase()=='PDF'? 'icon-pdf' : 'icon-excel'"
@
click=
"showUpLoadFile(vitem.Content)"
>
@
click=
"showUpLoadFile(vitem.Content)"
>
</div>
</div>
</div>
</div>
</div>
</div>
...
@@ -817,11 +817,12 @@
...
@@ -817,11 +817,12 @@
x
.
srcList
=
[]
x
.
srcList
=
[]
})
})
}
}
arrList
(
data
)
arrList
(
data
)
for
(
let
i
=
0
;
i
<
data
.
length
;
i
++
){
for
(
let
i
=
0
;
i
<
data
.
length
;
i
++
){
if
(
data
[
i
].
vorcherInos
)
{
if
(
data
[
i
].
vorcherInos
)
{
data
[
i
].
srcList
=
data
[
i
].
vorcherInos
.
map
(
x
=>
{
if
(
x
.
Type
==
3
)
return
x
.
Content
})
let
list
=
data
[
i
].
vorcherInos
.
filter
(
x
=>
{
return
x
.
Type
==
3
})
data
[
i
].
srcList
=
list
.
map
(
x
=>
{
if
(
x
.
Type
==
3
)
return
x
.
Content
})
}
}
}
}
let
userInfo
=
this
.
getLocalStorage
();
let
userInfo
=
this
.
getLocalStorage
();
...
...
src/components/FinancialModule/components/ClientBankAccount.vue
View file @
1b3e33a4
...
@@ -440,7 +440,7 @@
...
@@ -440,7 +440,7 @@
this
.
saveMsg
.
FrId
=
this
.
GetDetail
.
FrID
this
.
saveMsg
.
FrId
=
this
.
GetDetail
.
FrID
this
.
saveMsg
.
Voucher
=
this
.
GetDetail
.
FInnerVoucher
&&
this
.
GetDetail
.
FInnerVoucher
.
length
>
0
?
JSON
.
parse
(
JSON
.
stringify
(
this
.
GetDetail
.
FInnerVoucher
)):[]
this
.
saveMsg
.
Voucher
=
this
.
GetDetail
.
FInnerVoucher
&&
this
.
GetDetail
.
FInnerVoucher
.
length
>
0
?
JSON
.
parse
(
JSON
.
stringify
(
this
.
GetDetail
.
FInnerVoucher
)):[]
this
.
saveMsg
.
Remark
=
this
.
GetDetail
.
FInnerRemark
this
.
saveMsg
.
Remark
=
this
.
GetDetail
.
FInnerRemark
this
.
srcList
=
this
.
GetDetail
.
FInnerVoucher
&&
this
.
GetDetail
.
FInnerVoucher
.
length
>
0
?
this
.
GetDetail
.
FInnerVoucher
.
map
(
x
=>
{
if
(
x
.
Type
==
3
)
return
x
.
Content
}):[]
this
.
srcList
=
this
.
GetDetail
.
FInnerVoucher
&&
this
.
GetDetail
.
FInnerVoucher
.
length
>
0
?
this
.
GetDetail
.
FInnerVoucher
.
map
(
x
=>
{
return
x
.
Content
}):[]
},
},
deep
:
true
,
deep
:
true
,
immediate
:
false
immediate
:
false
...
@@ -461,7 +461,8 @@
...
@@ -461,7 +461,8 @@
this
.
saveMsg
.
FrId
=
this
.
GetDetail
.
FrID
this
.
saveMsg
.
FrId
=
this
.
GetDetail
.
FrID
this
.
saveMsg
.
Voucher
=
this
.
GetDetail
.
FInnerVoucher
&&
this
.
GetDetail
.
FInnerVoucher
.
length
>
0
?
JSON
.
parse
(
JSON
.
stringify
(
this
.
GetDetail
.
FInnerVoucher
)):[]
this
.
saveMsg
.
Voucher
=
this
.
GetDetail
.
FInnerVoucher
&&
this
.
GetDetail
.
FInnerVoucher
.
length
>
0
?
JSON
.
parse
(
JSON
.
stringify
(
this
.
GetDetail
.
FInnerVoucher
)):[]
this
.
saveMsg
.
Remark
=
this
.
GetDetail
.
FInnerRemark
this
.
saveMsg
.
Remark
=
this
.
GetDetail
.
FInnerRemark
this
.
srcList
=
this
.
GetDetail
.
FInnerVoucher
&&
this
.
GetDetail
.
FInnerVoucher
.
length
>
0
?
this
.
GetDetail
.
FInnerVoucher
.
map
(
x
=>
{
if
(
x
.
Type
==
3
)
return
x
.
Content
}):[]
let
list
=
this
.
GetDetail
.
FInnerVoucher
&&
this
.
GetDetail
.
FInnerVoucher
.
length
>
0
?
this
.
GetDetail
.
FInnerVoucher
.
filter
(
x
=>
{
return
x
.
Type
==
3
}):[]
this
.
srcList
=
list
&&
list
.
length
>
0
?
list
.
map
(
x
=>
{
return
x
.
Content
}):[]
if
(
this
.
GetDetail
.
SpecialType
==
11
)
this
.
GetExpensesMonthlyShare
()
if
(
this
.
GetDetail
.
SpecialType
==
11
)
this
.
GetExpensesMonthlyShare
()
},
},
methods
:
{
methods
:
{
...
@@ -533,7 +534,8 @@
...
@@ -533,7 +534,8 @@
Content
:
this
.
domainManager
().
ViittoFileUrl
+
x
.
data
.
FilePath
,
Content
:
this
.
domainManager
().
ViittoFileUrl
+
x
.
data
.
FilePath
,
Url
:
this
.
domainManager
().
ViittoFileUrl
+
x
.
data
.
FilePath
,
Url
:
this
.
domainManager
().
ViittoFileUrl
+
x
.
data
.
FilePath
,
});
});
this
.
srcList
=
this
.
saveMsg
.
Voucher
.
map
(
x
=>
{
if
(
x
.
Type
==
3
)
return
x
.
Content
})
let
list
=
this
.
saveMsg
.
Voucher
&&
this
.
saveMsg
.
Voucher
.
length
>
0
?
this
.
saveMsg
.
Voucher
.
filter
(
x
=>
{
return
x
.
Type
==
3
}):[]
this
.
srcList
=
list
.
map
(
x
=>
{
return
x
.
Content
})
this
.
$message
.
success
(
this
.
$t
(
'tips.scchenggong'
));
this
.
$message
.
success
(
this
.
$t
(
'tips.scchenggong'
));
});
});
},
},
...
...
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