Commit c2ca38cb by wangguangchao

付款交易优化

parent 3060a246
......@@ -96,7 +96,7 @@ export default {
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 @@
</c-col>
<c-col :span="11" :offset="1">
<c-col :span="13">
<el-form-item label="信用证额" prop="didgrp.cbs.opn1.cur">
<el-form-item label="信用证额" prop="didgrp.cbs.opn1.cur">
<c-input
v-model="model.didgrp.cbs.opn1.cur"
style="width: 95%"
......@@ -239,7 +239,7 @@
<!-- ==========middle-right======== -->
<c-col :span="11" :offset="1">
<c-col :span="24">
<el-form-item label="申请人参考号" prop="bddgrp.apl.pts.ref">
<el-form-item label="申请人号" prop="bddgrp.apl.pts.ref">
<c-input
v-model="model.bddgrp.apl.pts.ref"
maxlength="16"
......@@ -261,7 +261,7 @@
</c-col>
<c-col :span="24">
<el-form-item label="受益人参考号" prop="bddgrp.ben.pts.ref">
<el-form-item label="受益人号" prop="bddgrp.ben.pts.ref">
<c-input
v-model="model.bddgrp.ben.pts.ref"
maxlength="16"
......@@ -283,7 +283,7 @@
</c-col>
<c-col :span="24">
<el-form-item label="交单行参考号" prop="bddgrp.prb.pts.ref">
<el-form-item label="交单行号" prop="bddgrp.prb.pts.ref">
<c-input
v-model="model.bddgrp.prb.pts.ref"
maxlength="16"
......@@ -333,6 +333,7 @@
maxlength="3"
style="width: 95%"
placeholder="请输入document currency"
disabled
></c-input>
</el-form-item>
</c-col>
......@@ -342,6 +343,7 @@
<c-input
v-model="model.setmod.docamt"
placeholder="请输入document amount"
@keyup.enter.native="commonExecuteRule('setmod.docamt')"
></c-input>
</el-form-item>
</c-col>
......@@ -354,6 +356,7 @@
v-model="model.setmod.doccur"
style="width: 95%"
placeholder="请输入扣减金额"
disabled
></c-input>
</el-form-item>
</c-col>
......@@ -363,6 +366,7 @@
<c-input
v-model="model.setmod.redamt"
placeholder="请输入扣减金额"
@keyup.enter.native="commonExecuteRule('setmod.redamt')"
></c-input>
</el-form-item>
</c-col>
......@@ -376,6 +380,7 @@
maxlength="3"
style="width: 95%"
placeholder="请输入document currency"
disabled
></c-input>
</el-form-item>
</c-col>
......@@ -385,18 +390,29 @@
<c-input
v-model="model.setmod.setamt"
placeholder="请输入扣费后付款金额"
disabled
></c-input>
</el-form-item>
</c-col>
</c-col>
<c-col :span="24">
<el-form-item label="SG000091" prop="bddgrp.rec.clrmtd">
<c-input
<el-form-item label="清算方式" prop="bddgrp.rec.clrmtd">
<c-select
v-model="model.bddgrp.rec.clrmtd"
placeholder=""
style="width: 100%"
placeholder="请选择清算方式"
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>
</c-col>
......@@ -426,11 +442,12 @@
<c-col :span="11" :offset="1">
<c-col :span="24" style="margin-top:10px;text-align:right">
<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">融资</c-checkbox>
<c-checkbox v-model="model.trtcre.crefinflg" style="margin-left: 50px">融资</c-checkbox>
<c-checkbox v-model="model.mtabut.clsflg" >闭卷</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" style="margin-left: 50px">无偿放单</c-checkbox>
<c-checkbox v-model="model.bddgrp.rec.frepayflg" >无偿放单</c-checkbox>
<c-checkbox v-model="model.dftcre.dfflag" style="margin-left: 50px">同业代付</c-checkbox>
</el-form-item>
</c-col>
......@@ -655,7 +672,13 @@ export default {
docprbrolChange(){
this.executeRule("bddgrp.rec.docprbrol").then((res) => {
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);
}
});
......
......@@ -91,8 +91,8 @@ export default {
let newList = {
code:arr[0],
label:arr[1],
//isDis:arr[2],
isDis:'Y',
isDis:arr[2],
//isDis:'Y',
title:arr[3]
}
//添加到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