Commit 31b7b686 by wanggang_yf

修改bptopn Bptset Infbpd Bptcan交易 页面调整 复核页面 Check规则

parent b8293d83
...@@ -228,13 +228,6 @@ export default { ...@@ -228,13 +228,6 @@ export default {
{max: 8,message:"长度不能超过8"} {max: 8,message:"长度不能超过8"}
], ],
"infcon.trnstm":[
{type: "string", required: false, message: "必输项"},
{max: 1,message:"长度不能超过1"}
],
"infcon.cbbstm":[ "infcon.cbbstm":[
{type: "string", required: false, message: "必输项"}, {type: "string", required: false, message: "必输项"},
{max: 1,message:"长度不能超过1"} {max: 1,message:"长度不能超过1"}
......
...@@ -30,7 +30,7 @@ export default class Infbpd{ ...@@ -30,7 +30,7 @@ export default class Infbpd{
ordstm:"", // Stream for Orders for Contract .infcon.ordstm ordstm:"", // Stream for Orders for Contract .infcon.ordstm
chksubcon:"", // incl. all subcontracts .infcon.chksubcon chksubcon:"", // incl. all subcontracts .infcon.chksubcon
chktrnsta:"", // only active transactions .infcon.chktrnsta chktrnsta:"", // only active transactions .infcon.chktrnsta
trnstm:"", // stream for TRN to selected contract .infcon.trnstm trnstm:[], // stream for TRN to selected contract .infcon.trnstm
cbctxt:"", // CBS Column .infcon.cbctxt cbctxt:"", // CBS Column .infcon.cbctxt
cbbstm:"", // stream of CBBs .infcon.cbbstm cbbstm:"", // stream of CBBs .infcon.cbbstm
cbestm:"", // stream of CBEs .infcon.cbestm cbestm:"", // stream of CBEs .infcon.cbestm
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
<c-input <c-input
v-model="model.bpdgrp.rec.pntref" v-model="model.bpdgrp.rec.pntref"
maxlength="16" maxlength="16"
placeholder="Parent Reference" placeholder="Parent Reference" disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
style="margin:0 10px 0 0;padding: 0 12px;" style="margin:0 10px 0 0;padding: 0 12px;"
size="small" size="small"
type="primary" type="primary"
@click="onSeainf" @click="onSeainf" disabled
> >
<span style="font-size:15px;font-family:'宋体';font-weight:bold">i</span> <span style="font-size:15px;font-family:'宋体';font-weight:bold">i</span>
</c-button> </c-button>
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
<c-input <c-input
v-model="model.bpdgrp.rec.ownref" v-model="model.bpdgrp.rec.ownref"
maxlength="16" maxlength="16"
placeholder="请输入Reference"></c-input> placeholder="请输入Reference" disabled></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="3" :offset="1"> <c-col :span="3" :offset="1">
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
style="margin:0 10px 0 0;padding: 0 12px;" style="margin:0 10px 0 0;padding: 0 12px;"
size="small" size="small"
type="primary" type="primary"
@click="onSeainf" @click="onSeainf" disabled
> >
<span style="font-size:15px;font-family:'宋体';font-weight:bold">i</span> <span style="font-size:15px;font-family:'宋体';font-weight:bold">i</span>
</c-button> </c-button>
...@@ -56,7 +56,7 @@ ...@@ -56,7 +56,7 @@
v-model="model.bpdgrp.rec.pntnam" v-model="model.bpdgrp.rec.pntnam"
maxlength="40" maxlength="40"
style="width:90%" style="width:90%"
placeholder="摘要" placeholder="摘要" disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -69,7 +69,7 @@ ...@@ -69,7 +69,7 @@
v-model="model.bpdgrp.rec.nam" v-model="model.bpdgrp.rec.nam"
style="width:90%" style="width:90%"
maxlength="40" maxlength="40"
placeholder="请输入摘要" placeholder="请输入摘要" disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -82,13 +82,23 @@ ...@@ -82,13 +82,23 @@
<!-- 融资类型--> <!-- 融资类型-->
<c-col :span="18"> <c-col :span="18">
<el-form-item label="Type of Advance" prop="bpdgrp.rec.fintyp"> <el-form-item label="Type of Advance" prop="bpdgrp.rec.fintyp">
<c-select <c-select v-model="model.bpdgrp.rec.fintyp" style="width: 100%"
v-model="model.bpdgrp.rec.fintyp" placeholder="请选择融资类型">
style="width:100%" <el-option v-for="item in codes.fintyp_bpd" :key="item.value"
placeholder="请选择融资类型" :label="item.label" :value="item.value" disabled>
> </el-option>
</c-select> </c-select>
</el-form-item> </el-form-item>
<!-- <el-form-item label="Finance Type" prop="bpdgrp.rec.fintyp" style="width: 100%">-->
<!-- <c-fullbox>-->
<!-- <c-select v-model="model.bpdgrp.rec.fintyp" style="width: 100%" maxlength="16" placeholder="">-->
<!-- <el-option v-for="item in codes.fintyp_bpd" :key="item.value" :label="item.label" :value="item.value">-->
<!-- </el-option>-->
<!-- </c-select>-->
<!-- <template slot="footer"> </template>-->
<!-- </c-fullbox>-->
<!-- </el-form-item>-->
</c-col> </c-col>
</c-row> </c-row>
<c-row> <c-row>
...@@ -97,11 +107,11 @@ ...@@ -97,11 +107,11 @@
<el-form-item label="Margin(Spread)" prop="bpdgrp.rec.intrat"> <el-form-item label="Margin(Spread)" prop="bpdgrp.rec.intrat">
<c-input <c-input
v-model="model.bpdgrp.rec.intrat" v-model="model.bpdgrp.rec.intrat"
placeholder="请输入基准利率" placeholder="请输入基准利率" disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="4" style="padding:5px; font: size 30%;"> <c-col :span="4" style="padding:5px; font-size: 10px;">
<span>%</span> <span>%</span>
</c-col> </c-col>
</c-row> </c-row>
...@@ -112,7 +122,7 @@ ...@@ -112,7 +122,7 @@
<c-select <c-select
v-model="model.bpdgrp.cbs.max.cur" v-model="model.bpdgrp.cbs.max.cur"
style="width:100%" style="width:100%"
placeholder="请选择融资币种"> placeholder="请选择融资币种" disabled>
</c-select> </c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -121,7 +131,7 @@ ...@@ -121,7 +131,7 @@
<el-form-item label="" label-width="20px" prop="bpdgrp.cbs.max.amt"> <el-form-item label="" label-width="20px" prop="bpdgrp.cbs.max.amt">
<c-input <c-input
v-model="model.bpdgrp.cbs.max.amt" v-model="model.bpdgrp.cbs.max.amt"
placeholder="请输入融资金额" placeholder="请输入融资金额" disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -132,7 +142,7 @@ ...@@ -132,7 +142,7 @@
<c-select <c-select
v-model="model.bpdgrp.cbs.opn1.cur" v-model="model.bpdgrp.cbs.opn1.cur"
style="width:100%" style="width:100%"
placeholder="请选择押汇币种"> placeholder="请选择押汇币种" disabled>
</c-select> </c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -141,18 +151,13 @@ ...@@ -141,18 +151,13 @@
<el-form-item label="" label-width="20px" prop="bpdgrp.cbs.opn1.amt"> <el-form-item label="" label-width="20px" prop="bpdgrp.cbs.opn1.amt">
<c-input <c-input
v-model="model.bpdgrp.cbs.opn1.amt" v-model="model.bpdgrp.cbs.opn1.amt"
placeholder="请输入押汇余额" placeholder="请输入押汇余额" disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
</c-row> </c-row>
</c-col> </c-col>
<c-col :span="11" :offset="1"> <c-col :span="11" :offset="1">
<!-- <c-col :span="12">
<el-form-item label="融资客户" prop="bpdgrp.fia.pts.ref">
<c-input v-model="model.bpdgrp.fia.pts.ref" maxlength="16" placeholder="请输入融资客户"></c-input>
</el-form-item>
</c-col> -->
<c-ptap <c-ptap
:model="model" :model="model"
:argadr="{ :argadr="{
...@@ -162,7 +167,7 @@ ...@@ -162,7 +167,7 @@
}" }"
:disabled="true" :disabled="true"
@onSeainf="onSeainf" @onSeainf="onSeainf"
@onAplpDet="onBenpDet" @onAplpDet="onBenpDet" disabled
> >
</c-ptap> </c-ptap>
</c-col> </c-col>
...@@ -186,53 +191,6 @@ ...@@ -186,53 +191,6 @@
<c-checkbox v-model="model.sndmsg">Send Message</c-checkbox> <c-checkbox v-model="model.sndmsg">Send Message</c-checkbox>
</c-col> </c-col>
</c-row> </c-row>
<!-- <c-col :span="12">
<el-form-item label="Drag Drop Sender" prop="bptp0.brdget.sdamod.dadsnd">
<c-input v-model="model.bptp0.brdget.sdamod.dadsnd" placeholder="请输入Drag Drop Sender"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="" prop="bptp0.btdget.sdamod.seainf">
<c-input v-model="model.bptp0.btdget.sdamod.seainf" placeholder="请输入"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="External Key of Address" prop="bpdgrp.fia.pts.extkey">
<c-input v-model="model.bpdgrp.fia.pts.extkey" maxlength="16" placeholder="请输入External Key of Address"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onFiapDet">
Details
</c-button>
</c-col>
<c-col :span="12">
<el-form-item label="名称" prop="bpdgrp.fia.namelc">
<c-input type="textarea" v-model="model.bpdgrp.fia.namelc" maxlength="35" show-word-limit placeholder="请输入名称" ></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="Address Block" prop="bpdgrp.fia.pts.adrblk">
<c-input type="textarea" v-model="model.bpdgrp.fia.pts.adrblk" maxlength="35" show-word-limit placeholder="请输入Address Block" ></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="Chinese address" prop="bpdgrp.fia.dbfadrblkcn">
<c-input type="textarea" v-model="model.bpdgrp.fia.dbfadrblkcn" maxlength="35" show-word-limit placeholder="请输入Chinese address" ></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="地址" prop="bpdgrp.fia.adrelc">
<c-input type="textarea" v-model="model.bpdgrp.fia.adrelc" maxlength="35" show-word-limit placeholder="请输入地址" ></c-input>
</el-form-item>
</c-col>
-->
</c-content> </c-content>
</template> </template>
<script> <script>
......
...@@ -148,8 +148,6 @@ import Cips from "./Cips" ...@@ -148,8 +148,6 @@ import Cips from "./Cips"
import Cips2 from "./Cips2" import Cips2 from "./Cips2"
import Cips3 from "./Cips3" import Cips3 from "./Cips3"
import Fecp from "./Fecp" import Fecp from "./Fecp"
// import Limitbody from "./Limitbody"
import Setpan from "~/views/Public/Setpan"; import Setpan from "~/views/Public/Setpan";
import Coninfp from "~/views/Public/Coninfp"; import Coninfp from "~/views/Public/Coninfp";
import Docpan from "~/views/Public/Docpan"; import Docpan from "~/views/Public/Docpan";
...@@ -192,7 +190,8 @@ export default { ...@@ -192,7 +190,8 @@ export default {
pattern: Pattern, pattern: Pattern,
rules: null, rules: null,
codes: { codes: {
}, ...CodeTable,
}
} }
}, },
methods:{ methods:{
......
...@@ -7,14 +7,14 @@ ...@@ -7,14 +7,14 @@
<c-col :span="24"> <c-col :span="24">
<c-col :span="11"> <c-col :span="11">
<el-form-item label="Parent Contract" prop="bpdgrp.rec.pntref" style="width: 100%"> <el-form-item label="Parent Contract" prop="bpdgrp.rec.pntref" style="width: 100%">
<c-fullbox>
<c-input v-model="model.bpdgrp.rec.pntref" maxlength="16" placeholder="请输入Reference" disabled></c-input> <c-input v-model="model.bpdgrp.rec.pntref" maxlength="16" placeholder="请输入Reference" disabled></c-input>
<template slot="footer"> <template slot="footer">
<c-button style="margin: 0 10px 0 10px; padding: 0 12px" size="small" type="primary" @click="onSeainf"> <c-button style="margin: 0 10px 0 10px; padding: 0 12px" size="small" type="primary" @click="onSeainf">
<span style="font-family: '宋体'; font-weight: bold">i</span> <span style="font-family: '宋体'; font-weight: bold">i</span>
</c-button> </c-button>
</template> </template>
</c-fullbox>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -26,10 +26,10 @@ ...@@ -26,10 +26,10 @@
<c-col :span="12"> <c-col :span="12">
<el-form-item label="Name" prop="bpdgrp.rec.pntnam" style="width: 100%"> <el-form-item label="Name" prop="bpdgrp.rec.pntnam" style="width: 100%">
<c-fullbox>
<c-input v-model="model.bpdgrp.rec.pntnam" maxlength="16" placeholder="" disabled></c-input> <c-input v-model="model.bpdgrp.rec.pntnam" maxlength="16" placeholder="" disabled></c-input>
<template slot="footer"> </template> <template slot="footer"> </template>
</c-fullbox>
</el-form-item> </el-form-item>
</c-col> </c-col>
</c-col> </c-col>
...@@ -38,14 +38,14 @@ ...@@ -38,14 +38,14 @@
<c-col :span="24"> <c-col :span="24">
<c-col :span="11"> <c-col :span="11">
<el-form-item label="Finance Reference" prop="bpdgrp.rec.ownref" style="width: 100%"> <el-form-item label="Finance Reference" prop="bpdgrp.rec.ownref" style="width: 100%">
<c-fullbox>
<c-input v-model="model.bpdgrp.rec.ownref" maxlength="16" placeholder="请输入Reference" disabled></c-input> <c-input v-model="model.bpdgrp.rec.ownref" maxlength="16" placeholder="请输入Reference" disabled></c-input>
<template slot="footer"> <template slot="footer">
<c-button style="margin: 0 10px 0 10px; padding: 0 12px" size="small" type="primary" @click="onSeainf"> <c-button style="margin: 0 10px 0 10px; padding: 0 12px" size="small" type="primary" @click="onSeainf">
<span style="font-family: '宋体'; font-weight: bold">i</span> <span style="font-family: '宋体'; font-weight: bold">i</span>
</c-button> </c-button>
</template> </template>
</c-fullbox>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -56,10 +56,10 @@ ...@@ -56,10 +56,10 @@
<c-col :span="12"> <c-col :span="12">
<el-form-item label="Name" prop="bpdgrp.rec.nam" style="width: 100%"> <el-form-item label="Name" prop="bpdgrp.rec.nam" style="width: 100%">
<c-fullbox>
<c-input v-model="model.bpdgrp.rec.nam" maxlength="16" placeholder="" disabled></c-input> <c-input v-model="model.bpdgrp.rec.nam" maxlength="16" placeholder="" disabled></c-input>
<template slot="footer"> </template> <template slot="footer"> </template>
</c-fullbox>
</el-form-item> </el-form-item>
</c-col> </c-col>
</c-col> </c-col>
...@@ -68,14 +68,14 @@ ...@@ -68,14 +68,14 @@
<c-col :span="24"> <c-col :span="24">
<c-col :span="11"> <c-col :span="11">
<el-form-item label="Purchase Agreement" prop="bptp.fpdgrp.rec.ownref" style="width: 100%"> <el-form-item label="Purchase Agreement" prop="bptp.fpdgrp.rec.ownref" style="width: 100%">
<c-fullbox>
<c-input v-model="model.bptp.fpdgrp.rec.ownref" maxlength="16" placeholder="请输入Reference" disabled></c-input> <c-input v-model="model.bptp.fpdgrp.rec.ownref" maxlength="16" placeholder="请输入Reference" disabled></c-input>
<template slot="footer"> <template slot="footer">
<c-button style="margin: 0 10px 0 10px; padding: 0 12px" size="small" type="primary" @click="onSeainf"> <c-button style="margin: 0 10px 0 10px; padding: 0 12px" size="small" type="primary" @click="onSeainf">
<span style="font-family: '宋体'; font-weight: bold">i</span> <span style="font-family: '宋体'; font-weight: bold">i</span>
</c-button> </c-button>
</template> </template>
</c-fullbox>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -87,10 +87,10 @@ ...@@ -87,10 +87,10 @@
<c-col :span="12"> <c-col :span="12">
<el-form-item label="Name" prop="bptp.fpdgrp.rec.nam" style="width: 100%"> <el-form-item label="Name" prop="bptp.fpdgrp.rec.nam" style="width: 100%">
<c-fullbox>
<c-input v-model="model.bptp.fpdgrp.rec.nam" maxlength="16" placeholder="" disabled></c-input> <c-input v-model="model.bptp.fpdgrp.rec.nam" maxlength="16" placeholder="" disabled></c-input>
<template slot="footer"> </template> <template slot="footer"> </template>
</c-fullbox>
</el-form-item> </el-form-item>
</c-col> </c-col>
</c-col> </c-col>
...@@ -105,27 +105,27 @@ ...@@ -105,27 +105,27 @@
<c-row> <c-row>
<c-col :span="12"> <c-col :span="12">
<el-form-item label="Responsible User" prop="bptp.usr.extkey" style="width: 100%"> <el-form-item label="Responsible User" prop="bptp.usr.extkey" style="width: 100%">
<c-fullbox>
<c-input v-model="model.bptp.usr.extkey" maxlength="8" placeholder="" disabled></c-input> <c-input v-model="model.bptp.usr.extkey" maxlength="8" placeholder="" disabled></c-input>
<template slot="footer"> <template slot="footer">
<c-button style="margin: 0 10px 0 10px; padding: 0 12px" size="small" type="primary" @click="onSeainf"> <c-button style="margin: 0 10px 0 10px; padding: 0 12px" size="small" type="primary" @click="onSeainf">
<span style="font-family: '宋体'; font-weight: bold">i</span> <span style="font-family: '宋体'; font-weight: bold">i</span>
</c-button> </c-button>
</template> </template>
</c-fullbox>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="12"> <c-col :span="12">
<el-form-item label="Mortgage Flag" prop="bpdgrp.rec.guaflg" style="width: 100%"> <el-form-item label="Mortgage Flag" prop="bpdgrp.rec.guaflg" style="width: 100%">
<c-fullbox>
<c-select v-model="model.bpdgrp.rec.guaflg" style="width: 100%" maxlength="16" placeholder=""> <c-select v-model="model.bpdgrp.rec.guaflg" style="width: 100%" maxlength="16" placeholder="">
<el-option v-for="item in codes.guaflg" :key="item.value" :label="item.label" :value="item.value"> <el-option v-for="item in codes.guaflg" :key="item.value" :label="item.label" :value="item.value">
</el-option> </el-option>
</c-select> </c-select>
<template slot="footer"> </template> <template slot="footer"> </template>
</c-fullbox>
</el-form-item> </el-form-item>
</c-col> </c-col>
</c-row> </c-row>
...@@ -134,14 +134,14 @@ ...@@ -134,14 +134,14 @@
<c-row> <c-row>
<c-col :span="12"> <c-col :span="12">
<el-form-item label="Finance Type" prop="bpdgrp.rec.fintyp" style="width: 100%"> <el-form-item label="Finance Type" prop="bpdgrp.rec.fintyp" style="width: 100%">
<c-fullbox>
<c-select v-model="model.bpdgrp.rec.fintyp" style="width: 100%" maxlength="16" placeholder=""> <c-select v-model="model.bpdgrp.rec.fintyp" style="width: 100%" maxlength="16" placeholder="">
<el-option v-for="item in codes.fintyp_bpd" :key="item.value" :label="item.label" :value="item.value"> <el-option v-for="item in codes.fintyp_bpd" :key="item.value" :label="item.label" :value="item.value">
</el-option> </el-option>
</c-select> </c-select>
<template slot="footer"> </template> <template slot="footer"> </template>
</c-fullbox>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -149,14 +149,14 @@ ...@@ -149,14 +149,14 @@
<el-form-item label="Discount Type" prop="bptp.distyp" style="width: 100%" v-if=" <el-form-item label="Discount Type" prop="bptp.distyp" style="width: 100%" v-if="
model.bpdgrp.rec.fintyp == 'D' || model.bpdgrp.rec.fintyp == 'T' model.bpdgrp.rec.fintyp == 'D' || model.bpdgrp.rec.fintyp == 'T'
"> ">
<c-fullbox>
<c-select v-model="model.bptp.distyp" style="width: 100%" maxlength="16" placeholder=""> <c-select v-model="model.bptp.distyp" style="width: 100%" maxlength="16" placeholder="">
<el-option v-for="item in codes.distyp" :key="item.value" :label="item.label" :value="item.value"> <el-option v-for="item in codes.distyp" :key="item.value" :label="item.label" :value="item.value">
</el-option> </el-option>
</c-select> </c-select>
<template slot="footer"> </template> <template slot="footer"> </template>
</c-fullbox>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -220,37 +220,6 @@ ...@@ -220,37 +220,6 @@
</c-ptap> </c-ptap>
</c-col> </c-col>
</c-col> </c-col>
<!--
<c-col :span="24" v-if="this.flag4">
<el-form-item label="Extkey" prop="lidgrp.avb.pts.extkey">
<c-fullbox>
<c-input
:disabled="this.flag5"
v-model="model.lidgrp.avb.pts.extkey"
maxlength="16"
placeholder="请输入External Key of Address"
@keyup.enter.native="showGridPromptDialog('lidgrp.avb.pts.extkey')"
></c-input>
<template slot="footer">
<c-button
style="margin:0 10px 0 10px;padding: 0 12px;"
size="small"
type="primary"
>
<span style="font-family:'宋体';font-weight:bold">i</span>
</c-button>
<c-button
style="margin:0 0"
size="small"
type="primary"
@click="onAvbpDet"
>
详情
</c-button>
</template>
</c-fullbox>
</el-form-item>
</c-col> -->
</c-row> </c-row>
<!-- =================下部====================== --> <!-- =================下部====================== -->
...@@ -561,7 +530,7 @@ ...@@ -561,7 +530,7 @@
<c-col :span="12"> <c-col :span="12">
<el-form-item label="第三方还款方式" prop="bptmod.finmod.acttyp"> <el-form-item label="第三方还款方式" prop="bptmod.finmod.acttyp">
<c-select v-model="model.bptmod.finmod.acttyp" style="width: 100%" placeholder="请选择第三方还款方式"> <c-select v-model="model.bptmod.finmod.acttyp" style="width: 100%" placeholder="请选择第三方还款方式">
<el-option v-for="item in codes.acttyp" :key="item.value" :label="item.label" :value="item.value"> <el-option v-for="item in codes.acttyp1" :key="item.value" :label="item.label" :value="item.value">
</el-option> </el-option>
</c-select> </c-select>
</el-form-item> </el-form-item>
...@@ -626,7 +595,7 @@ ...@@ -626,7 +595,7 @@
<c-col :span="12"> <c-col :span="12">
<el-form-item label="福费廷廷转卖类型" prop="bpdgrp.rec.ffttyp"> <el-form-item label="福费廷廷转卖类型" prop="bpdgrp.rec.ffttyp">
<c-select v-model="model.bpdgrp.rec.ffttyp" style="width: 100%" placeholder="请选择福费廷转卖类型"> <c-select v-model="model.bpdgrp.rec.ffttyp" style="width: 100%" placeholder="请选择福费廷转卖类型">
<el-option v-for="item in codes.ffttyp" :key="item.value" :label="item.label" :value="item.value"> <el-option v-for="item in codes.ffttyp1" :key="item.value" :label="item.label" :value="item.value">
</el-option> </el-option>
</c-select> </c-select>
</el-form-item> </el-form-item>
......
...@@ -9,11 +9,11 @@ ...@@ -9,11 +9,11 @@
<c-checkbox v-model="model.infcon.chktrnsta">only active transactions</c-checkbox> <c-checkbox v-model="model.infcon.chktrnsta">only active transactions</c-checkbox>
</c-col> </c-col>
<c-col :span="12"> <!-- <c-col :span="12">-->
<el-form-item label="stream for TRN to selected contract" prop="infcon.trnstm"> <!-- <el-form-item label="stream for TRN to selected contract" prop="infcon.trnstm">-->
<c-input v-model="model.infcon.trnstm" placeholder="请输入stream for TRN to selected contract"></c-input> <!-- <c-input v-model="model.infcon.trnstm" placeholder="请输入stream for TRN to selected contract"></c-input>-->
</el-form-item> <!-- </el-form-item>-->
</c-col> <!-- </c-col>-->
<c-col :span="12"> <c-col :span="12">
<c-button size="small" type="primary" @click="onInfconButshw"> <c-button size="small" type="primary" @click="onInfconButshw">
......
...@@ -9,11 +9,11 @@ ...@@ -9,11 +9,11 @@
<c-checkbox v-model="model.infcon.chktrnsta">only active transactions</c-checkbox> <c-checkbox v-model="model.infcon.chktrnsta">only active transactions</c-checkbox>
</c-col> </c-col>
<c-col :span="12"> <!-- <c-col :span="12">-->
<el-form-item label="stream for TRN to selected contract" prop="infcon.trnstm"> <!-- <el-form-item label="stream for TRN to selected contract" prop="infcon.trnstm">-->
<c-input v-model="model.infcon.trnstm" placeholder="请输入stream for TRN to selected contract"></c-input> <!-- <c-input v-model="model.infcon.trnstm" placeholder="请输入stream for TRN to selected contract"></c-input>-->
</el-form-item> <!-- </el-form-item>-->
</c-col> <!-- </c-col>-->
<c-col :span="12"> <c-col :span="12">
<c-button size="small" type="primary" @click="onInfconButshw"> <c-button size="small" type="primary" @click="onInfconButshw">
......
<template>
<ReviewWrapper>
<Bptcan></Bptcan>
</ReviewWrapper>
</template>
<script>
import Bptcan from "~/views/Business/Bptcan";
import { ReviewWrapper } from "~/components/gj-common.min.js";
export default {
name: "ReviewBptcan",
components: { ReviewWrapper, Bptcan },
created() {},
mounted() {},
};
</script>
<style></style>
...@@ -92,7 +92,8 @@ import ReviewCptcan from "./Business/ReviewCptcan.vue"; ...@@ -92,7 +92,8 @@ import ReviewCptcan from "./Business/ReviewCptcan.vue";
import ReviewCptrep from "./Business/ReviewCptrep.vue"; import ReviewCptrep from "./Business/ReviewCptrep.vue";
import ReviewCltdav from "./Business/ReviewCltdav.vue"; import ReviewCltdav from "./Business/ReviewCltdav.vue";
import ReviewBptopn from "./Business/ReviewBptopn.vue"; import ReviewBptopn from "./Business/ReviewBptopn.vue";
import ReviewBptset from "./Business/ReviewBptset"; import ReviewBptset from "./Business/ReviewBptset.vue";
import ReviewBptcan from "./Business/ReviewBptcan.vue";
import ReviewCltset from "./Business/ReviewCltset.vue"; import ReviewCltset from "./Business/ReviewCltset.vue";
import ReviewClttra from "./Business/ReviewClttra.vue"; import ReviewClttra from "./Business/ReviewClttra.vue";
...@@ -233,6 +234,7 @@ const ReviewRouter = [ ...@@ -233,6 +234,7 @@ const ReviewRouter = [
{ path: "Cptrep", component: ReviewCptrep, name: "ReviewCptrep", meta: { title: "复核-Cptrep" } }, { path: "Cptrep", component: ReviewCptrep, name: "ReviewCptrep", meta: { title: "复核-Cptrep" } },
{ path: "Bptopn", component: ReviewBptopn, name: "ReviewBptopn", meta: { title: "复核-Bptopn" } }, { path: "Bptopn", component: ReviewBptopn, name: "ReviewBptopn", meta: { title: "复核-Bptopn" } },
{ path: "Bptset", component: ReviewBptset, name: "ReviewBptset", meta: { title: "复核-Bptset" } }, { path: "Bptset", component: ReviewBptset, name: "ReviewBptset", meta: { title: "复核-Bptset" } },
{ path: "Bptcan", component: ReviewBptcan, name: "ReviewBptcan", meta: { title: "复核-Bptcan" } },
{ path: "Trtopn", component: ReviewTrtopn, name: "ReviewTrtopn", meta: { title: "复核-Trtopn" } }, { path: "Trtopn", component: ReviewTrtopn, name: "ReviewTrtopn", meta: { title: "复核-Trtopn" } },
{ path: "Trtame", component: ReviewTrtame, name: "ReviewTrtame", meta: { title: "复核-Trtame" } }, { path: "Trtame", component: ReviewTrtame, name: "ReviewTrtame", meta: { title: "复核-Trtame" } },
......
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