Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
V
vue-gjjs
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
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
zhouqian
vue-gjjs
Commits
f47a0956
Commit
f47a0956
authored
Sep 21, 2022
by
panziyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bctset修改
parent
e735ce5e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
45 additions
and
20 deletions
+45
-20
Dftcrep.vue
src/views/Business/Bctset/Dftcrep.vue
+24
-19
Trtcrep.vue
src/views/Business/Bctset/Trtcrep.vue
+21
-1
No files found.
src/views/Business/Bctset/Dftcrep.vue
View file @
f47a0956
...
...
@@ -37,7 +37,7 @@
</c-button>
</c-col>
</c-col>
<c-col
:span=
"24"
>
<c-col
:span=
"13"
>
<el-form-item
label=
"单据金额:"
prop=
"dftcre.oricur"
>
<c-select
...
...
@@ -59,8 +59,8 @@
></c-input>
</el-form-item>
</c-col>
</c-col>
<c-col
:span=
"24"
>
<c-col
:span=
"13"
>
<el-form-item
label=
"代付金额:"
prop=
"dftcre.dfdgrp.cbs.max.cur"
>
<c-select
...
...
@@ -84,9 +84,9 @@
></c-input>
</el-form-item>
</c-col>
</c-col>
<c-col
:span=
"24"
>
<c-col
:span=
"13"
>
<el-form-item
label=
"代付余额:"
...
...
@@ -115,7 +115,7 @@
></c-input>
</el-form-item>
</c-col>
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label=
"代付类型:"
prop=
"dftcre.dfdgrp.rec.fintyp"
>
<c-select
...
...
@@ -342,12 +342,13 @@
prop=
"dftcre.dfdgrp.rec.nam"
>
<c-input
v-model=
"model.dftcre.dfdgrp.rec.nam"
v-model=
this.nam
maxlength=
"40"
disabled
placeholder=
"请输入Name of Loan Contract"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label=
"申请人"
prop=
"dftcre.dfdgrp.apl.pts.ref"
>
<c-input
...
...
@@ -651,7 +652,7 @@ export default {
};
},
watch
:
{
"dftcre.dfdgrp.rec.invtyp"
:
{
"
model.
dftcre.dfdgrp.rec.invtyp"
:
{
immediate
:
true
,
handler
(
val
,
oldval
){
if
(
this
.
model
.
dftcre
.
dfdgrp
.
rec
.
invtyp
==
""
)
{
...
...
@@ -659,20 +660,24 @@ export default {
}
}
},
// "dftcre.dftcrep": {
// immediate:true,
// handler(val,oldval){
// if(this.model.trtcre.crefinflg=="") {
// this.model.dftcre.dfdgrp.rec.fintyp="A"
// }else if(this.model.trtcre.crefinflg=="X") {
// this.model.dftcre.dfdgrp.rec.fintyp="B"
// }
// }
// },
"model.dftcre.dfdgrp.rec.fintyp"
:
{
immediate
:
true
,
handler
(
val
,
oldval
){
let
nam
=
this
.
model
.
dftcre
.
dfdgrp
.
rec
.
nam
;
if
(
this
.
model
.
trtcre
.
crefinflg
==
""
)
{
this
.
model
.
dftcre
.
dfdgrp
.
rec
.
fintyp
=
"A"
this
.
nam
=
"我行风险参与"
+
" "
+
nam
}
else
if
(
this
.
model
.
trtcre
.
crefinflg
==
"X"
)
{
this
.
model
.
dftcre
.
dfdgrp
.
rec
.
fintyp
=
"B"
this
.
nam
=
"我行融资"
+
" "
+
nam
}
}
},
},
methods
:
{
...
Event
},
// created:function(){
// this.execute
Rule
("trdgrp.rec.actrat").then((res) => {
// this.execute
Default
("trdgrp.rec.actrat").then((res) => {
// if (res.respCode == SUCCESS) {
// this.copyValueFromVO(res.data);
// }
...
...
src/views/Business/Bctset/Trtcrep.vue
View file @
f47a0956
...
...
@@ -74,7 +74,7 @@
<el-form-item
label=
"摘要"
prop=
"trtcre.trdgrp.rec.nam"
>
<c-input
disabled
v-model=
"model.trtcre.trdgrp.rec.nam"
v-model=
this.nam
maxlength=
"40"
placeholder=
"请输入Name of Loan Contract"
></c-input>
...
...
@@ -974,6 +974,26 @@ export default {
};
},
watch
:{
"model.trtcre.trdgrp.rec.nam"
:
{
immediate
:
true
,
handler
(
val
,
oldval
){
let
nam
=
this
.
model
.
trtcre
.
trdgrp
.
rec
.
nam
;
if
(
this
.
model
.
trtcre
.
trdgrp
.
rec
.
fintyp
==
"BRF"
){
this
.
nam
=
"进口信用证押汇"
+
" "
+
nam
;
}
else
if
(
this
.
model
.
trtcre
.
trdgrp
.
rec
.
fintyp
==
"BCF"
){
this
.
nam
=
"进口代收押汇"
+
" "
+
nam
;
}
else
if
(
this
.
model
.
trtcre
.
trdgrp
.
rec
.
fintyp
==
"ECF"
){
this
.
nam
=
"汇出汇款押汇"
+
" "
+
nam
;
}
else
if
(
this
.
model
.
trtcre
.
trdgrp
.
rec
.
fintyp
==
"PCL"
){
this
.
nam
=
"打包贷款"
+
" "
+
nam
;
}
}
},
},
methods
:
{
...
Event
,
// onBctmodButgetref(){
...
...
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