Commit c2ca38cb by wangguangchao

付款交易优化

parent 3060a246
...@@ -96,7 +96,7 @@ export default { ...@@ -96,7 +96,7 @@ export default {
refuse: () => { alert("功能开发中") } refuse: () => { alert("功能开发中") }
}); });
this.$router.push({ path: viewurl, query: { routeParams: { process: "1", commitFlag: "1" }, trn: row['INR'], idx: idx, operateId: operateId } }); this.$router.push({ path: viewurl, query: { trn: row['INR'], operateId: operateId } });
}, },
......
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
</c-col> </c-col>
<c-col :span="11" :offset="1"> <c-col :span="11" :offset="1">
<c-col :span="13"> <c-col :span="13">
<el-form-item label="信用证额" prop="didgrp.cbs.opn1.cur"> <el-form-item label="信用证额" prop="didgrp.cbs.opn1.cur">
<c-input <c-input
v-model="model.didgrp.cbs.opn1.cur" v-model="model.didgrp.cbs.opn1.cur"
style="width: 95%" style="width: 95%"
...@@ -239,7 +239,7 @@ ...@@ -239,7 +239,7 @@
<!-- ==========middle-right======== --> <!-- ==========middle-right======== -->
<c-col :span="11" :offset="1"> <c-col :span="11" :offset="1">
<c-col :span="24"> <c-col :span="24">
<el-form-item label="申请人参考号" prop="bddgrp.apl.pts.ref"> <el-form-item label="申请人号" prop="bddgrp.apl.pts.ref">
<c-input <c-input
v-model="model.bddgrp.apl.pts.ref" v-model="model.bddgrp.apl.pts.ref"
maxlength="16" maxlength="16"
...@@ -261,7 +261,7 @@ ...@@ -261,7 +261,7 @@
</c-col> </c-col>
<c-col :span="24"> <c-col :span="24">
<el-form-item label="受益人参考号" prop="bddgrp.ben.pts.ref"> <el-form-item label="受益人号" prop="bddgrp.ben.pts.ref">
<c-input <c-input
v-model="model.bddgrp.ben.pts.ref" v-model="model.bddgrp.ben.pts.ref"
maxlength="16" maxlength="16"
...@@ -283,7 +283,7 @@ ...@@ -283,7 +283,7 @@
</c-col> </c-col>
<c-col :span="24"> <c-col :span="24">
<el-form-item label="交单行参考号" prop="bddgrp.prb.pts.ref"> <el-form-item label="交单行号" prop="bddgrp.prb.pts.ref">
<c-input <c-input
v-model="model.bddgrp.prb.pts.ref" v-model="model.bddgrp.prb.pts.ref"
maxlength="16" maxlength="16"
...@@ -333,6 +333,7 @@ ...@@ -333,6 +333,7 @@
maxlength="3" maxlength="3"
style="width: 95%" style="width: 95%"
placeholder="请输入document currency" placeholder="请输入document currency"
disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -342,6 +343,7 @@ ...@@ -342,6 +343,7 @@
<c-input <c-input
v-model="model.setmod.docamt" v-model="model.setmod.docamt"
placeholder="请输入document amount" placeholder="请输入document amount"
@keyup.enter.native="commonExecuteRule('setmod.docamt')"
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -354,6 +356,7 @@ ...@@ -354,6 +356,7 @@
v-model="model.setmod.doccur" v-model="model.setmod.doccur"
style="width: 95%" style="width: 95%"
placeholder="请输入扣减金额" placeholder="请输入扣减金额"
disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -363,6 +366,7 @@ ...@@ -363,6 +366,7 @@
<c-input <c-input
v-model="model.setmod.redamt" v-model="model.setmod.redamt"
placeholder="请输入扣减金额" placeholder="请输入扣减金额"
@keyup.enter.native="commonExecuteRule('setmod.redamt')"
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -376,6 +380,7 @@ ...@@ -376,6 +380,7 @@
maxlength="3" maxlength="3"
style="width: 95%" style="width: 95%"
placeholder="请输入document currency" placeholder="请输入document currency"
disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -385,18 +390,29 @@ ...@@ -385,18 +390,29 @@
<c-input <c-input
v-model="model.setmod.setamt" v-model="model.setmod.setamt"
placeholder="请输入扣费后付款金额" placeholder="请输入扣费后付款金额"
disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
</c-col> </c-col>
<c-col :span="24"> <c-col :span="24">
<el-form-item label="SG000091" prop="bddgrp.rec.clrmtd"> <el-form-item label="清算方式" prop="bddgrp.rec.clrmtd">
<c-input
<c-select
v-model="model.bddgrp.rec.clrmtd" v-model="model.bddgrp.rec.clrmtd"
placeholder="" style="width: 100%"
placeholder="请选择清算方式"
disabled disabled
></c-input> >
<el-option
v-for="item in codes.clrtyp"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -426,11 +442,12 @@ ...@@ -426,11 +442,12 @@
<c-col :span="11" :offset="1"> <c-col :span="11" :offset="1">
<c-col :span="24" style="margin-top:10px;text-align:right"> <c-col :span="24" style="margin-top:10px;text-align:right">
<el-form-item label-width="40px"> <el-form-item label-width="40px">
<c-checkbox v-model="model.mtabut.clsflg" style="margin-left: 50px">闭卷</c-checkbox> <c-checkbox v-model="model.trtcre.crefinflg" style="margin-left: 50px">融资</c-checkbox>
<c-checkbox v-model="model.trtcre.crefinflg">融资</c-checkbox> <c-checkbox v-model="model.mtabut.clsflg" >闭卷</c-checkbox>
<c-checkbox v-model="model.paypsb">垫款</c-checkbox> <c-checkbox v-model="model.paypsb">垫款</c-checkbox>
<c-checkbox v-model="model.dftcre.dfflag">同业代付</c-checkbox> <c-checkbox v-model="model.bddgrp.rec.frepayflg" >无偿放单</c-checkbox>
<c-checkbox v-model="model.bddgrp.rec.frepayflg" style="margin-left: 50px">无偿放单</c-checkbox> <c-checkbox v-model="model.dftcre.dfflag" style="margin-left: 50px">同业代付</c-checkbox>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -655,7 +672,13 @@ export default { ...@@ -655,7 +672,13 @@ export default {
docprbrolChange(){ docprbrolChange(){
this.executeRule("bddgrp.rec.docprbrol").then((res) => { this.executeRule("bddgrp.rec.docprbrol").then((res) => {
if ((res.respCode = SUCCESS)) { if ((res.respCode = SUCCESS)) {
debugger; Utils.copyValueFromVO(this.model, res.data);
}
});
},
commonExecuteRule(ruleName){
this.executeRule(ruleName).then((res) => {
if ((res.respCode = SUCCESS)) {
Utils.copyValueFromVO(this.model, res.data); Utils.copyValueFromVO(this.model, res.data);
} }
}); });
......
...@@ -91,8 +91,8 @@ export default { ...@@ -91,8 +91,8 @@ export default {
let newList = { let newList = {
code:arr[0], code:arr[0],
label:arr[1], label:arr[1],
//isDis:arr[2], isDis:arr[2],
isDis:'Y', //isDis:'Y',
title:arr[3] title:arr[3]
} }
//添加到navcode数组中 //添加到navcode数组中
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment