Commit 99f8972f by LiRui

BPTOPN交易BUG修改

parent 44b40ae3
......@@ -3938,6 +3938,10 @@ const CodeTable = {
{label: "从融资本金中扣收", value: "1"},
{label: "从扣息账户中扣收", value: "2"},
],
inttyp1: [
{label: "从融资本金中扣收", value: "0"},
{label: "从扣息账户中扣收", value: "1"},
],
lprtyp:[
{label: "1YLPR", value: "1"},
{label: "5YLPR", value: "2"},
......
......@@ -374,12 +374,13 @@
<c-col :span="12">
<el-form-item label="融资金额" prop="bpdgrp.cbs.max.cur">
<c-select
:disabled="(model.ledgrp.rec.dflg=='D' || model.dedgrp.rec.dflg=='D') || (model.bpdgrp.rec.fintyp=='F' || model.bpdgrp.rec.fintyp=='U')"
v-model="model.bpdgrp.cbs.max.cur"
style="width: 100%"
placeholder="请选择融资币种"
>
<el-option
v-for="item in codes.cur"
v-for="item in codes.curtxt1"
:key="item.value"
:label="item.label"
:value="item.value"
......@@ -561,11 +562,18 @@
<c-row>
<c-col :span="12">
<el-form-item label="第一还款账号" prop="bptmod.finmod.act1">
<c-input
<c-select
v-model="model.bptmod.finmod.act1"
style="width: 100%"
placeholder="请输入第一还款账号"
></c-input>
>
<el-option
v-for="(item, idx) in codes.codeSet['bptmod.finmod.act1']"
:key="idx"
:label="item.split('\t')[1]"
:value="item.split('\t')[0]"
></el-option>
</c-select>
</el-form-item>
</c-col>
......@@ -610,7 +618,7 @@
placeholder="请选择预扣息方式"
>
<el-option
v-for="item in codes.inttyp"
v-for="item in codes.inttyp1"
:key="item.value"
:label="item.label"
:value="item.value"
......@@ -887,7 +895,7 @@
<c-input
:disabled="model.bptmod.finmod.acttyp==''"
v-model="model.bptmod.finmod.act3"
style="width: 100%"
maxlength="21"
placeholder="请输入第三方还款账号"
></c-input>
</el-form-item>
......@@ -899,7 +907,7 @@
<c-col :span="12">
<el-form-item label="预扣息账号" prop="bptmod.finmod.intact">
<c-input
:disabled="model.bptmod.finmod.inttyp!='1'"
:disabled="model.bptmod.finmod.inttyp=='0' || (model.bptmod.finmod.acttyp=='0' || model.bptmod.finmod.acttyp=='2')"
v-model="model.bptmod.finmod.intact"
style="width: 100%"
placeholder="请输入预扣息账号"
......
......@@ -4,7 +4,12 @@
<c-row>
<c-col :span="12">
<el-form-item label="数据采集标志" prop="cfabpt.cfaflg">
<c-select v-model="model.cfabpt.cfaflg" style="width:100%" placeholder="请选择数据采集标志">
<c-select
@change="selectOrCheckboxRule('cfabpt.cfaflg')"
v-model="model.cfabpt.cfaflg"
style="width:100%"
placeholder="请选择数据采集标志"
>
<el-option
v-for="item in codes.cfaflg1"
:key="item.value"
......
......@@ -5,6 +5,7 @@
<el-form-item label="申报类型" prop="bopmod.szflg">
<c-select
:disabled="!((model.bpdgrp.rec.fintyp=='F' || model.bpdgrp.rec.fintyp=='U') && model.bpdgrp.rec.pnttyp!='')"
@change="selectOrCheckboxRule('bopmod.szflg')"
v-model="model.bopmod.szflg"
style="width: 100%"
placeholder="请选择申报类型"
......
......@@ -146,7 +146,11 @@
</el-tab-pane>
<!--PD000005 -->
<el-tab-pane label="国内外汇贷款数据采集" name="cfap">
<el-tab-pane
v-if="model.bpdgrp.cbs.max.cur!='CNY'"
label="国内外汇贷款数据采集"
name="cfap"
>
<c-content>
<m-cfap :model="model" :codes="codes" />
</c-content>
......
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