Commit 3e4f53a1 by LiRui

修改BPTOPN交易的bug

parent 327ae711
......@@ -7366,6 +7366,15 @@ const CodeTable = {
{ label: "全部业务", value: "" },
{ label: "国内业务", value: "1" },
{ label: "国际业务", value: "2" }
]
],
fintyp_bpd1: [
{ label: "出口贴现", value: "D" },
{ label: "出口押汇", value: "P" },
{ label: "汇入汇款押汇", value: "I" },
{ label: "票据买断", value: "F" },
{ label: "第三方参贷", value: "U" },
{ label: "国内证包买单据", value: "G" },
{ label: "国内证第三方风险参贷", value: "V" },
],
}
export default CodeTable;
......@@ -217,7 +217,7 @@
placeholder=""
>
<el-option
v-for="item in codes.fintyp_bpd"
v-for="item in codes.fintyp_bpd1"
:key="item.value"
:label="item.label"
:value="item.value"
......@@ -398,6 +398,7 @@
<c-col :span="12">
<el-form-item label="百分比" prop="bpdgrp.rec.pctfin">
<c-input
disabled
v-model="model.bpdgrp.rec.pctfin"
placeholder="请输入百分比"
></c-input>
......@@ -669,6 +670,7 @@
<c-col :span="12">
<el-form-item label="借据编号" prop="bpdgrp.rec.fincod">
<c-input
disabled
v-model="model.bpdgrp.rec.fincod"
maxlength="17"
placeholder=""
......@@ -679,6 +681,7 @@
<c-col :span="12">
<el-form-item label="计息日期" prop="bptmod.finmod.intdat">
<c-input
:disabled="model.bptmod.finmod.intprd==''||model.bptmod.finmod.intprd=='6'||model.bptmod.finmod.intprd=='7'"
v-model="model.bptmod.finmod.intdat"
maxlength="2"
placeholder="请输入计息日期"
......@@ -740,6 +743,7 @@
<c-col :span="12">
<el-form-item label="月日数" prop="bptmod.finmod.ratchgdat">
<c-input
:disabled="!(model.bptmod.finmod.ratchgtyp=='4'||model.bptmod.finmod.ratchgtyp=='5')"
v-model="model.bptmod.finmod.ratchgdat"
maxlength="4"
placeholder=""
......@@ -753,6 +757,7 @@
<c-col :span="12">
<el-form-item label="融资天数" prop="bpdgrp.rec.intday">
<c-input
disabled
v-model="model.bpdgrp.rec.intday"
placeholder=""
></c-input>
......@@ -792,6 +797,7 @@
<c-col :span="12">
<el-form-item label="浮动值" prop="bptmod.finmod.fltval">
<c-input
:disabled="model.bptmod.finmod.flttyp=='0'||model.bptmod.finmod.flttyp==''"
v-model="model.bptmod.finmod.fltval"
placeholder="请输入浮动值"
></c-input>
......@@ -822,6 +828,7 @@
<c-col :span="12">
<el-form-item label="罚息比率" prop="bptmod.finmod.ovdintrat">
<c-input
:disabled="model.bptmod.finmod.ovdinttyp!='1'"
v-model="model.bptmod.finmod.ovdintrat"
placeholder="请输入罚息比率"
></c-input>
......@@ -866,6 +873,7 @@
<c-col :span="12">
<el-form-item label="第三方还款账号" prop="bptmod.finmod.act3">
<c-input
:disabled="model.bptmod.finmod.acttyp==''"
v-model="model.bptmod.finmod.act3"
style="width: 100%"
placeholder="请输入第三方还款账号"
......
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