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
71a87e04
Commit
71a87e04
authored
Oct 25, 2023
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
0faf7ee8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
7 deletions
+17
-7
PlatformAccount.vue
src/components/FinancialModule/PlatformAccount.vue
+17
-7
No files found.
src/components/FinancialModule/PlatformAccount.vue
View file @
71a87e04
...
@@ -276,12 +276,12 @@
...
@@ -276,12 +276,12 @@
</el-form-item>
</el-form-item>
</el-col>
</el-col>
<el-col
:span=
"8"
:gutter=
"35"
>
<el-col
:span=
"8"
:gutter=
"35"
>
<el-form-item
label=
"合同附件:"
prop=
"Contract
Url
"
>
<el-form-item
label=
"合同附件:"
prop=
"Contract
Array
"
>
<div
style=
"display: flex;flex-wrap: wrap;"
>
<div
style=
"display: flex;flex-wrap: wrap;"
>
<div>
<div>
<div
class=
"_info_img"
v-if=
"addMsg.Contract
Url&&addMsg.ContractUrl
.length>0"
>
<div
class=
"_info_img"
v-if=
"addMsg.Contract
Array&&addMsg.ContractArray
.length>0"
>
<ul
class=
"clearfix"
>
<ul
class=
"clearfix"
>
<li
v-for=
"(img,imgI) in addMsg.Contract
Url
"
<li
v-for=
"(img,imgI) in addMsg.Contract
Array
"
style=
"margin-right: 5px;position: relative;
style=
"margin-right: 5px;position: relative;
border:1px dashed #d1d1d1;border-radius: 6px;"
>
border:1px dashed #d1d1d1;border-radius: 6px;"
>
<img
v-if=
"!img"
src=
"../../assets/img/Travelslider.png"
alt=
""
>
<img
v-if=
"!img"
src=
"../../assets/img/Travelslider.png"
alt=
""
>
...
@@ -646,7 +646,8 @@
...
@@ -646,7 +646,8 @@
ContractEndDateStr
:
""
,
ContractEndDateStr
:
""
,
ContractStartDateInfo
:
[],
ContractStartDateInfo
:
[],
FinanceNo
:
""
,
FinanceNo
:
""
,
ContractUrl
:
[],
ContractArray
:
[],
ContractUrl
:
""
,
SettlementDate
:
""
,
SettlementDate
:
""
,
SettlementInfo
:
""
SettlementInfo
:
""
},
},
...
@@ -760,6 +761,11 @@
...
@@ -760,6 +761,11 @@
required
:
true
,
required
:
true
,
message
:
'请输入风险上限'
,
message
:
'请输入风险上限'
,
trigger
:
"blur"
trigger
:
"blur"
}],
ContractArray
:
[{
required
:
true
,
message
:
'请上传合同'
,
trigger
:
"change"
}]
}]
},
},
addCuren
:
true
,
addCuren
:
true
,
...
@@ -1264,6 +1270,8 @@
...
@@ -1264,6 +1270,8 @@
this
.
remoteMethod
(
data
.
InemName
);
this
.
remoteMethod
(
data
.
InemName
);
this
.
remoteMethod2
(
data
.
OutemName
);
this
.
remoteMethod2
(
data
.
OutemName
);
this
.
addMsg
=
data
;
this
.
addMsg
=
data
;
this
.
LineId
=
this
.
addMsg
.
LineId
.
slice
(
','
)
this
.
SettlementType
=
this
.
addMsg
.
SettlementType
.
slice
(
','
)
Vue
.
set
(
this
.
addMsg
,
'ContractStartDateInfo'
,
[])
Vue
.
set
(
this
.
addMsg
,
'ContractStartDateInfo'
,
[])
this
.
addMsg
.
ContractStartDateInfo
.
push
(
data
.
ContractStartDateStr
)
this
.
addMsg
.
ContractStartDateInfo
.
push
(
data
.
ContractStartDateStr
)
...
@@ -1355,12 +1363,12 @@
...
@@ -1355,12 +1363,12 @@
this
.
UploadSelfFileT
(
path
,
newArr
,
x
=>
{
this
.
UploadSelfFileT
(
path
,
newArr
,
x
=>
{
let
url
=
this
.
domainManager
().
ViittoFileUrl
+
x
.
data
.
FilePath
let
url
=
this
.
domainManager
().
ViittoFileUrl
+
x
.
data
.
FilePath
// this.ContractUrl = this.domainManager().ViittoFileUrl + x.data.FilePath
// this.ContractUrl = this.domainManager().ViittoFileUrl + x.data.FilePath
this
.
addMsg
.
Contract
Url
.
push
(
url
)
this
.
addMsg
.
Contract
Array
.
push
(
url
)
that
.
$message
.
success
(
'上传成功'
);
that
.
$message
.
success
(
'上传成功'
);
});
});
},
},
deleteUploadFile
(
fIndex
){
deleteUploadFile
(
fIndex
){
this
.
addMsg
.
Contract
Url
.
splice
(
fIndex
,
1
)
this
.
addMsg
.
Contract
Array
.
splice
(
fIndex
,
1
)
},
},
getList
()
{
getList
()
{
//获取列表
//获取列表
...
@@ -1414,7 +1422,9 @@
...
@@ -1414,7 +1422,9 @@
// 保存 修改、新增
// 保存 修改、新增
this
.
addMsg
.
BranchList
=
[];
this
.
addMsg
.
BranchList
=
[];
if
(
!
this
.
addMsg
.
RiskLimitMoney
)
{
if
(
!
this
.
addMsg
.
RiskLimitMoney
)
{
this
.
addMsg
.
RiskLimitMoney
=
0
;
// this.addMsg.RiskLimitMoney = 0;
this
.
$message
.
error
(
'风险上线需大于0'
);
return
}
}
let
msg
=
{
let
msg
=
{
ID
:
0
,
ID
:
0
,
...
...
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