Commit fc40d906 by liyixun

Merge branch 'development-202206' of http://114.115.138.98:8900/fukai/vue-gjjs…

Merge branch 'development-202206' of http://114.115.138.98:8900/fukai/vue-gjjs into development-202206
parents 93995602 9b2e28a9
...@@ -5013,6 +5013,11 @@ const CodeTable = { ...@@ -5013,6 +5013,11 @@ const CodeTable = {
{ label: "Reverse Booking (Document Set)", value: "N" }, { label: "Reverse Booking (Document Set)", value: "N" },
{ label: "Reverse Booking (Doc. Set, L/C)", value: "B" }, { label: "Reverse Booking (Doc. Set, L/C)", value: "B" },
], ],
rebkpflg2: [
{ label: "Reverse Booking (Claim)", value: "N" },
{ label: "Reverse Booking (Claim, Guarantee)", value: "B" },
// { label: "Contract already settled" ,value: "A"}
],
refper: [ refper: [
{ label: "Same Week", value: "W=" }, { label: "Same Week", value: "W=" },
{ label: "Same Half-Year", value: "H=" }, { label: "Same Half-Year", value: "H=" },
......
...@@ -21,7 +21,8 @@ export default { ...@@ -21,7 +21,8 @@ export default {
"didgrp.cbs.opn1.amt":[ "didgrp.cbs.opn1.amt":[
{type: "string", required: false, message: "必输项"}, {type: "string", required: false, message: "必输项"},
{max: 18,message:"整数位不能超过14位"}, {max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" } //{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
{pattern: /(^-?\d+$)|(^\.\d{1,3}$)|(^-?\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
], ],
"bdtp.recget.sdamod.dadsnd":[ "bdtp.recget.sdamod.dadsnd":[
{type: "string", required: false, message: "必输项"}, {type: "string", required: false, message: "必输项"},
......
...@@ -21,7 +21,8 @@ export default { ...@@ -21,7 +21,8 @@ export default {
"didgrp.cbs.opn1.amt":[ "didgrp.cbs.opn1.amt":[
{type: "string", required: false, message: "必输项"}, {type: "string", required: false, message: "必输项"},
{max: 18,message:"整数位不能超过14位"}, {max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" } // {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
{pattern: /(^-?\d+$)|(^\.\d{1,3}$)|(^-?\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
], ],
"bdtp.recget.sdamod.dadsnd":[ "bdtp.recget.sdamod.dadsnd":[
{type: "string", required: false, message: "必输项"}, {type: "string", required: false, message: "必输项"},
......
...@@ -5,6 +5,10 @@ import Pub from "../Public" ...@@ -5,6 +5,10 @@ import Pub from "../Public"
export default class Botame{ export default class Botame{
constructor () { constructor () {
this.data = { this.data = {
botcoll2blk:"",
botcoll1blk:"",
botdrrl1blk:"",
bodgrp:{ bodgrp:{
rec:{ rec:{
ownref:"", // Reference .bodgrp.rec.ownref ownref:"", // Reference .bodgrp.rec.ownref
......
...@@ -32,7 +32,8 @@ export default { ...@@ -32,7 +32,8 @@ export default {
"didgrp.cbs.opn1.amt":[ "didgrp.cbs.opn1.amt":[
{required: false, message: "必输项", trigger: 'blur'}, {required: false, message: "必输项", trigger: 'blur'},
{max: 18,message:"整数位不能超过14位"}, {max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" } // {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
{pattern: /(^-?\d+$)|(^\.\d{1,3}$)|(^-?\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
], ],
"bddgrp.apl.pts.nam":[ "bddgrp.apl.pts.nam":[
{type: "string", required: false, message: "必输项"}, {type: "string", required: false, message: "必输项"},
...@@ -97,7 +98,8 @@ export default { ...@@ -97,7 +98,8 @@ export default {
"bddgrp.cbs.max.amt":[ "bddgrp.cbs.max.amt":[
{required: true, message: "必输项", trigger: 'blur'}, {required: true, message: "必输项", trigger: 'blur'},
{max: 18,message:"整数位不能超过14位"}, {max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" } // {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
{pattern: /(^-?\d+$)|(^\.\d{1,3}$)|(^-?\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
], ],
"bddgrp.rec.docprbrol": [ "bddgrp.rec.docprbrol": [
{ type: "string", required: true, message: "必输项" }, { type: "string", required: true, message: "必输项" },
...@@ -188,7 +190,8 @@ export default { ...@@ -188,7 +190,8 @@ export default {
"bddgrp.cbs.opn1.amt":[ "bddgrp.cbs.opn1.amt":[
{type: "number", required: false, message: "必输项"}, {type: "number", required: false, message: "必输项"},
{max: 18,message:"整数位不能超过14位"}, {max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" } // {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
{pattern: /(^-?\d+$)|(^\.\d{1,3}$)|(^-?\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
], ],
// "bddgrp.rec.rcvdat":[ // "bddgrp.rec.rcvdat":[
// {type: "date", required: false, message: "输入正确的日期"} // {type: "date", required: false, message: "输入正确的日期"}
......
...@@ -7,76 +7,95 @@ let checkObj = { ...@@ -7,76 +7,95 @@ let checkObj = {
"liaall.misamt" :null, "liaall.misamt" :null,
"trnmod.cipmod.fkrdz3" :null, "trnmod.cipmod.fkrdz3" :null,
"trnmod.cipmod.fkrdz4" :null, "trnmod.cipmod.fkrdz4" :null,
"bopmod.dbcgrp.bas.buscode" :null,
"trnmod.cipmod.fkrdz2" :null, "trnmod.cipmod.fkrdz2" :null,
"trnmod.cipmod.skkhdz" :null, "trnmod.cipmod.skkhdz" :null,
"trnmod.cipmod.fkrdz7" :null, "trnmod.cipmod.fkrdz7" :null,
"trnmod.cipmod.fufeih" :null, "trnmod.cipmod.fufeih" :null,
"trnmod.cipmod.fkrdz5" :null, "trnmod.cipmod.fkrdz5" :null,
"trnmod.cipmod.fkrdz6" :null, "trnmod.cipmod.fkrdz6" :null,
"bopmod.dbcgrp.bas.txamt" :null, "bopmod.dbfgrp.bas.txamt" :null,
"cnybop.cnyout.sbalancemode" :null, "cnybop.cnyout.sbalancemode" :null,
"cnybop.outflg" :null, "cnybop.outflg" :null,
"bopmod.dbcgrp.bas.custnm" :null, "bopmod.dbfgrp.bas.custnm" :null,
"bopmod.dbcgrp.bas.exrate" :null,
"bopmod.dbcgrp.bas.custype" :null, "bopmod.dbcgrp.bas.custype" :null,
"bopmod.dbcgrp.bas.idcode" :null,
"bopmod.dbcgrp.bas.oppuser" :null,
"bopmod.dbfgrp.bas.custype" :null,
"gcdgrp.oth.adrelc" :null, "gcdgrp.oth.adrelc" :null,
"liaall.limmod.limpts.oth.pts.nam" :null, "liaall.limmod.limpts.oth.pts.nam" :null,
"setmod.dspflg" :null, "setmod.dspflg" :null,
"trnmod.cipmod.skkhhh" :null, "trnmod.cipmod.skkhhh" :null,
"bopmod.dbcgrp.bas.fcyamt" :null,
"cnybop.cnyout.iaccountperiod" :null, "cnybop.cnyout.iaccountperiod" :null,
"cnybop.cnyout.sbanktrano" :null, "cnybop.cnyout.sbanktrano" :null,
"trnmod.cipmod.skkhhm" :null, "trnmod.cipmod.skkhhm" :null,
"bopmod.dbcgrp.bas.issdate" :null,
"trnmod.cipmod.pyebchnam" :null, "trnmod.cipmod.pyebchnam" :null,
"bopmod.dbcgrp.bas.lcbgno" :null,
"liaall.liaccv.totcovamt" :null, "liaall.liaccv.totcovamt" :null,
"bopmod.dbcgrp.bas.lcyamt" :null, "bopmod.dbfgrp.bas.lcyamt" :null,
"trnmod.cipmod.fkrkhh" :null, "trnmod.cipmod.fkrkhh" :null,
"trnmod.cipmod.fkhkhh" :null, "trnmod.cipmod.fkhkhh" :null,
"gcdgrp.prb.namelc" :null, "gcdgrp.prb.namelc" :null,
"bopmod.dbcgrp.bas.othacc" :null, "bopmod.dbfgrp.bas.othacc" :null,
"bopmod.dbcgrp.bas.custnm" :null,
"gcdgrp.prb.pts.adrblk" :null, "gcdgrp.prb.pts.adrblk" :null,
"trnmod.cipmod.recsehbchnam" :null, "trnmod.cipmod.recsehbchnam" :null,
"trnmod.cipmod.fkhdzh" :null, "trnmod.cipmod.fkhdzh" :null,
"bopmod.dbcgrp.bas.oppuser" :null, "bopmod.dbcgrp.bas.methods" :null,
"bopmod.dbfgrp.bas.oppuser" :null,
"liaall.limmod.limpts.wrk.pts.nam" :null, "liaall.limmod.limpts.wrk.pts.nam" :null,
"cnybop.saddwordout" :null, "cnybop.saddwordout" :null,
"cnybop.cnyflg" :null, "cnybop.cnyflg" :null,
"trnmod.cipmod.pyebchkey" :null, "trnmod.cipmod.pyebchkey" :null,
"trnmod.cipmod.zjg2hh" :null, "trnmod.cipmod.zjg2hh" :null,
"cnybop.cnyout.sswiftbic" :null, "cnybop.cnyout.sswiftbic" :null,
"bopmod.dbcgrp.bas.issdate" :null, "bopmod.dbfgrp.bas.issdate" :null,
"cnybop.cnyout.sbankorgcode" :null, "cnybop.cnyout.sbankorgcode" :null,
"bopmod.dbcgrp.bas.actuccy" :null, "bopmod.dbcgrp.bas.txamt" :null,
"bopmod.dbfgrp.bas.actuccy" :null,
"bopmod.dbcgrp.bas.fcyacc" :null,
"trnmod.cipmod.ffeih2" :null, "trnmod.cipmod.ffeih2" :null,
"cnybop.cnyout.cpayeraccttyp" :null, "cnybop.cnyout.cpayeraccttyp" :null,
"bopmod.dbcgrp.bas.exrate" :null, "bopmod.dbfgrp.bas.exrate" :null,
"cnybop.spayeename" :null, "cnybop.spayeename" :null,
"bopmod.dbcgrp.bas.fcyacc" :null, "bopmod.dbfgrp.bas.fcyacc" :null,
"bopmod.dbcgrp.bas.txccy" :null, "bopmod.dbfgrp.bas.txccy" :null,
"trnmod.cipmod.fuynh4" :null, "trnmod.cipmod.fuynh4" :null,
"trnmod.cipmod.fuynh2" :null, "trnmod.cipmod.fuynh2" :null,
"trnmod.cipmod.fuynh3" :null, "trnmod.cipmod.fuynh3" :null,
"bopmod.dbcgrp.bas.othamt" :null, "bopmod.dbfgrp.bas.othamt" :null,
"gcdgrp.oth.pts.extkey" :null, "gcdgrp.oth.pts.extkey" :null,
"bopmod.dbcgrp.bas.outchargeamt" :null, "bopmod.dbfgrp.bas.outchargeamt" :null,
"trnmod.cipmod.recsehbch" :null, "trnmod.cipmod.recsehbch" :null,
"bopmod.dbcgrp.bas.custcod" :null, "bopmod.dbfgrp.bas.custcod" :null,
"bopmod.dbcgrp.bas.outchargeccy" :null,
"bopmod.dbcgrp.bas.othamt" :null,
"bopmod.dbcgrp.bas.actuamt" :null,
"trnmod.commen" :null, "trnmod.commen" :null,
"trnmod.cipmod.stasehbchnam" :null, "trnmod.cipmod.stasehbchnam" :null,
"cnybop.cnyout.fpayeeamt" :null, "cnybop.cnyout.fpayeeamt" :null,
"trnmod.cipmod.zjg1hh" :null, "trnmod.cipmod.zjg1hh" :null,
"trnmod.cipmod.zjg1mc" :null, "trnmod.cipmod.zjg1mc" :null,
"liaall.limmod.limpts.oth.pts.extkey" :null, "liaall.limmod.limpts.oth.pts.extkey" :null,
"bopmod.dbcgrp.bas.lcyacc" :null, "bopmod.dbfgrp.bas.lcyacc" :null,
"trnmod.cipmod.skrdz7" :null, "trnmod.cipmod.skrdz7" :null,
"trnmod.cipmod.skrdz6" :null, "trnmod.cipmod.skrdz6" :null,
"gcdgrp.prb.adrelc" :null, "gcdgrp.prb.adrelc" :null,
"liaall.limmod.ownref" :null, "liaall.limmod.ownref" :null,
"bopmod.dbcgrp.bas.tenor" :null, "bopmod.dbcgrp.bas.othacc" :null,
"bopmod.dbcgrp.bas.actiondesc" :null, "bopmod.dbfgrp.bas.tenor" :null,
"bopmod.dbfgrp.bas.actiondesc" :null,
"liaall.limmod.ecifno" :null, "liaall.limmod.ecifno" :null,
"bopmod.dbcgrp.bas.actuccy" :null,
"trnmod.cipmod.skrdz3" :null, "trnmod.cipmod.skrdz3" :null,
"trnmod.cipmod.skrdz2" :null, "trnmod.cipmod.skrdz2" :null,
"trnmod.cipmod.skrdz5" :null, "trnmod.cipmod.skrdz5" :null,
"trnmod.cipmod.skrdz4" :null, "trnmod.cipmod.skrdz4" :null,
"bopmod.dbcgrp.bas.actiontype" :null,
"bopmod.dbcgrp.bas.lcyamt" :null,
"gcdgrp.oth.namelc" :null, "gcdgrp.oth.namelc" :null,
"trnmod.cipmod.feiyon" :null, "trnmod.cipmod.feiyon" :null,
"trnmod.cipmod.zjg2mc" :null, "trnmod.cipmod.zjg2mc" :null,
...@@ -87,41 +106,47 @@ let checkObj = { ...@@ -87,41 +106,47 @@ let checkObj = {
"bopmod.szflg" :null, "bopmod.szflg" :null,
"trnmod.cipmod.feecod" :null, "trnmod.cipmod.feecod" :null,
"cnybop.outscale" :null, "cnybop.outscale" :null,
"bopmod.dbcgrp.bas.methods" :null, "bopmod.dbcgrp.bas.actiondesc" :null,
"bopmod.dbcgrp.bas.actiontype" :null, "bopmod.dbfgrp.bas.methods" :null,
"bopmod.dbfgrp.bas.actiontype" :null,
"cnybop.traflg" :null, "cnybop.traflg" :null,
"cnybop.sbankname" :null, "cnybop.sbankname" :null,
"bopmod.dbcgrp.bas.lcbgno" :null, "bopmod.dbfgrp.bas.lcbgno" :null,
"trnmod.cipmod.feiyn2" :null, "trnmod.cipmod.feiyn2" :null,
"gcdgrp.prb.pts.extkey" :null, "gcdgrp.prb.pts.extkey" :null,
"bopmod.dbcgrp.bas.rptno" :null,
"cnybop.cnyout.dpayeedate" :null, "cnybop.cnyout.dpayeedate" :null,
"gctp.ischktyp" :null, "gctp.ischktyp" :null,
"gctp.prechkdat" :null, "gctp.prechkdat" :null,
"bopmod.dbcgrp.bas.rptno" :null, "bopmod.dbfgrp.bas.rptno" :null,
"bopmod.dbcgrp.bas.idcode" :null, "bopmod.dbfgrp.bas.idcode" :null,
"bopmod.dbcgrp.bas.fcyamt" :null, "bopmod.dbfgrp.bas.fcyamt" :null,
"trnmod.reconebchnam" :null, "trnmod.reconebchnam" :null,
"cnybop.cnyout.frecordamt" :null, "cnybop.cnyout.frecordamt" :null,
"trnmod.cipmod.staonebchnam" :null, "trnmod.cipmod.staonebchnam" :null,
"bopmod.dbcgrp.bas.custcod" :null,
"trnmod.cmtflg" :null, "trnmod.cmtflg" :null,
"bopmod.dbcgrp.bas.txccy" :null,
"liaall.limmod.limpts.wrk.pts.extkey" :null, "liaall.limmod.limpts.wrk.pts.extkey" :null,
"gcdgrp.apl.pts.nam" :null, "gcdgrp.apl.pts.nam" :null,
"trnmod.cipmod.stasehbch" :null, "trnmod.cipmod.stasehbch" :null,
"bopmod.basflg" :null, "bopmod.basflg" :null,
"mtabut.coninf.conexedat" :null, "mtabut.coninf.conexedat" :null,
"bopmod.dbcgrp.bas.buscode" :null, "bopmod.dbfgrp.bas.buscode" :null,
"cnybop.spayername" :null, "cnybop.spayername" :null,
"trnmod.cipmod.fkkhmc" :null, "trnmod.cipmod.fkkhmc" :null,
"bopmod.dbcgrp.bas.lcyacc" :null,
"liaall.limmod.limpts.nonrevflg1" :null, "liaall.limmod.limpts.nonrevflg1" :null,
"bopmod.dbcgrp.bas.outchargeamt" :null,
"cnybop.libflg" :null, "cnybop.libflg" :null,
"trnmod.bustyp" :null, "trnmod.bustyp" :null,
"bopmod.ownextkey" :null, "bopmod.ownextkey" :null,
"cnybop.cnyout.spayeecny" :null, "cnybop.cnyout.spayeecny" :null,
"cnybop.cnyout.spayercountrycode" :null, "cnybop.cnyout.spayercountrycode" :null,
"setmod.docamt" :null, "setmod.docamt" :null,
"bopmod.dbcgrp.bas.outchargeccy" :null, "bopmod.dbfgrp.bas.outchargeccy" :null,
"liaall.liaccv.cshpct" :null, "liaall.liaccv.cshpct" :null,
"bopmod.dbcgrp.bas.actuamt" :null, "bopmod.dbfgrp.bas.actuamt" :null,
"bopmod.acttyp" :null, "bopmod.acttyp" :null,
"gcdgrp.oth.pts.adrblk" :null, "gcdgrp.oth.pts.adrblk" :null,
"cnybop.cnyout.sorilevyno" :null, "cnybop.cnyout.sorilevyno" :null,
......
...@@ -6,12 +6,15 @@ import Api from "~/service/Api"; ...@@ -6,12 +6,15 @@ import Api from "~/service/Api";
import Utils from "~/utils/index" import Utils from "~/utils/index"
export default { export default {
"bopmod.dbcgrp.bas.buscode" :Utils.defaultFunction,
"liaall.limmod.limpts.oth.pts.extkey" :Utils.defaultFunction, "liaall.limmod.limpts.oth.pts.extkey" :Utils.defaultFunction,
"bopmod.dbcgrp.bas.rptno" :Utils.defaultFunction, "bopmod.dbcgrp.bas.rptno" :Utils.defaultFunction,
"bopmod.dbfgrp.bas.rptno" :Utils.defaultFunction,
"trnmod.cipmod.ddbhao" :Utils.defaultFunction, "trnmod.cipmod.ddbhao" :Utils.defaultFunction,
"gcdgrp.cbs.max2.amt" :Utils.defaultFunction, "gcdgrp.cbs.max2.amt" :Utils.defaultFunction,
"cnybop.libflg" :Utils.defaultFunction, "cnybop.libflg" :Utils.defaultFunction,
"gidgrp.rec.ownref" :Utils.defaultFunction, "gidgrp.rec.ownref" :Utils.defaultFunction,
"bopmod.dbcgrp.bas.methods" :Utils.defaultFunction,
"gcdgrp.rec.ownref" :Utils.defaultFunction, "gcdgrp.rec.ownref" :Utils.defaultFunction,
"gcdgrp.prb.pts.extkey" :Utils.defaultFunction, "gcdgrp.prb.pts.extkey" :Utils.defaultFunction,
"gcdgrp.prb.adrelc" :Utils.defaultFunction, "gcdgrp.prb.adrelc" :Utils.defaultFunction,
...@@ -40,12 +43,13 @@ export default { ...@@ -40,12 +43,13 @@ export default {
"liaall.limmod.limpts.wrk.pts.extkey" :Utils.defaultFunction, "liaall.limmod.limpts.wrk.pts.extkey" :Utils.defaultFunction,
"gidgrp.rec.gartyp" :Utils.defaultFunction, "gidgrp.rec.gartyp" :Utils.defaultFunction,
"gidgrp.rec.liadat" :Utils.defaultFunction, "gidgrp.rec.liadat" :Utils.defaultFunction,
"bopmod.dbcgrp.bas.ownextkey" :Utils.defaultFunction,
"liaall.limmod.limpts.nonrevflg2" :Utils.defaultFunction, "liaall.limmod.limpts.nonrevflg2" :Utils.defaultFunction,
"liaall.limmod.limpts.nonrevflg1" :Utils.defaultFunction, "liaall.limmod.limpts.nonrevflg1" :Utils.defaultFunction,
"trnmod.cipmod.feecod" :Utils.defaultFunction, "trnmod.cipmod.feecod" :Utils.defaultFunction,
"bopmod.vrfflg" :Utils.defaultFunction, "bopmod.vrfflg" :Utils.defaultFunction,
"bopmod.dclflg" :Utils.defaultFunction, "bopmod.dclflg" :Utils.defaultFunction,
"bopmod.dbcgrp.bas.tmpref" :Utils.defaultFunction, "bopmod.dbfgrp.bas.tmpref" :Utils.defaultFunction,
"trnmod.cmtflg" :Utils.defaultFunction, "trnmod.cmtflg" :Utils.defaultFunction,
"gidgrp.rec.expdat" :Utils.defaultFunction, "gidgrp.rec.expdat" :Utils.defaultFunction,
"liaall.liaccv.addinf" :Utils.defaultFunction, "liaall.liaccv.addinf" :Utils.defaultFunction,
...@@ -55,22 +59,25 @@ export default { ...@@ -55,22 +59,25 @@ export default {
"liaall.liaccv.concur" :Utils.defaultFunction, "liaall.liaccv.concur" :Utils.defaultFunction,
"gcdgrp.rec.frepayflg" :Utils.defaultFunction, "gcdgrp.rec.frepayflg" :Utils.defaultFunction,
"cnybop.traflg" :Utils.defaultFunction, "cnybop.traflg" :Utils.defaultFunction,
"bopmod.dbcgrp.bas.methods" :Utils.defaultFunction, "bopmod.dbfgrp.bas.methods" :Utils.defaultFunction,
"bopmod.dbcgrp.bas.tmpref" :Utils.defaultFunction,
"cnybop.cnyflg" :Utils.defaultFunction, "cnybop.cnyflg" :Utils.defaultFunction,
"gctp.ischktyp" :Utils.defaultFunction, "gctp.ischktyp" :Utils.defaultFunction,
"gcdgrp.ben.pts.nam" :Utils.defaultFunction, "gcdgrp.ben.pts.nam" :Utils.defaultFunction,
"gidgrp.rec.cmtflg" :Utils.defaultFunction, "gidgrp.rec.cmtflg" :Utils.defaultFunction,
"bopmod.dbcgrp.bas.custype" :Utils.defaultFunction,
"liaall.limmod.comamt" :Utils.defaultFunction, "liaall.limmod.comamt" :Utils.defaultFunction,
"liaall.limmod.ccvamt" :Utils.defaultFunction, "liaall.limmod.ccvamt" :Utils.defaultFunction,
"liaall.limmod.limpts.wrk.pts.nam" :Utils.defaultFunction, "liaall.limmod.limpts.wrk.pts.nam" :Utils.defaultFunction,
"gcdgrp.cbs.opn1.amt" :Utils.defaultFunction, "gcdgrp.cbs.opn1.amt" :Utils.defaultFunction,
"gidgrp.cbs.opn1.amt" :Utils.defaultFunction, "gidgrp.cbs.opn1.amt" :Utils.defaultFunction,
"bopmod.dbcgrp.bas.custype" :Utils.defaultFunction, "bopmod.dbfgrp.bas.custype" :Utils.defaultFunction,
"bopmod.dbcgrp.bas.custcod" :Utils.defaultFunction, "bopmod.dbfgrp.bas.custcod" :Utils.defaultFunction,
"setmod.glemod.gleshwstm" :Utils.defaultFunction, "setmod.glemod.gleshwstm" :Utils.defaultFunction,
"trnmod.cipmod.ddmisu" :Utils.defaultFunction, "trnmod.cipmod.ddmisu" :Utils.defaultFunction,
"bopmod.dbcgrp.bas.custcod" :Utils.defaultFunction,
"liaall.misamt" :Utils.defaultFunction, "liaall.misamt" :Utils.defaultFunction,
"bopmod.dbcgrp.bas.buscode" :Utils.defaultFunction, "bopmod.dbfgrp.bas.buscode" :Utils.defaultFunction,
"trnmod.bustyp" :Utils.defaultFunction, "trnmod.bustyp" :Utils.defaultFunction,
"cnybop.cnyout.spayercountrycode" :Utils.defaultFunction, "cnybop.cnyout.spayercountrycode" :Utils.defaultFunction,
"liaall.liaccv.newamt" :Utils.defaultFunction, "liaall.liaccv.newamt" :Utils.defaultFunction,
...@@ -81,12 +88,11 @@ export default { ...@@ -81,12 +88,11 @@ export default {
"mtabut.coninf.conexedat" :Utils.defaultFunction, "mtabut.coninf.conexedat" :Utils.defaultFunction,
"cnybop.outflg" :Utils.defaultFunction, "cnybop.outflg" :Utils.defaultFunction,
"trnmod.cipmod.covflg" :Utils.defaultFunction, "trnmod.cipmod.covflg" :Utils.defaultFunction,
"bopmod.dbcgrp.bas.ownextkey" :Utils.defaultFunction, "bopmod.dbfgrp.bas.ownextkey" :Utils.defaultFunction,
"gctp.aplmullab" :Utils.defaultFunction, "gctp.aplmullab" :Utils.defaultFunction,
"liaall.liaccv.cshpct" :Utils.defaultFunction, "liaall.liaccv.cshpct" :Utils.defaultFunction,
"mtabut.coninf.oitset.oit.inftxt" :Utils.defaultFunction, "mtabut.coninf.oitset.oit.inftxt" :Utils.defaultFunction,
"mtabut.coninf.oitset.oit.inflev" :Utils.defaultFunction, "mtabut.coninf.oitset.oit.inflev" :Utils.defaultFunction,
"gcdgrp.rec.docprbrol" :Utils.defaultFunction, "gcdgrp.rec.docprbrol" :Utils.defaultFunction,
} }
//你可以添加自动default处理 //你可以添加自动default处理
...@@ -2,9 +2,6 @@ import Api from "~/service/Api" ...@@ -2,9 +2,6 @@ import Api from "~/service/Api"
import Utils from "~/utils" import Utils from "~/utils"
export default { export default {
async onSeainf(){
},
async onGctpGetrefbut(){ async onGctpGetrefbut(){
let rtnmsg = await this.executeRule("gctp.getrefbut") let rtnmsg = await this.executeRule("gctp.getrefbut")
if(rtnmsg.respCode == SUCCESS) if(rtnmsg.respCode == SUCCESS)
...@@ -245,6 +242,114 @@ export default { ...@@ -245,6 +242,114 @@ export default {
this.$notify.error({title: '错误',message: '服务请求失败!'}); this.$notify.error({title: '错误',message: '服务请求失败!'});
} }
}, },
async onBaspp1Getreftmp(){
let rtnmsg = await this.executeRule("baspp1.getreftmp")
if(rtnmsg.respCode == SUCCESS)
{
//TODO 处理数据逻辑
}
else
{
this.$notify.error({title: '错误',message: '服务请求失败!'});
}
},
async onBaspp1Getref(){
let rtnmsg = await this.executeRule("baspp1.getref")
if(rtnmsg.respCode == SUCCESS)
{
//TODO 处理数据逻辑
}
else
{
this.$notify.error({title: '错误',message: '服务请求失败!'});
}
},
async onCan(){
let rtnmsg = await this.executeRule("can")
if(rtnmsg.respCode == SUCCESS)
{
//TODO 处理数据逻辑
}
else
{
this.$notify.error({title: '错误',message: '服务请求失败!'});
}
},
async onChk(){
let rtnmsg = await this.executeRule("chk")
if(rtnmsg.respCode == SUCCESS)
{
//TODO 处理数据逻辑
}
else
{
this.$notify.error({title: '错误',message: '服务请求失败!'});
}
},
async onChk(){
let rtnmsg = await this.executeRule("chk")
if(rtnmsg.respCode == SUCCESS)
{
//TODO 处理数据逻辑
}
else
{
this.$notify.error({title: '错误',message: '服务请求失败!'});
}
},
async onButpErr(){
let rtnmsg = await this.executeRule("butp.err")
if(rtnmsg.respCode == SUCCESS)
{
//TODO 处理数据逻辑
}
else
{
this.$notify.error({title: '错误',message: '服务请求失败!'});
}
},
async onCan(){
let rtnmsg = await this.executeRule("can")
if(rtnmsg.respCode == SUCCESS)
{
//TODO 处理数据逻辑
}
else
{
this.$notify.error({title: '错误',message: '服务请求失败!'});
}
},
async onOutctySelbut1(){
let rtnmsg = await this.executeRule("outcty.selbut1")
if(rtnmsg.respCode == SUCCESS)
{
//TODO 处理数据逻辑
}
else
{
this.$notify.error({title: '错误',message: '服务请求失败!'});
}
},
async onSav(){
let rtnmsg = await this.executeRule("sav")
if(rtnmsg.respCode == SUCCESS)
{
//TODO 处理数据逻辑
}
else
{
this.$notify.error({title: '错误',message: '服务请求失败!'});
}
},
async onBasppGetreftmp(){ async onBasppGetreftmp(){
let rtnmsg = await this.executeRule("baspp.getreftmp") let rtnmsg = await this.executeRule("baspp.getreftmp")
if(rtnmsg.respCode == SUCCESS) if(rtnmsg.respCode == SUCCESS)
...@@ -293,6 +398,18 @@ export default { ...@@ -293,6 +398,18 @@ export default {
this.$notify.error({title: '错误',message: '服务请求失败!'}); this.$notify.error({title: '错误',message: '服务请求失败!'});
} }
}, },
async onChk(){
let rtnmsg = await this.executeRule("chk")
if(rtnmsg.respCode == SUCCESS)
{
//TODO 处理数据逻辑
}
else
{
this.$notify.error({title: '错误',message: '服务请求失败!'});
}
},
async onButpErr(){ async onButpErr(){
let rtnmsg = await this.executeRule("butp.err") let rtnmsg = await this.executeRule("butp.err")
if(rtnmsg.respCode == SUCCESS) if(rtnmsg.respCode == SUCCESS)
...@@ -305,8 +422,8 @@ export default { ...@@ -305,8 +422,8 @@ export default {
this.$notify.error({title: '错误',message: '服务请求失败!'}); this.$notify.error({title: '错误',message: '服务请求失败!'});
} }
}, },
async onOutctySelbut1(){ async onCan(){
let rtnmsg = await this.executeRule("outcty.selbut1") let rtnmsg = await this.executeRule("can")
if(rtnmsg.respCode == SUCCESS) if(rtnmsg.respCode == SUCCESS)
{ {
//TODO 处理数据逻辑 //TODO 处理数据逻辑
......
...@@ -416,11 +416,11 @@ export default { ...@@ -416,11 +416,11 @@ export default {
"bopmod.dbcgrp.bas.rptno":[ "bopmod.dbfgrp.bas.rptno":[
{type: "string", required: false, message: "必输项"}, {type: "string", required: false, message: "必输项"},
{max: 22,message:"长度不能超过22"} {max: 22,message:"长度不能超过22"}
], ],
"bopmod.dbcgrp.bas.tmpref":[ "bopmod.dbfgrp.bas.tmpref":[
{type: "string", required: false, message: "必输项"}, {type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"} {max: 16,message:"长度不能超过16"}
], ],
...@@ -429,81 +429,81 @@ export default { ...@@ -429,81 +429,81 @@ export default {
"bopmod.dbcgrp.bas.actiondesc":[ "bopmod.dbfgrp.bas.actiondesc":[
{type: "string", required: true, message: "必输项"}, {type: "string", required: true, message: "必输项"},
{max: 32,message:"长度不能超过32"} {max: 32,message:"长度不能超过32"}
], ],
"bopmod.dbcgrp.bas.buscode":[ "bopmod.dbfgrp.bas.buscode":[
{type: "string", required: false, message: "必输项"}, {type: "string", required: false, message: "必输项"},
{max: 22,message:"长度不能超过22"} {max: 22,message:"长度不能超过22"}
], ],
"bopmod.dbcgrp.bas.custcod":[ "bopmod.dbfgrp.bas.custcod":[
{type: "string", required: false, message: "必输项"}, {type: "string", required: false, message: "必输项"},
{max: 18,message:"长度不能超过18"} {max: 18,message:"长度不能超过18"}
], ],
"bopmod.dbcgrp.bas.custnm":[ "bopmod.dbfgrp.bas.custnm":[
{type: "string", required: true, message: "必输项"}, {type: "string", required: true, message: "必输项"},
{max: 63,message:"长度不能超过63"} {max: 63,message:"长度不能超过63"}
], ],
"bopmod.dbcgrp.bas.oppuser":[ "bopmod.dbfgrp.bas.oppuser":[
{type: "string", required: true, message: "必输项"}, {type: "string", required: true, message: "必输项"},
{max: 63,message:"长度不能超过63"} {max: 63,message:"长度不能超过63"}
], ],
"bopmod.dbcgrp.bas.idcode":[ "bopmod.dbfgrp.bas.idcode":[
{type: "string", required: false, message: "必输项"}, {type: "string", required: false, message: "必输项"},
{max: 32,message:"长度不能超过32"} {max: 32,message:"长度不能超过32"}
], ],
"bopmod.dbcgrp.bas.exrate":[ "bopmod.dbfgrp.bas.exrate":[
{type: "string", required: false, message: "必输项"}, {type: "string", required: false, message: "必输项"},
{max: 13,message:"长度不能超过13"} {max: 13,message:"长度不能超过13"}
], ],
"bopmod.dbcgrp.bas.lcyamt":[ "bopmod.dbfgrp.bas.lcyamt":[
{type: "number", required: false, message: "必输项"} ], {type: "number", required: false, message: "必输项"} ],
"bopmod.dbcgrp.bas.lcyacc":[ "bopmod.dbfgrp.bas.lcyacc":[
{type: "string", required: false, message: "必输项"}, {type: "string", required: false, message: "必输项"},
{max: 32,message:"长度不能超过32"} {max: 32,message:"长度不能超过32"}
], ],
"bopmod.dbcgrp.bas.fcyamt":[ "bopmod.dbfgrp.bas.fcyamt":[
{type: "number", required: false, message: "必输项"} ], {type: "number", required: false, message: "必输项"} ],
"bopmod.dbcgrp.bas.fcyacc":[ "bopmod.dbfgrp.bas.fcyacc":[
{type: "string", required: false, message: "必输项"}, {type: "string", required: false, message: "必输项"},
{max: 32,message:"长度不能超过32"} {max: 32,message:"长度不能超过32"}
], ],
"bopmod.dbcgrp.bas.othamt":[ "bopmod.dbfgrp.bas.othamt":[
{type: "number", required: false, message: "必输项"} ], {type: "number", required: false, message: "必输项"} ],
"bopmod.dbcgrp.bas.othacc":[ "bopmod.dbfgrp.bas.othacc":[
{type: "string", required: false, message: "必输项"}, {type: "string", required: false, message: "必输项"},
{max: 32,message:"长度不能超过32"} {max: 32,message:"长度不能超过32"}
], ],
"bopmod.dbcgrp.bas.txamt":[ "bopmod.dbfgrp.bas.txamt":[
{type: "number", required: false, message: "必输项"} ], {type: "number", required: false, message: "必输项"} ],
"bopmod.dbcgrp.bas.outchargeamt":[ "bopmod.dbfgrp.bas.outchargeamt":[
{type: "number", required: false, message: "必输项"} ], {type: "number", required: false, message: "必输项"} ],
"bopmod.dbcgrp.bas.actuamt":[ "bopmod.dbfgrp.bas.actuamt":[
{type: "number", required: false, message: "必输项"} ], {type: "number", required: false, message: "必输项"} ],
"bopmod.dbcgrp.bas.issdate":[ "bopmod.dbfgrp.bas.issdate":[
{type: "date", required: false, message: "输入正确的日期"} {type: "date", required: false, message: "输入正确的日期"}
], ],
"bopmod.dbcgrp.bas.lcbgno":[ "bopmod.dbfgrp.bas.lcbgno":[
{type: "string", required: false, message: "必输项"}, {type: "string", required: false, message: "必输项"},
{max: 20,message:"长度不能超过20"} {max: 20,message:"长度不能超过20"}
], ],
"bopmod.dbcgrp.bas.tenor":[ "bopmod.dbfgrp.bas.tenor":[
{type: "string", required: false, message: "必输项"}, {type: "string", required: false, message: "必输项"},
{max: 10,message:"长度不能超过10"} {max: 10,message:"长度不能超过10"}
], ],
...@@ -843,4 +843,98 @@ export default { ...@@ -843,4 +843,98 @@ export default {
{type: "string", required: false, message: "必输项"}, {type: "string", required: false, message: "必输项"},
{max: 3,message:"长度不能超过3"} {max: 3,message:"长度不能超过3"}
], ],
"bopmod.dbcgrp.bas.rptno":[
{type: "string", required: false, message: "必输项"},
{max: 22,message:"长度不能超过22"}
],
"bopmod.dbcgrp.bas.tmpref":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"bopmod.dbcgrp.bas.actiondesc":[
{type: "string", required: true, message: "必输项"},
{max: 32,message:"长度不能超过32"}
],
"bopmod.dbcgrp.bas.buscode":[
{type: "string", required: false, message: "必输项"},
{max: 22,message:"长度不能超过22"}
],
"bopmod.dbcgrp.bas.custcod":[
{type: "string", required: false, message: "必输项"},
{max: 18,message:"长度不能超过18"}
],
"bopmod.dbcgrp.bas.custnm":[
{type: "string", required: true, message: "必输项"},
{max: 63,message:"长度不能超过63"}
],
"bopmod.dbcgrp.bas.oppuser":[
{type: "string", required: true, message: "必输项"},
{max: 63,message:"长度不能超过63"}
],
"bopmod.dbcgrp.bas.idcode":[
{type: "string", required: false, message: "必输项"},
{max: 32,message:"长度不能超过32"}
],
"bopmod.dbcgrp.bas.exrate":[
{type: "string", required: false, message: "必输项"},
{max: 13,message:"长度不能超过13"}
],
"bopmod.dbcgrp.bas.lcyamt":[
{type: "number", required: false, message: "必输项"} ],
"bopmod.dbcgrp.bas.lcyacc":[
{type: "string", required: false, message: "必输项"},
{max: 32,message:"长度不能超过32"}
],
"bopmod.dbcgrp.bas.fcyamt":[
{type: "number", required: false, message: "必输项"} ],
"bopmod.dbcgrp.bas.fcyacc":[
{type: "string", required: false, message: "必输项"},
{max: 32,message:"长度不能超过32"}
],
"bopmod.dbcgrp.bas.othamt":[
{type: "number", required: false, message: "必输项"} ],
"bopmod.dbcgrp.bas.othacc":[
{type: "string", required: false, message: "必输项"},
{max: 32,message:"长度不能超过32"}
],
"bopmod.dbcgrp.bas.txamt":[
{type: "number", required: false, message: "必输项"} ],
"bopmod.dbcgrp.bas.outchargeamt":[
{type: "number", required: false, message: "必输项"} ],
"bopmod.dbcgrp.bas.actuamt":[
{type: "number", required: false, message: "必输项"} ],
"bopmod.dbcgrp.bas.issdate":[
{type: "date", required: false, message: "输入正确的日期"}
],
"bopmod.dbcgrp.bas.lcbgno":[
{type: "string", required: false, message: "必输项"},
{max: 20,message:"长度不能超过20"}
],
"bopmod.dbcgrp.bas.tenor":[
{type: "string", required: false, message: "必输项"},
{max: 10,message:"长度不能超过10"}
],
} }
\ No newline at end of file
...@@ -4,11 +4,15 @@ import Pub from "../Public" ...@@ -4,11 +4,15 @@ import Pub from "../Public"
export default class Gitset{ export default class Gitset{
constructor () { constructor () {
this.data = { this.data = {
setmod:new Pub().data.Setmod, gitapll2blk: "",
mtabut:new Pub().data.Mtabut, gitapll1blk: "",
gitbenl1blk: "",
gitprbl1blk: "",
gitrmrl1blk: "",
setmod: new Pub().data.Setmod,
mtabut: new Pub().data.Mtabut,
trnmod: new Pub().data.Trnmod,
liaall: new Pub().data.Liaall, liaall: new Pub().data.Liaall,
gctp:{ gctp:{
expfldlab:"", // Label for Field Validity .gctp.expfldlab expfldlab:"", // Label for Field Validity .gctp.expfldlab
explab:"", // Label unlimited Validity .gctp.explab explab:"", // Label unlimited Validity .gctp.explab
...@@ -212,174 +216,88 @@ export default class Gitset{ ...@@ -212,174 +216,88 @@ export default class Gitset{
// gleshwstm:"", // Booking stream to Display .setmod.glemod.gleshwstm // gleshwstm:"", // Booking stream to Display .setmod.glemod.gleshwstm
// }, // },
// }, // },
trnmod:{ // trnmod:{
swiadd: { // trndoc:{
amedat: "", // Amendment Date .trnmod.swiadd.amedat // advlabel:"", // ADVLABEL .trnmod.trndoc.advlabel
amenbr: "", // Amend. No Received .trnmod.swiadd.amenbr // amdnam:"", // AMDNAM .trnmod.trndoc.amdnam
amecur: "", // Amended .trnmod.swiadd.amecur // advdoc:"", // 国内证通知书 .trnmod.trndoc.advdoc
ameamt: "", // Amended .trnmod.swiadd.ameamt // advnam:"", // 国内证落款 .trnmod.trndoc.advnam
newcur: "", // New Data .trnmod.swiadd.newcur // amdapl:"", // 修改申请人名称 .trnmod.trndoc.amdapl
newamt: "", // New Data .trnmod.swiadd.newamt // doclbl:"", // Lable for CONDOCSTM .trnmod.trndoc.doclbl
newnomtop: "", // New positive tolerance .trnmod.swiadd.newnomtop // doctrestm:"", // Document tree .trnmod.trndoc.doctrestm
newnomton: "", // New negative tolerance .trnmod.swiadd.newnomton // shwinc:"", // Show Incoming Messages .trnmod.trndoc.shwinc
nomspc: "", // Amount Specification .trnmod.swiadd.nomspc // shwout:"", // Show Outgoing Messages .trnmod.trndoc.shwout
newexpdat: "", // New Expiry Date .trnmod.swiadd.newexpdat // condocstm:"", // Connected Documents .trnmod.trndoc.condocstm
newshpdat: "", // New Shipment Date .trnmod.swiadd.newshpdat // rcvatt:{
shpper: "", // Shipment Period .trnmod.swiadd.shpper // seainf:"", // .trnmod.trndoc.rcvatt.seainf
shpfro: "", // Dispatch from .trnmod.swiadd.shpfro // },
porloa: "", // Air-/Port of Loading .trnmod.swiadd.porloa // filrecv:"", // File Receiver .trnmod.trndoc.filrecv
pordis: "", // Air-/Port of Discharge .trnmod.swiadd.pordis // },
purpos: "", // Purpose of message trnmod.swiadd.purpos // cmttag:"", // 跨境人民币清算模式 .trnmod.cmttag
shpto: "", // Final Destination .trnmod.swiadd.shpto // swfflg:"", // 报文类型 .trnmod.swfflg
addamtcov: "", // Amounts Covered .trnmod.swiadd.addamtcov // cmtflg:"", // CMT100 报文 .trnmod.cmtflg
addamt: "", // Amounts Covered .trnmod.swiadd.addamt // swftyp:"", // 报文类型 .trnmod.swftyp
insbnk: "", // Instruction to P/A/N Bank amendment .trnmod.swiadd.insbnk // reconebch:"", // 收款直接参与者行号 .trnmod.reconebch
nartxt: "", // reconebchnam:"", // 收款直接参与者名称 .trnmod.reconebchnam
newnomtopame: "", // commen:"", // 附言 .trnmod.commen
newnomtoname: "", // bustyp:"", // 业务种类 .trnmod.bustyp
prepers18: "", //New Presentation Period // cipmod:{
strinf: "", // Narrative of Maturity .trnmod.swiadd.strinf // dddbsh:"", // 端到端标识号 .trnmod.cipmod.dddbsh
newmatpercnt:"", // New Tenor Data .trnmod.swiadd.newmatpercnt // zjg1hh:"", // 中介机构1行号 .trnmod.cipmod.zjg1hh
newmatpertyp:"", // Days/Month or Year for Maturity Period .trnmod.swiadd.newmatpertyp // zjg1mc:"", // 中介机构1名称 .trnmod.cipmod.zjg1mc
newmatperbeg:"", // Start of Maturity Period .trnmod.swiadd.newmatperbeg // zjg2hh:"", // 中介机构2行号 .trnmod.cipmod.zjg2hh
newmatdat:"", // New Maturity Date .trnmod.swiadd.newmatdat // zjg2mc:"", // 中介机构2名称 .trnmod.cipmod.zjg2mc
ametxt:"", // Further Amendments .trnmod.swiadd.ametxt // dafnzh:"", // 借记记账账号 .trnmod.cipmod.dafnzh
shptoelc: "", // 货物目的地/交货地(港) .trnmod.swiadd.shptoelc // dafnmc:"", // 借记记账名称 .trnmod.cipmod.dafnmc
shpfroelc: "", // Shipment from .trnmod.swiadd.shpfroelc // recsehbch:"", // 收款间接参与者行号 .trnmod.cipmod.recsehbch
//nartxtflg: "", // Narrative modified .trnmod.swiadd.nartxtflg // staonebch:"", // 付款直接参与者行号 .trnmod.cipmod.staonebch
lcrgod: "", // Description of Goods amendment .trnmod.swiadd.lcrgod // recsehbchnam:"", // 收款间接参与者名称 .trnmod.cipmod.recsehbchnam
lcrdoc: "", // Documents Required amendment .trnmod.swiadd.lcrdoc // staonebchnam:"", // 付款直接参与者名称 .trnmod.cipmod.staonebchnam
//adlcnd: "", // Additional Conditions amendment .trnmod.swiadd.adlcnd // fuynh2:"", // 附言2 .trnmod.cipmod.fuynh2
// fuynh3:"", // 附言3 .trnmod.cipmod.fuynh3
// fuynh4:"", // 附言4 .trnmod.cipmod.fuynh4
purposamein:"", // Inc. Purpose of amend. .trnmod.swiadd.purposamein // skrdz2:"", // 收款人地址2 .trnmod.cipmod.skrdz2
purposame:"", // Purpose of amend. .trnmod.swiadd.purposame // skrdz3:"", // 收款人地址3 .trnmod.cipmod.skrdz3
amedat:"", // Amendment Date .trnmod.swiadd.amedat // skrdz4:"", // 收款人地址4 .trnmod.cipmod.skrdz4
orddat:"", // Order from .trnmod.swiadd.orddat // skrdz5:"", // 收款人地址5 .trnmod.cipmod.skrdz5
amenbr:"", // Amend. No Receiv. .trnmod.swiadd.amenbr // fkrdz2:"", // 付款人地址2 .trnmod.cipmod.fkrdz2
amecur:"", // Amended .trnmod.swiadd.amecur // fkrdz3:"", // 付款人地址3 .trnmod.cipmod.fkrdz3
ameamt:"", // Amended Amount .trnmod.swiadd.ameamt // fkrdz4:"", // 付款人地址4 .trnmod.cipmod.fkrdz4
newcur:"", // Guarantee Amount .trnmod.swiadd.newcur // fkrdz5:"", // 付款人地址5 .trnmod.cipmod.fkrdz5
newamt:"", // New amount .trnmod.swiadd.newamt // pyebchkey:"", // 收款行开户行行号 .trnmod.cipmod.pyebchkey
ameblk:"", // Text for Amendments .trnmod.swiadd.ameblk // pyebchnam:"", // 收款行开户行名称 .trnmod.cipmod.pyebchnam
reqcan:"", // Cancellation Request .trnmod.swiadd.reqcan // stasehbch:"", // 付款间接参与者行号 .trnmod.cipmod.stasehbch
amemsgdonflg:"", // Create Amendment Message .trnmod.swiadd.amemsgdonflg // stasehbchnam:"", // 付款间接参与者名称 .trnmod.cipmod.stasehbchnam
addamtflg:"", // Add. Amount Flag .trnmod.swiadd.addamtflg // fkrdz6:"", // 付款人地址6 .trnmod.cipmod.fkrdz6
addcur:"", // Additional Currency .trnmod.swiadd.addcur // fkrdz7:"", // 付款人地址7 .trnmod.cipmod.fkrdz7
addamt:"", // Additional Amount .trnmod.swiadd.addamt // skrdz6:"", // 收款人地址6 .trnmod.cipmod.skrdz6
addamtcovs20:"", // Additional Amount Covered .trnmod.swiadd.addamtcovs20 // skrdz7:"", // 收款人地址7 .trnmod.cipmod.skrdz7
redrea:"", // Reason for Reduce / Discharge .trnmod.swiadd.redrea // covflg:"", // 112COV .trnmod.cipmod.covflg
exptyp:"", // New Expiry Type .trnmod.swiadd.exptyp // fufeih:"", // 付费行号1 .trnmod.cipmod.fufeih
newexpdat:"", // New Expiry Date .trnmod.swiadd.newexpdat // ffeih2:"", // 付费行号2 .trnmod.cipmod.ffeih2
exptxt:"", // New Expiry Condition .trnmod.swiadd.exptxt // fkrkhh:"", // 付款行开户行行号 .trnmod.cipmod.fkrkhh
liatypc:"", // New Liability Type .trnmod.swiadd.liatypc // fukrhm:"", // 付款行开户行名称 .trnmod.cipmod.fukrhm
newliadat:"", // New Liability Date .trnmod.swiadd.newliadat // feecod:"", // 费用承担方 .trnmod.cipmod.feecod
liatxtc:"", // New Liability Condition .trnmod.swiadd.liatxtc // feiyon:"", // 费用1 .trnmod.cipmod.feiyon
newdtaappexpdat:"", // New appr. Expiry Date .trnmod.swiadd.newdtaappexpdat // feiyn2:"", // 费用2 .trnmod.cipmod.feiyn2
ameblkc:"", // Text for Amendments .trnmod.swiadd.ameblkc // fuyns1:"", // 致收款人银行附言1 .trnmod.cipmod.fuyns1
amecurc:"", // Amended Amount .trnmod.swiadd.amecurc // fuyns2:"", // 致收款人银行附言2 .trnmod.cipmod.fuyns2
ameamtc:"", // Increase of Local Guarantee Amount .trnmod.swiadd.ameamtc // fuyns3:"", // 致收款人银行附言3 .trnmod.cipmod.fuyns3
newcurc:"", // Local Undertaking .trnmod.swiadd.newcurc // fuyns4:"", // 致收款人银行附言4 .trnmod.cipmod.fuyns4
newamtc:"", // New Amount Local Guarantee .trnmod.swiadd.newamtc // fyo1bz:"", // 费用1币种 .trnmod.cipmod.fyo1bz
addamtflgc:"", // Additional Amount Flag Seq. C .trnmod.swiadd.addamtflgc // fyo2bz:"", // 费用2币种 .trnmod.cipmod.fyo2bz
addcurc:"", // Additional Currency Seq. C .trnmod.swiadd.addcurc // fkhkhh:"", // 付款行行号 .trnmod.cipmod.fkhkhh
addamtc:"", // Additional Amount Seq. C .trnmod.swiadd.addamtc // fkkhmc:"", // 付款行行名 .trnmod.cipmod.fkkhmc
addamtcovc:"", // Add. Amount Covered .trnmod.swiadd.addamtcovc // fkkhzh:"", // 付款行账号 .trnmod.cipmod.fkkhzh
newexpflg:"", // Unlimited Validity .trnmod.swiadd.newexpflg // fkhdzh:"", // 付款行地址 .trnmod.cipmod.fkhdzh
newliaflg:"", // Unlimited Liability .trnmod.swiadd.newliaflg // skkhhh:"", // 收款行行号 .trnmod.cipmod.skkhhh
addamtcov:"", // Amounts Covered .trnmod.swiadd.addamtcov // skkhhm:"", // 收款行行名 .trnmod.cipmod.skkhhm
}, // skkhzh:"", // 收款行账号 .trnmod.cipmod.skkhzh
trndoc: { // skkhdz:"", // 收款行地址 .trnmod.cipmod.skkhdz
nar754: "", // Narrative :77A: .trnmod.trndoc.nar754 // ddbhao:"", // 订单编号 .trnmod.cipmod.ddbhao
advlabel: "", // ADVLABEL .trnmod.trndoc.advlabel // ddmisu:"", // 订单描述 .trnmod.cipmod.ddmisu
amdnam: "", // AMDNAM .trnmod.trndoc.amdnam // },
advdoc: "", // 国内证通知书 .trnmod.trndoc.advdoc // },
advnam: "", // 国内证落款 .trnmod.trndoc.advnam
amdapl: "", // 修改申请人名称 .trnmod.trndoc.amdapl
doclbl: "", // Lable for CONDOCSTM .trnmod.trndoc.doclbl
doctrestm: "", // Document tree .trnmod.trndoc.doctrestm
shwinc: "", // Show Incoming Messages .trnmod.trndoc.shwinc
shwout: "", // Show Outgoing Messages .trnmod.trndoc.shwout
condocstm: "", // Connected Documents .trnmod.trndoc.condocstm
rcvatt: {
seainf: "", // .trnmod.trndoc.rcvatt.seainf
},
filrecv: "", // File Receiver .trnmod.trndoc.filrecv
doceot: [],
addstr750:""//trnmod.trndoc.addstr750
},
docimm:{
ascin:"", // Message as stream .trnmod.docimm.ascin
prtswtrpblk:"", // XMLPanel prtswtrp的内置block .trnmod.docimm.prtswtrpblk
xmldocblk:"", // XMLPanel xmldoc的内置block .trnmod.docimm.xmldocblk
prtswtpblk:"", // XMLPanel prtswtp的内置block .trnmod.docimm.prtswtpblk
},
cmttag:"", // 跨境人民币清算模式 .trnmod.cmttag
swfflg:"", // 报文类型 .trnmod.swfflg
cmtflg:"", // CMT100 报文 .trnmod.cmtflg
swftyp:"", // 报文类型 .trnmod.swftyp
reconebch:"", // 收款直接参与者行号 .trnmod.reconebch
reconebchnam:"", // 收款直接参与者名称 .trnmod.reconebchnam
commen:"", // 附言 .trnmod.commen
bustyp:"", // 业务种类 .trnmod.bustyp
cipmod:{
dddbsh:"", // 端到端标识号 .trnmod.cipmod.dddbsh
zjg1hh:"", // 中介机构1行号 .trnmod.cipmod.zjg1hh
zjg1mc:"", // 中介机构1名称 .trnmod.cipmod.zjg1mc
zjg2hh:"", // 中介机构2行号 .trnmod.cipmod.zjg2hh
zjg2mc:"", // 中介机构2名称 .trnmod.cipmod.zjg2mc
dafnzh:"", // 借记记账账号 .trnmod.cipmod.dafnzh
dafnmc:"", // 借记记账名称 .trnmod.cipmod.dafnmc
recsehbch:"", // 收款间接参与者行号 .trnmod.cipmod.recsehbch
staonebch:"", // 付款直接参与者行号 .trnmod.cipmod.staonebch
recsehbchnam:"", // 收款间接参与者名称 .trnmod.cipmod.recsehbchnam
staonebchnam:"", // 付款直接参与者名称 .trnmod.cipmod.staonebchnam
fuynh2:"", // 附言2 .trnmod.cipmod.fuynh2
fuynh3:"", // 附言3 .trnmod.cipmod.fuynh3
fuynh4:"", // 附言4 .trnmod.cipmod.fuynh4
skrdz2:"", // 收款人地址2 .trnmod.cipmod.skrdz2
skrdz3:"", // 收款人地址3 .trnmod.cipmod.skrdz3
skrdz4:"", // 收款人地址4 .trnmod.cipmod.skrdz4
skrdz5:"", // 收款人地址5 .trnmod.cipmod.skrdz5
fkrdz2:"", // 付款人地址2 .trnmod.cipmod.fkrdz2
fkrdz3:"", // 付款人地址3 .trnmod.cipmod.fkrdz3
fkrdz4:"", // 付款人地址4 .trnmod.cipmod.fkrdz4
fkrdz5:"", // 付款人地址5 .trnmod.cipmod.fkrdz5
pyebchkey:"", // 收款行开户行行号 .trnmod.cipmod.pyebchkey
pyebchnam:"", // 收款行开户行名称 .trnmod.cipmod.pyebchnam
stasehbch:"", // 付款间接参与者行号 .trnmod.cipmod.stasehbch
stasehbchnam:"", // 付款间接参与者名称 .trnmod.cipmod.stasehbchnam
fkrdz6:"", // 付款人地址6 .trnmod.cipmod.fkrdz6
fkrdz7:"", // 付款人地址7 .trnmod.cipmod.fkrdz7
skrdz6:"", // 收款人地址6 .trnmod.cipmod.skrdz6
skrdz7:"", // 收款人地址7 .trnmod.cipmod.skrdz7
covflg:"", // 112COV .trnmod.cipmod.covflg
fufeih:"", // 付费行号1 .trnmod.cipmod.fufeih
ffeih2:"", // 付费行号2 .trnmod.cipmod.ffeih2
fkrkhh:"", // 付款行开户行行号 .trnmod.cipmod.fkrkhh
fukrhm:"", // 付款行开户行名称 .trnmod.cipmod.fukrhm
feecod:"", // 费用承担方 .trnmod.cipmod.feecod
feiyon:"", // 费用1 .trnmod.cipmod.feiyon
feiyn2:"", // 费用2 .trnmod.cipmod.feiyn2
fuyns1:"", // 致收款人银行附言1 .trnmod.cipmod.fuyns1
fuyns2:"", // 致收款人银行附言2 .trnmod.cipmod.fuyns2
fuyns3:"", // 致收款人银行附言3 .trnmod.cipmod.fuyns3
fuyns4:"", // 致收款人银行附言4 .trnmod.cipmod.fuyns4
fyo1bz:"", // 费用1币种 .trnmod.cipmod.fyo1bz
fyo2bz:"", // 费用2币种 .trnmod.cipmod.fyo2bz
fkhkhh:"", // 付款行行号 .trnmod.cipmod.fkhkhh
fkkhmc:"", // 付款行行名 .trnmod.cipmod.fkkhmc
fkkhzh:"", // 付款行账号 .trnmod.cipmod.fkkhzh
fkhdzh:"", // 付款行地址 .trnmod.cipmod.fkhdzh
skkhhh:"", // 收款行行号 .trnmod.cipmod.skkhhh
skkhhm:"", // 收款行行名 .trnmod.cipmod.skkhhm
skkhzh:"", // 收款行账号 .trnmod.cipmod.skkhzh
skkhdz:"", // 收款行地址 .trnmod.cipmod.skkhdz
ddbhao:"", // 订单编号 .trnmod.cipmod.ddbhao
ddmisu:"", // 订单描述 .trnmod.cipmod.ddmisu
},
},
bopmod:{ bopmod:{
szflg:"", // 申报类型 .bopmod.szflg szflg:"", // 申报类型 .bopmod.szflg
basflg:"", // 基础数据 .bopmod.basflg basflg:"", // 基础数据 .bopmod.basflg
...@@ -387,7 +305,7 @@ export default class Gitset{ ...@@ -387,7 +305,7 @@ export default class Gitset{
vrfflg:"", // 核销数据 .bopmod.vrfflg vrfflg:"", // 核销数据 .bopmod.vrfflg
ownextkey:"", // 地区机构号 .bopmod.ownextkey ownextkey:"", // 地区机构号 .bopmod.ownextkey
acttyp:"", // 款项去向 .bopmod.acttyp acttyp:"", // 款项去向 .bopmod.acttyp
dbcp:{ dbfp:{
baspp:{ baspp:{
cusnam:"", // .bopmod.dbfp.baspp.cusnam cusnam:"", // .bopmod.dbfp.baspp.cusnam
cornam:"", // .bopmod.dbfp.baspp.cornam cornam:"", // .bopmod.dbfp.baspp.cornam
...@@ -399,7 +317,7 @@ export default class Gitset{ ...@@ -399,7 +317,7 @@ export default class Gitset{
tmprefnew:"", // TMPREFLABEL .bopmod.dbfp.baspp.tmprefnew tmprefnew:"", // TMPREFLABEL .bopmod.dbfp.baspp.tmprefnew
}, },
}, },
dbcgrp:{ dbfgrp:{
bas:{ bas:{
tmpref:"", // �'时申报流�'号 .bopmod.dbfgrp.bas.tmpref tmpref:"", // �'时申报流�'号 .bopmod.dbfgrp.bas.tmpref
ownextkey:"", // 地区机构号 .bopmod.dbfgrp.bas.ownextkey ownextkey:"", // 地区机构号 .bopmod.dbfgrp.bas.ownextkey
...@@ -431,6 +349,50 @@ export default class Gitset{ ...@@ -431,6 +349,50 @@ export default class Gitset{
lcbgno:"", // 信用证/保函编号 .bopmod.dbfgrp.bas.lcbgno lcbgno:"", // 信用证/保函编号 .bopmod.dbfgrp.bas.lcbgno
}, },
}, },
dbcp:{
baspp:{
cusnam:"", // .bopmod.dbcp.baspp.cusnam
cornam:"", // .bopmod.dbcp.baspp.cornam
corpnam:"", // .bopmod.dbcp.baspp.corpnam
roptnam:"", // RoptNam .bopmod.dbcp.baspp.roptnam
exratelab:"", // �'�汇/结汇汇率 .bopmod.dbcp.baspp.exratelab
lcyamtlab:"", // �'�汇/结汇金额 .bopmod.dbcp.baspp.lcyamtlab
acp:"", // 确认 .bopmod.dbcp.baspp.acp
tmprefnew:"", // TMPREFLABEL .bopmod.dbcp.baspp.tmprefnew
},
},
dbcgrp:{
bas:{
tmpref:"", // �'时申报流�'号 .bopmod.dbcgrp.bas.tmpref
ownextkey:"", // 地区机构号 .bopmod.dbcgrp.bas.ownextkey
actiontype:"", // 操作类型 .bopmod.dbcgrp.bas.actiontype
rptno:"", // 申报号码 .bopmod.dbcgrp.bas.rptno
idcode:"", // 身份证件号码 .bopmod.dbcgrp.bas.idcode
lcyacc:"", // 人民币帐号/银行卡号 .bopmod.dbcgrp.bas.lcyacc
fcyamt:"", // 现汇金额 .bopmod.dbcgrp.bas.fcyamt
fcyacc:"", // 外汇帐号/银行卡号 .bopmod.dbcgrp.bas.fcyacc
othamt:"", // 其它金额 .bopmod.dbcgrp.bas.othamt
othacc:"", // 其它帐号/银行卡号 .bopmod.dbcgrp.bas.othacc
methods:"", // 结算方式 .bopmod.dbcgrp.bas.methods
buscode:"", // 银行业务编号 .bopmod.dbcgrp.bas.buscode
custype:"", // 类型 .bopmod.dbcgrp.bas.custype
actiondesc:"", // 操作类型 .bopmod.dbcgrp.bas.actiondesc
exrate:"", // �'�汇汇率 .bopmod.dbcgrp.bas.exrate
lcyamt:"", // �'�汇金额 .bopmod.dbcgrp.bas.lcyamt
custnm:"", // 付款人名称 .bopmod.dbcgrp.bas.custnm
oppuser:"", // 收款人名称 .bopmod.dbcgrp.bas.oppuser
custcod:"", // 组织机构 .bopmod.dbcgrp.bas.custcod
actuccy:"", // 实际付款币种及金额 .bopmod.dbcgrp.bas.actuccy
actuamt:"", // 实际付款币种及金额 .bopmod.dbcgrp.bas.actuamt
lcbgno:"", // 信用证/保函编号 .bopmod.dbcgrp.bas.lcbgno
issdate:"", // 开证日期 .bopmod.dbcgrp.bas.issdate
tenor:"", // 期限 .bopmod.dbcgrp.bas.tenor
txccy:"", // 付款币种及金额 .bopmod.dbcgrp.bas.txccy
txamt:"", // 付款币种及金额 .bopmod.dbcgrp.bas.txamt
outchargeccy:"", // 扣费币种及金额 .bopmod.dbcgrp.bas.outchargeccy
outchargeamt:"", // 扣费币种及金额 .bopmod.dbcgrp.bas.outchargeamt
},
},
}, },
cnybop:{ cnybop:{
cnyflg:"", // 是否报送跨境人民币2101表 .cnybop.cnyflg cnyflg:"", // 是否报送跨境人民币2101表 .cnybop.cnyflg
......
...@@ -357,6 +357,16 @@ export default { ...@@ -357,6 +357,16 @@ export default {
} }
}, },
watch:{
"model.bopmod.dbcp.baspp.acp" :{
immediate: true,
handler(val,oldval){
if(this.model.bopmod.dbcp.baspp.acp==""){
this.model.bopmod.dbcp.baspp.acp="X"
}
}
},
},
methods:{...Event}, methods:{...Event},
created:function(){ created:function(){
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
<c-col :span="24"> <c-col :span="24">
<el-form-item label="操作类型" prop="bopmod.dbfgrp.bas.actiontype"> <el-form-item label="操作类型" prop="bopmod.dbfgrp.bas.actiontype">
<c-select disabled v-model="model.bopmod.dbfgrp.bas.actiontype" style="width:100%" > <c-select disabled v-model="model.bopmod.dbfgrp.bas.actiontype" :code="codes.actiontype" style="width:100%" >
</c-select> </c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
</c-col> </c-col>
<c-col :span="24"> <c-col :span="24">
<el-form-item label="付款人类型" prop="bopmod.dbfgrp.bas.custype"> <el-form-item label="付款人类型" prop="bopmod.dbfgrp.bas.custype">
<c-select disabled v-model="model.bopmod.dbfgrp.bas.custype" style="width:100%" > <c-select disabled v-model="model.bopmod.dbfgrp.bas.custype" :code="codes.custype" style="width:100%" >
</c-select> </c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -65,7 +65,7 @@ ...@@ -65,7 +65,7 @@
</c-col> </c-col>
<c-col :span="12"> <c-col :span="12">
<el-form-item label="付款币种及金额" prop="bopmod.dbfgrp.bas.txccy"> <el-form-item label="付款币种及金额" prop="bopmod.dbfgrp.bas.txccy">
<c-select v-model="model.bopmod.dbfgrp.bas.txccy" style="width:100%" > <c-select v-model="model.bopmod.dbfgrp.bas.txccy" :code="codes.curtxt1" style="width:100%" >
</c-select> </c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -104,7 +104,7 @@ ...@@ -104,7 +104,7 @@
<c-col :span="24"> <c-col :span="24">
<el-form-item label="结算方式" prop="bopmod.dbfgrp.bas.methods"> <el-form-item label="结算方式" prop="bopmod.dbfgrp.bas.methods">
<c-select disabled v-model="model.bopmod.dbfgrp.bas.methods" style="width:100%" > <c-select disabled v-model="model.bopmod.dbfgrp.bas.methods" :code="codes.methods" style="width:100%" >
</c-select> </c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -259,6 +259,16 @@ export default { ...@@ -259,6 +259,16 @@ export default {
} }
}, },
watch:{
"model.bopmod.dbfp.baspp.acp" :{
immediate: true,
handler(val,oldval){
if(this.model.bopmod.dbfp.baspp.acp==""){
this.model.bopmod.dbfp.baspp.acp="X"
}
}
},
},
methods:{...Event}, methods:{...Event},
created:function(){ created:function(){
......
<template>
<div class="eibs-tab">
<!--
<c-col :span="12">
<el-form-item label="ECIFNO">
<c-input v-model="model.liaall.limmod.ecifno" maxlength="22" placeholder="请输入ECIFNO"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<span v-text="model.liaall.limmod.limpts.wrklab" data-path=".liaall.limmod.limpts.wrklab" > </span>
</c-col>
<c-col :span="12">
<span v-text="model.liaall.limmod.limpts.othlab" data-path=".liaall.limmod.limpts.othlab" > </span>
</c-col>
<c-col :span="12">
<span v-text="model.liaall.limmod.limpts.othlabss" data-path=".liaall.limmod.limpts.othlabss" > </span>
</c-col>
<c-col :span="12">
<el-form-item label="Drag Drop Sender">
<c-input v-model="model.liaall.limmod.wrkp.ptsget.sdamod.dadsnd" placeholder="请输入Drag Drop Sender"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="Drag Drop Sender">
<c-input v-model="model.liaall.limmod.othp.ptsget.sdamod.dadsnd" placeholder="请输入Drag Drop Sender"></c-input>
</el-form-item>
</c-col>
-->
<!-- 左边-->
<c-col :span="8">
<!-- line2 -->
<c-row>
<c-col :span="24">
<el-form-item
label="额度主体"
prop="liaall.limmod.limpts.wrk.pts.extkey"
style="width: 100%"
>
<c-fullbox>
<c-input
v-model="model.liaall.limmod.limpts.wrk.pts.extkey"
maxlength="16"
disabled
placeholder="请输入External Key of Address"
style="width: 100%"
></c-input>
<template slot="footer">
<c-button
style="margin: 0 5px 0 10px; padding: 0 12px"
size="small"
type="primary"
icon="el-icon-search"
@click="onSeainf"
/>
<c-button
style="margin: 0 0"
size="small"
type="primary"
disabled
@click="onWrkpDet"
>
详情
</c-button>
</template>
</c-fullbox>
</el-form-item>
</c-col>
</c-row>
<!-- line3 -->
<c-row>
<c-col :span="24">
<el-form-item
label="主体名称"
prop="liaall.limmod.limpts.wrk.pts.nam"
>
<c-input
v-model="model.liaall.limmod.limpts.wrk.pts.nam"
maxlength="16"
placeholder=""
:disabled="true"
style="width: 100%"
></c-input>
</el-form-item>
</c-col>
</c-row>
<!-- line4 -->
<c-row>
<c-col :span="24" style="text-align: right">
<el-form-item label="额度类型" prop="liaall.limmod.limpts.nonrevflg1">
<c-fullbox>
<c-select
v-model="model.liaall.limmod.limpts.nonrevflg1"
style="width: 100%"
placeholder="请选择Flag to Mark Non-revolving Limits"
disabled
@change="nonrevflg1Change"
>
<el-option
v-for="item in codes.nonrevflg1"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</c-select>
<template slot="footer">
<c-button
style="padding: 0 12px"
size="small"
type="primary"
icon="el-icon-search"
@click="onLimptsGet1"
>
</c-button>
</template>
</c-fullbox>
</el-form-item>
</c-col>
</c-row>
<!-- line5 -->
<c-row>
<c-col :span="24">
<el-form-item label="合同流水号" prop="liaall.limmod.limpts.pfcod1">
<c-input
v-model="model.liaall.limmod.limpts.pfcod1"
maxlength="14"
placeholder="请输入合同流水号"
:disabled="this.model.liaall.limmod.limpts.nonrevflg1 != '2'"
style="width: 100%"
></c-input>
</el-form-item>
</c-col>
</c-row>
</c-col>
<!-- 中间 -->
<!-- 随event方法改变 -->
<c-col :span="8" v-show="same" @change="show">
<!-- line2 -->
<c-row>
<c-col :span="24">
<el-form-item
label="对公账户"
prop="liaall.limmod.limpts.oth.pts.extkey"
style="width: 100%"
>
<c-fullbox>
<c-input
v-model="model.liaall.limmod.limpts.oth.pts.extkey"
maxlength="16"
placeholder="请输入External Key of Address"
style="width: 100%"
></c-input>
<template slot="footer">
<c-button
style="margin: 0 5px 0 10px; padding: 0 12px"
size="small"
type="primary"
icon="el-icon-search"
@click="onSeainf"
/>
<c-button
style="margin: 0 0"
size="small"
type="primary"
disabled
@click="onOthpDet"
>
详情
</c-button>
</template>
</c-fullbox>
</el-form-item>
</c-col>
</c-row>
<!-- line3 -->
<c-row>
<c-col :span="24">
<el-form-item
label="主体名称"
prop="liaall.limmod.limpts.oth.pts.nam"
>
<c-input
v-model="model.liaall.limmod.limpts.oth.pts.nam"
maxlength="16"
placeholder=""
:disabled="true"
style="width: 100%"
></c-input>
</el-form-item>
</c-col>
</c-row>
<!-- line4 -->
<c-row>
<c-col :span="24" style="text-align: right">
<el-form-item label="额度类型" prop="liaall.limmod.limpts.nonrevflg2">
<c-fullbox>
<c-select
v-model="model.liaall.limmod.limpts.nonrevflg2"
style="width: 100%"
placeholder="请选择Flag to Mark Non-revolving Limits"
disabled
@change="nonrevflg2Change"
>
<el-option
v-for="item in codes.nonrevflg2"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</c-select>
<template slot="footer">
<c-button
style="padding: 0 12px"
size="small"
type="primary"
icon="el-icon-search"
@click="onLimptsGet2"
>
</c-button>
</template>
</c-fullbox>
</el-form-item>
</c-col>
</c-row>
<!-- line5 -->
<c-row>
<c-col :span="24">
<el-form-item label="合同流水号" prop="liaall.limmod.limpts.pfcod2">
<c-input
v-model="model.liaall.limmod.limpts.pfcod2"
maxlength="14"
placeholder="请输入合同流水号"
:disabled="this.model.liaall.limmod.limpts.nonrevflg2 != '2'"
style="width: 100%"
></c-input>
</el-form-item>
</c-col>
</c-row>
</c-col>
<!-- 右边-->
<c-col :span="8">
<!-- line1 -->
<c-row>
<c-col :span="24">
<el-form-item label="业务编号" prop="liaall.limmod.ownref">
<c-input
v-model="model.liaall.limmod.ownref"
maxlength="16"
placeholder="请输入国结业务编号"
:disabled="true"
style="width: 100%"
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="业务余额" prop="liaall.limmod.comamt">
<c-input
v-model="model.liaall.limmod.comamt"
placeholder="请输入业务余额"
:disabled="true"
style="width: 100%"
></c-input>
</el-form-item>
</c-col>
</c-row>
<!-- line1 -->
<c-row>
<c-col :span="24">
<el-form-item label="保证金余额" prop="liaall.limmod.ccvamt">
<c-input
v-model="model.liaall.limmod.ccvamt"
placeholder="请输入保证金余额"
:disabled="true"
></c-input>
</el-form-item>
</c-col>
<c-col :span="24" style="text-align: right" v-if="false">
<c-button size="small" type="primary" @click="onLimmodTrycal">
试算
</c-button>
</c-col>
</c-row>
</c-col>
<!-- ====================左边=======================
<c-col :span="24">
<el-form-item label="业务编号" prop="liaall.limmod.ownref">
<c-input v-model="model.liaall.limmod.ownref" maxlength="16" placeholder="请输入国结业务编号" :disabled="true" style="width: 100%"></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="业务余额" prop="liaall.limmod.comamt">
<c-input v-model="model.liaall.limmod.comamt" placeholder="请输入业务余额" :disabled="true" style="width: 100%"></c-input>
</el-form-item>
</c-col>
-->
<!-- ====================左边=======================
<c-col :span="11">
<c-col :span="24">
<el-form-item label="国内信用证项下开证授信额度:" prop="liaall.limmod.limpts.wrk.pts.extkey" style="width:100%">
<c-fullbox>
<c-input v-model="model.liaall.limmod.limpts.wrk.pts.extkey" disabled maxlength="16" placeholder="请输入External Key of Address" style="width: 100%"></c-input>
<template slot="footer">
<c-button style="margin:0 5px 0 10px;padding: 0 12px;" size="small" type="primary" icon="el-icon-search" @click="onSeainf" />
<c-button style="margin:0 0" size="small" type="primary" @click="onPreperButtxmsel">
详情
</c-button>
</template>
</c-fullbox>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="" prop="liaall.limmod.limpts.wrk.pts.nam">
<c-input v-model="model.liaall.limmod.limpts.wrk.pts.nam" maxlength="16" placeholder="" :disabled="true" style="width:100%"></c-input>
</el-form-item>
</c-col>
<c-col :span="24" style="text-align:right">
<el-form-item label="额度类型" prop="liaall.limmod.limpts.nonrevflg1">
<c-fullbox>
<c-select v-model="model.liaall.limmod.limpts.nonrevflg1" style="width: 100%" placeholder="请选择Flag to Mark Non-revolving Limits" @change="nonrevflg1Change">
<el-option v-for="item in codes.nonrevflg1" :key="item.value" :label="item.label" :value="item.value">
</el-option>
</c-select>
<template slot="footer">
<c-button style="padding: 0 12px;" size="small" type="primary" icon="el-icon-search" @click="onLimptsGet1">
</c-button>
</template>
</c-fullbox>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="合同流水号" prop="liaall.limmod.limpts.pfcod1">
<c-input v-model="model.liaall.limmod.limpts.pfcod1" maxlength="14" placeholder="请输入合同流水号" :disabled="this.model.liaall.limmod.limpts.nonrevflg1 != '2'" style="width: 100%"></c-input>
</el-form-item>
</c-col>
</c-col>
-->
<!-- ========================右边=======================
<c-col :span="11" :offset="1">
<c-col :span="24">
<el-form-item label="业务编号" prop="liaall.limmod.ownref">
<c-input v-model="model.liaall.limmod.ownref" maxlength="16" placeholder="请输入国结业务编号" :disabled="true" style="width: 100%"></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="业务余额" prop="liaall.limmod.comamt">
<c-input v-model="model.liaall.limmod.comamt" placeholder="请输入业务余额" :disabled="true" style="width: 100%"></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="保证金余额" prop="liaall.limmod.ccvamt">
<c-input v-model="model.liaall.limmod.ccvamt" placeholder="请输入保证金余额" :disabled="true" style="width: 100%"></c-input>
</el-form-item>
</c-col>
</c-col>
-->
<!-- <c-col :span="12">-->
<!-- <el-form-item label="开证授信额度主体名称" prop="liaall.limmod.limpts.wrk.pts.nam">-->
<!-- <c-input v-model="model.liaall.limmod.limpts.wrk.pts.nam" maxlength="40" placeholder="请输入Name of Party"></c-input>-->
<!-- </el-form-item>-->
<!-- </c-col>-->
<!--
<c-col :span="12">
<c-button size="small" type="primary" @click="onWrkpDet">
Details
</c-button>
</c-col>
<c-col :span="12">
<el-form-item label="External Key of Address">
<c-input v-model="model.liaall.limmod.limpts.oth.pts.extkey" maxlength="16" placeholder="请输入External Key of Address"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="">
<c-input v-model="model.liaall.limmod.othp.ptsget.sdamod.seainf" placeholder="请输入"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onOthpDet">
Details
</c-button>
</c-col>
<c-col :span="12">
<el-form-item label="Name of Party">
<c-input v-model="model.liaall.limmod.limpts.oth.pts.nam" maxlength="40" placeholder="请输入Name of Party"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="Flag to Mark Non-revolving Limits">
<c-select v-model="model.liaall.limmod.limpts.nonrevflg2" style="width:100%" placeholder="请选择Flag to Mark Non-revolving Limits">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="合同流�'号">
<c-input v-model="model.liaall.limmod.limpts.pfcod2" maxlength="14" placeholder="请输入合同流�'号"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onLimptsGet2">
查询
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onLimmodTrycal">
试算
</c-button>
</c-col>
-->
<br /><br /><br /><br /><br />
<c-col :span="24" style="">
<c-table :list="model.liaall.limmod.limgrd" :border="true">
<el-table-column prop="flg" label="可否串用" width="70px">
</el-table-column>
<el-table-column prop="shxh" label="序号" width="50px">
</el-table-column>
<el-table-column prop="limtyp" label="额度类型" width="70px">
</el-table-column>
<el-table-column prop="ruzhjg" label="入账机构" width="70px">
</el-table-column>
<el-table-column prop="limref" label="额度编号" width="70px">
</el-table-column>
<el-table-column prop="infref" label="额度明细编号" width="100px">
</el-table-column>
<el-table-column prop="limcodsave" label="额度品种代码" width="100px">
</el-table-column>
<el-table-column prop="limcod" label="品种代码描述" width="100px">
</el-table-column>
<el-table-column prop="cur" label="额度明细币种" width="100px">
</el-table-column>
<el-table-column prop="ccvpct" label="保证金比例" width="100px">
</el-table-column>
<el-table-column prop="cpsxed" label="产品授信额度" width="100px">
</el-table-column>
<el-table-column prop="balamt" label="产品可用额度" width="100px">
</el-table-column>
<el-table-column prop="useamt" label="产品已用额度" width="100px">
</el-table-column>
<el-table-column prop="cpsxck" label="产品授信敞口" width="100px">
</el-table-column>
<el-table-column prop="cpkyck" label="产品可用敞口" width="100px">
</el-table-column>
<el-table-column prop="cpyyck" label="产品已用敞口" width="100px">
</el-table-column>
<el-table-column prop="bxh" label="是否可循环" width="90px">
</el-table-column>
<el-table-column prop="bcy" label="是否可串用" width="90px">
</el-table-column>
<el-table-column prop="cyremark" label="串用说明" width="100px">
</el-table-column>
<el-table-column prop="credat" label="产品额度生效日期" width="120px">
</el-table-column>
<el-table-column prop="matdat" label="产品额度到期日" width="120px">
</el-table-column>
<el-table-column prop="lcpsta" label="额度产品状态" width="100px">
</el-table-column>
<el-table-column prop="fentyp" label="暴露分类" width="100px">
</el-table-column>
<el-table-column prop="fentxt" label="暴露分类说明" width="100px">
</el-table-column>
<el-table-column prop="limcur" label="额度币种" width="90px">
</el-table-column>
<el-table-column prop="bfx" label="是否低风险" width="90px">
</el-table-column>
</c-table>
</c-col>
<!-- <c-col :span="24" style="" v-if="false">
<c-table :list="model.liaall.limmod.lmegrd" :border="true">
<el-table-column label="可否串用" width="auto">
</el-table-column>
<el-table-column label="序号" width="auto"> </el-table-column>
<el-table-column label="额度类型" width="auto">
</el-table-column>
<el-table-column label="入账机构" width="auto">
</el-table-column>
<el-table-column label="额度编号" width="auto">
</el-table-column>
<el-table-column label="额度明细编号" width="auto">
</el-table-column>
<el-table-column label="额度品种代码" width="auto">
</el-table-column>
<el-table-column label="品种代码描述" width="auto">
</el-table-column>
<el-table-column label="" width="auto"> </el-table-column>
</c-table>
</c-col> -->
</div>
</template>
<script>
import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Bctset/Event"
export default {
inject: ["root"],
props: ["model", "codes"],
mixins: [commonProcess],
data() {
return {
tableData: {},
same:false
};
},
methods: {
onSeainf() {},
async onPreperButtxmsel() {
let rtnmsg = await this.executeRule("preper_buttxmsel");
if (rtnmsg.respCode == SUCCESS) {
//TODO 处理数据逻辑
} else {
this.$notify.error({
title: "错误",
message: "服务请求失败!",
});
}
},
async onLimptsGet1() {
let rtnmsg = await this.executeRule("limpts_get1");
if (rtnmsg.respCode == SUCCESS) {
//TODO 处理数据逻辑
} else {
this.$notify.error({
title: "错误",
message: "服务请求失败!",
});
}
},
async onLimptsGet2() {
let rtnmsg = await this.executeRule("limpts_get2");
if (rtnmsg.respCode == SUCCESS) {
//TODO 处理数据逻辑
} else {
this.$notify.error({
title: "错误",
message: "服务请求失败!",
});
}
},
nonrevflg1Change() {
if (this.model.liaall.limmod.limpts.nonrevflg1 == "1") {
this.model.liaall.limmod.limpts.pfcod1 = "";
}
},
nonrevflg2Change() {
if (this.model.liaall.limmod.limpts.nonrevflg2 == "1") {
this.model.liaall.limmod.limpts.pfcod2 = "";
}
},
async onWrkpDet() {
let rtnmsg = await this.executeRule("liaall.limmod.wrkp.det");
if (rtnmsg.respCode == SUCCESS) {
//TODO 处理数据逻辑
console.log(rtnmsg.data);
} else {
this.$notify.error({
title: "错误",
message: "服务请求失败!",
});
}
},
async onOthpDet() {
let rtnmsg = await this.executeRule("liaall.limmod.othp.det");
if (rtnmsg.respCode == SUCCESS) {
//TODO 处理数据逻辑
console.log(rtnmsg.data);
} else {
this.$notify.error({
title: "错误",
message: "服务请求失败!",
});
}
},
async onLimmodTrycal() {
let rtnmsg = await this.executeRule("liaall.limmod.trycal");
if (rtnmsg.respCode == SUCCESS) {
//TODO 处理数据逻辑
} else {
this.$notify.error({ title: "错误", message: "服务请求失败!" });
}
},
show(){
let len1 = this.model.liaall.limmod.tygrd["rows"].length||[];
let len2 = this.model.liaall.limmod.dggrd["rows"].length||[];
if(len1>0&&len2>0){
this.same = true;
}
}
},
created: function () {},
};
</script>
<style>
</style>
...@@ -132,7 +132,7 @@ import Setpan from "~/views/Public/Setpan"; ...@@ -132,7 +132,7 @@ 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";
import Doctre from "~/views/Public/Doctre"; import Doctre from "~/views/Public/Doctre";
import Limitbody from "~/views/Public/Limitbody"; import Limitbody from "./Limitbody";
import Glepan from "~/views/Public/Glepan"; import Glepan from "~/views/Public/Glepan";
export default { export default {
......
...@@ -67,7 +67,7 @@ ...@@ -67,7 +67,7 @@
</c-col> </c-col>
<c-col :span="13"> <c-col :span="13">
<el-form-item label-width="0" prop="bddgrp.cbs.max.amt"> <el-form-item label-width="0" prop="bddgrp.cbs.max.amt">
<c-input :disabled="model.mhtyp == 'R'" v-model="model.bddgrp.cbs.max.amt" maxlength="3" <c-input disabled v-model="model.bddgrp.cbs.max.amt"
placeholder="请输入单据金额"></c-input> placeholder="请输入单据金额"></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -80,7 +80,7 @@ ...@@ -80,7 +80,7 @@
</c-col> </c-col>
<c-col :span="13"> <c-col :span="13">
<el-form-item label-width="0" prop="bddgrp.cbs.opn1.amt"> <el-form-item label-width="0" prop="bddgrp.cbs.opn1.amt">
<c-input v-model="model.bddgrp.cbs.opn1.amt" maxlength="3" placeholder="请输入单据余额" disabled> <c-input v-model="model.bddgrp.cbs.opn1.amt" placeholder="请输入单据余额" disabled>
</c-input> </c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -153,7 +153,7 @@ ...@@ -153,7 +153,7 @@
</c-col> </c-col>
<c-col :span="13"> <c-col :span="13">
<el-form-item label-width="0" prop="bddgrp.cbs.max.amt"> <el-form-item label-width="0" prop="bddgrp.cbs.max.amt">
<c-input v-model="model.bddgrp.cbs.max.amt" maxlength="3" placeholder="请输入单据金额" <c-input v-model="model.bddgrp.cbs.max.amt" placeholder="请输入单据金额"
:disabled="model.mhtyp == 'R'"></c-input> :disabled="model.mhtyp == 'R'"></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -289,7 +289,7 @@ ...@@ -289,7 +289,7 @@
</c-col> </c-col>
<c-col :span="13"> <c-col :span="13">
<el-form-item label-width="0" prop="didgrp.cbs.opn1.amt"> <el-form-item label-width="0" prop="didgrp.cbs.opn1.amt">
<c-input v-model="model.didgrp.cbs.opn1.amt" maxlength="3" placeholder="请输入信用证余额" disabled> <c-input v-model="model.didgrp.cbs.opn1.amt" placeholder="请输入信用证余额" disabled>
</c-input> </c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
......
...@@ -127,7 +127,7 @@ import Engp from "~/views/Public/Engp" ...@@ -127,7 +127,7 @@ import Engp from "~/views/Public/Engp"
export default { export default {
name: "botame", name: "Botame",
components:{ components:{
"m-amep" : Amep, "m-amep" : Amep,
"m-ovwp" : Ovwp, "m-ovwp" : Ovwp,
......
...@@ -95,6 +95,7 @@ import Engp from "~/views/Public/Engp"; ...@@ -95,6 +95,7 @@ import Engp from "~/views/Public/Engp";
import Glepan from "~/views/Public/Glepan"; import Glepan from "~/views/Public/Glepan";
export default { export default {
name: "Botcan",
components: { components: {
"m-canp": Canp, "m-canp": Canp,
"m-setpan": Setpan, "m-setpan": Setpan,
......
...@@ -128,7 +128,7 @@ ...@@ -128,7 +128,7 @@
export default { export default {
name: "botdav", name: "Botdav",
components: { components: {
"m-ovwp": Ovwp, "m-ovwp": Ovwp,
"m-inst": Inst, "m-inst": Inst,
......
...@@ -172,7 +172,9 @@ ...@@ -172,7 +172,9 @@
<c-col :span="24"> <c-col :span="24">
<el-form-item label="" prop="bopmod.dbdp.baspp.acp">
<c-checkbox style=" margin: 0px 0 10px 150px;" disabled v-model="model.bopmod.dbdp.baspp.acp">确认</c-checkbox> <c-checkbox style=" margin: 0px 0 10px 150px;" disabled v-model="model.bopmod.dbdp.baspp.acp">确认</c-checkbox>
</el-form-item>
</c-col> </c-col>
...@@ -281,6 +283,15 @@ export default { ...@@ -281,6 +283,15 @@ export default {
}, },
}, },
}, },
// watch:{
// "model.lendoc.actflg":function(){
// if(this.model.bopmod.szflg=='2' && this.model.lendoc.actflg=='X'){
// this.model.bopmod.dbdp.baspp.acp="X"
// }else{
// this.model.bopmod.dbdp.baspp.acp=""
// }
// }
// },
methods:{}, methods:{},
created:function(){ created:function(){
......
...@@ -458,11 +458,11 @@ export default { ...@@ -458,11 +458,11 @@ export default {
async change1(){ async change1(){
if(this.model.bodgrp.cbs.opn1.amt<=this.model.setmod.docamt){ if(this.model.bodgrp.cbs.opn1.amt<=this.model.setmod.docamt){
this.flag1=false; this.flag1=false;
this.model.mtabut.clsflg = "O"; // this.model.mtabut.clsflg = "C";
} }
else if(this.model.bodgrp.cbs.opn1.amt>this.model.setmod.docamt){ else if(this.model.bodgrp.cbs.opn1.amt>this.model.setmod.docamt){
this.flag1=true; this.flag1=true;
this.model.mtabut.clsflg = "C"; // this.model.mtabut.clsflg = "O";
}}, }},
// async change() { // async change() {
// if (this.model.bodgrp.rec.focflg === "X") { // if (this.model.bodgrp.rec.focflg === "X") {
......
...@@ -211,7 +211,7 @@ const BusRouter = [ ...@@ -211,7 +211,7 @@ const BusRouter = [
{ path: 'cltdav', component: Cltdav, name: 'Cltdav', meta: { title: '打包托收开立' } }, { path: 'cltdav', component: Cltdav, name: 'Cltdav', meta: { title: '打包托收开立' } },
{ path: 'clttra', component: Clttra, name: 'Clttra', meta: { title: '打包托收催收' } }, { path: 'clttra', component: Clttra, name: 'Clttra', meta: { title: '打包托收催收' } },
{ path: 'cltset', component: Cltset, name: 'Cltset', meta: { title: '打包托收解包' } }, { path: 'cltset', component: Cltset, name: 'Cltset', meta: { title: '打包托收解包' } },
{ path: 'infccd', component: Infccd, name: 'Infccd', meta: { title: '光票托收查询1' } }, { path: 'infccd', component: Infccd, name: 'Infccd', meta: { title: '光票托收查询' } },
{ path: 'infcld', component: Infcld, name: 'Infcld', meta: { title: '光票托收查询2' } }, { path: 'infcld', component: Infcld, name: 'Infcld', meta: { title: '光票托收查询2' } },
{ path: 'ccttra', component: Ccttra, name: 'Ccttra', meta: { title: '光票托收催收' } }, { path: 'ccttra', component: Ccttra, name: 'Ccttra', meta: { title: '光票托收催收' } },
{ path: 'cctdav', component: Cctdav, name: 'Cctdav', meta: { title: '光票托收开立' } }, { path: 'cctdav', component: Cctdav, name: 'Cctdav', meta: { title: '光票托收开立' } },
......
...@@ -138,6 +138,7 @@ ...@@ -138,6 +138,7 @@
v-model="model.ccdgrp.rec.purflg" v-model="model.ccdgrp.rec.purflg"
style="width: 100%" style="width: 100%"
placeholder="请选择Payment Disposition " placeholder="请选择Payment Disposition "
:disabled="model.ccdgrp.rec.modset == '1'"
:code="codes.purflg" :code="codes.purflg"
> >
</c-select> </c-select>
...@@ -205,7 +206,7 @@ ...@@ -205,7 +206,7 @@
<c-input <c-input
v-model="model.cctp.usr.extkey" v-model="model.cctp.usr.extkey"
maxlength="8" maxlength="8"
placeholder="请输入User ID" placeholder="请输入resp.usr"
disabled disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
...@@ -326,7 +327,7 @@ ...@@ -326,7 +327,7 @@
v-model="model.ccdgrp.col.pts.ref" v-model="model.ccdgrp.col.pts.ref"
maxlength="16" maxlength="16"
placeholder="请输入Coll. Bank参考号" placeholder="请输入Coll. Bank参考号"
disabled :disabled="model.ccdgrp.rec.modset == '2'"
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -338,7 +339,10 @@ ...@@ -338,7 +339,10 @@
v-model="model.ccdgrp.col.pts.extkey" v-model="model.ccdgrp.col.pts.extkey"
maxlength="16" maxlength="16"
placeholder="请输入Coll. Bank" placeholder="请输入Coll. Bank"
disabled @keyup.enter.native="
showGridPromptDialog('ccdgrp.col.pts.extkey')
"
:disabled="model.ccdgrp.rec.modset == '2'"
></c-input> ></c-input>
<template slot="footer"> <template slot="footer">
<c-button <c-button
...@@ -366,7 +370,7 @@ ...@@ -366,7 +370,7 @@
maxlength="150" maxlength="150"
show-word-limit show-word-limit
placeholder="请输入名称地址" placeholder="请输入名称地址"
disabled :disabled="model.ccdgrp.rec.modset == '2'"
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
......
<template> <template>
<div class="eContainer"> <div class="eContainer">
<c-function-btn
:handleSubmit="handleSubmit"
:handleCheck="handleCheck"
:handleStash="handleStash"
>
<el-button size="small">备忘录</el-button>
<el-button size="small">影像信息</el-button>
<el-button size="small">保存模板</el-button>
<el-button size="small">使用模板</el-button>
<el-button size="small">制裁信息</el-button>
<el-button size="small">拆分报文</el-button>
<el-button size="small">智能提示</el-button>
</c-function-btn>
<el-form <el-form
:model="model" :model="model"
:rules="rules" :rules="rules"
...@@ -81,7 +94,7 @@ export default { ...@@ -81,7 +94,7 @@ export default {
defaultRules: Default, defaultRules: Default,
pattern: Pattern, pattern: Pattern,
rules: null, rules: null,
codes: {...CodeTable}, codes: { ...CodeTable },
}; };
}, },
methods: { methods: {
......
...@@ -349,7 +349,7 @@ ...@@ -349,7 +349,7 @@
style="width: 100%" style="width: 100%"
placeholder="请选择Booking Procedure" placeholder="请选择Booking Procedure"
><el-option ><el-option
v-for="item in rebkpflg" v-for="item in codes.rebkpflg2"
:key="item.value" :key="item.value"
:label="item.label" :label="item.label"
:value="item.value" :value="item.value"
...@@ -530,10 +530,7 @@ export default { ...@@ -530,10 +530,7 @@ export default {
mixins: [commonProcess], mixins: [commonProcess],
data() { data() {
return { return {
rebkpflg: [
{ label: "Reverse Booking (Claim)", value: "1" },
{ label: "Reverse Booking (Claim, Guarantee)", value: "2" },
],
}; };
}, },
methods: { ...Event }, methods: { ...Event },
......
...@@ -205,7 +205,7 @@ ...@@ -205,7 +205,7 @@
v-model="model.gidgrp.rec.gartyp" v-model="model.gidgrp.rec.gartyp"
style="width: 100%" style="width: 100%"
placeholder="请选择type of Undertaking" placeholder="请选择type of Undertaking"
:code="codes.typgar2" :code="typgar2"
> >
</c-select> </c-select>
</el-form-item> </el-form-item>
...@@ -949,7 +949,11 @@ export default { ...@@ -949,7 +949,11 @@ export default {
mixins: [commonProcess], mixins: [commonProcess],
data() { data() {
return { return {
rejtypsel: "1" rejtypsel: "1",
typgar2: [
{ label: "农民工工资保函", value: "1" },
{ label: "农民工工资保函2", value: "2" },
],
}; };
}, },
methods: { ...Event }, methods: { ...Event },
......
...@@ -418,8 +418,25 @@ export default { ...@@ -418,8 +418,25 @@ export default {
data() { data() {
return {}; return {};
}, },
watch:{
"model.bopmod.dbcp.baspp.acp" :{
immediate: true,
handler(val,oldval){
if(this.model.bopmod.dbcp.baspp.acp==""){
this.model.bopmod.dbcp.baspp.acp="X"
}
}
},
},
methods: { ...Event }, methods: { ...Event },
created: function () {}, // created: function () {
// this.executeRule("bopmod.dbcp.basp").then((res) => {
// if (res.respCode == SUCCESS) {
// this.copyValueFromVO(res.data);
// }
// });
// },
}; };
</script> </script>
<style> <style>
......
<template>
<div class="eibs-tab">
<el-col :span="11">
<c-col :span="24">
<el-form-item label="申报号码" prop="bopmod.dbfgrp.bas.rptno">
<c-input
disabled
v-model="model.bopmod.dbfgrp.bas.rptno"
maxlength="22"
placeholder="请输入申报号码"
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="操作类型" prop="bopmod.dbfgrp.bas.actiontype">
<c-select
disabled
:code="codes.actiontype"
v-model="model.bopmod.dbfgrp.bas.actiontype"
style="width: 100%"
placeholder="请选择操作类型"
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="地区机构号" prop="bopmod.dbfgrp.bas.ownextkey">
<c-select
disabled
v-model="model.bopmod.dbfgrp.bas.ownextkey"
style="width: 100%"
placeholder="请选择地区机构号"
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="银行业务编号" prop="bopmod.dbfgrp.bas.buscode">
<c-input
disabled
v-model="model.bopmod.dbfgrp.bas.buscode"
maxlength="22"
placeholder="请输入银行业务编号"
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="付款人类型" prop="bopmod.dbfgrp.bas.custype">
<c-select
disabled
:code="codes.custype"
v-model="model.bopmod.dbfgrp.bas.custype"
style="width: 100%"
placeholder="请选择类型"
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="付款人名称" prop="bopmod.dbfgrp.bas.custnm">
<c-input
type="textarea"
v-model="model.bopmod.dbfgrp.bas.custnm"
maxlength="63"
show-word-limit
placeholder="请输入付款人名称"
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="收款人名称" prop="bopmod.dbfgrp.bas.oppuser">
<c-input
type="textarea"
v-model="model.bopmod.dbfgrp.bas.oppuser"
maxlength="63"
show-word-limit
placeholder="请输入收款人名称"
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="身份证件号码" prop="bopmod.dbfgrp.bas.idcode">
<c-input
disabled
v-model="model.bopmod.dbfgrp.bas.idcode"
maxlength="32"
placeholder="请输入身份证件号码"
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="购汇金额" prop="bopmod.dbfgrp.bas.lcyamt">
<c-input
v-model="model.bopmod.dbfgrp.bas.lcyamt"
placeholder="请输入购汇金额"
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="现汇金额" prop="bopmod.dbfgrp.bas.fcyamt">
<c-input
v-model="model.bopmod.dbfgrp.bas.fcyamt"
placeholder="请输入现汇金额"
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="其它金额" prop="bopmod.dbfgrp.bas.othamt">
<c-input
v-model="model.bopmod.dbfgrp.bas.othamt"
placeholder="请输入其它金额"
></c-input>
</el-form-item>
</c-col>
<c-col :span="14">
<el-form-item label="付款币种及金额" prop="bopmod.dbfgrp.bas.txccy">
<c-select
disabled
v-model="model.bopmod.dbfgrp.bas.txccy"
style="width: 100%"
placeholder="请选择付款币种及金额"
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="10">
<el-form-item
label=""
label-width="10px"
prop="bopmod.dbfgrp.bas.txamt"
>
<c-input
disabled
v-model="model.bopmod.dbfgrp.bas.txamt"
placeholder="请输入付款币种及金额"
></c-input>
</el-form-item>
</c-col>
<c-col :span="14">
<el-form-item
label="实际付款币种及金额"
prop="bopmod.dbfgrp.bas.actuccy"
>
<c-select
disabled
v-model="model.bopmod.dbfgrp.bas.actuccy"
style="width: 100%"
placeholder="请选择实际付款币种及金额"
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="10">
<el-form-item
label=""
label-width="10px"
prop="bopmod.dbfgrp.bas.actuamt"
>
<c-input
disabled
v-model="model.bopmod.dbfgrp.bas.actuamt"
placeholder="请输入实际付款币种及金额"
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="开证日期" prop="bopmod.dbfgrp.bas.issdate">
<c-date-picker
disabled
type="date"
v-model="model.bopmod.dbfgrp.bas.issdate"
style="width: 100%"
placeholder="请选择开证日期"
></c-date-picker>
</el-form-item>
</c-col>
</el-col>
<!--=====================right ============================= -->
<el-col :span="11" :offset="1">
<c-col :span="24">
<el-form-item label="修改/删除原因" prop="bopmod.dbfgrp.bas.actiondesc">
<c-input
disabled
:rows="7"
type="textarea"
v-model="model.bopmod.dbfgrp.bas.actiondesc"
maxlength="32"
show-word-limit
placeholder="请输入操作类型"
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="结算方式" prop="bopmod.dbfgrp.bas.methods">
<c-select
disabled
:code="codes.methods"
v-model="model.bopmod.dbfgrp.bas.methods"
style="width: 100%"
placeholder="请选择结算方式"
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="组织机构代码" prop="bopmod.dbfgrp.bas.custcod">
<c-input
disabled
v-model="model.bopmod.dbfgrp.bas.custcod"
maxlength="18"
placeholder="请输入组织机构"
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<c-checkbox
style="margin: 0px 0 10px 150px"
disabled
v-model="model.bopmod.dbfp.baspp.acp"
:checked="true"
>确认</c-checkbox
>
</c-col>
<c-col :span="24">
<el-form-item label="购汇汇率" prop="bopmod.dbfgrp.bas.exrate">
<c-input
disabled
v-model="model.bopmod.dbfgrp.bas.exrate"
placeholder="请输入购汇汇率"
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
label="人民币帐号/银行卡号"
prop="bopmod.dbfgrp.bas.lcyacc"
>
<c-input
disabled
v-model="model.bopmod.dbfgrp.bas.lcyacc"
maxlength="32"
placeholder="请输入人民币帐号/银行卡号"
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="外汇帐号/银行卡号" prop="bopmod.dbfgrp.bas.fcyacc">
<c-input
disabled
v-model="model.bopmod.dbfgrp.bas.fcyacc"
maxlength="32"
placeholder="请输入外汇帐号/银行卡号"
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="其它帐号/银行卡号" prop="bopmod.dbfgrp.bas.othacc">
<c-input
disabled
v-model="model.bopmod.dbfgrp.bas.othacc"
maxlength="32"
placeholder="请输入其它帐号/银行卡号"
></c-input>
</el-form-item>
</c-col>
<c-col :span="14">
<el-form-item
label="扣费币种及金额"
prop="bopmod.dbfgrp.bas.outchargeccy"
>
<c-select
disabled
:code="codes.outchargeccy"
v-model="model.bopmod.dbfgrp.bas.outchargeccy"
style="width: 100%"
placeholder="请选择扣费币种及金额"
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="10">
<el-form-item
label=""
label-width="10px"
prop="bopmod.dbfgrp.bas.outchargeamt"
>
<c-input
disabled
v-model="model.bopmod.dbfgrp.bas.outchargeamt"
placeholder="请输入扣费币种及金额"
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="信用证/保函编号" prop="bopmod.dbfgrp.bas.lcbgno">
<c-input
disabled
v-model="model.bopmod.dbfgrp.bas.lcbgno"
maxlength="20"
placeholder="请输入信用证/保函编号"
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="期限" prop="bopmod.dbfgrp.bas.tenor">
<c-input
disabled
v-model="model.bopmod.dbfgrp.bas.tenor"
placeholder="请输入期限"
></c-input>
</el-form-item>
</c-col>
</el-col>
<!-- <c-col :span="12">
<c-button size="small" type="primary" @click="onSav">
&Save
</c-button>
</c-col>
<c-col :span="12">
<span v-text="model.bopmod.dbfp.baspp.roptnam" data-path=".bopmod.dbfp.baspp.roptnam" > </span>
</c-col> -->
<!-- <c-col :span="12">
<el-form-item label="�'时申报流�'号" prop="bopmod.dbfgrp.bas.tmpref">
<c-input v-model="model.bopmod.dbfgrp.bas.tmpref" maxlength="16" placeholder="请输入�'时申报流�'号"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onBasppGetreftmp">
Get Ref
</c-button>
</c-col> -->
<!-- <c-col :span="12">
<c-button size="small" type="primary" @click="onBasppGetref">
GetRef
</c-button>
</c-col> -->
<!-- <c-col :span="12">
<span v-text="model.bopmod.dbfp.baspp.tmprefnew" data-path=".bopmod.dbfp.baspp.tmprefnew" > </span>
</c-col> -->
<!-- <c-col :span="12">
<c-button size="small" type="primary" @click="onCan">
Modify
</c-button>
</c-col> -->
<!-- <c-col :span="12">
<c-button size="small" type="primary" @click="onChk">
&Check
</c-button>
</c-col> -->
<!-- <c-col :span="12">
<c-button size="small" type="primary" @click="onChk">
Delete
</c-button>
</c-col> -->
<!-- <c-col :span="12">
<span v-text="model.bopmod.dbfp.baspp.cusnam" data-path=".bopmod.dbfp.baspp.cusnam" > </span>
</c-col> -->
<!--
<c-col :span="12">
<span v-text="model.bopmod.dbfp.baspp.cornam" data-path=".bopmod.dbfp.baspp.cornam" > </span>
</c-col> -->
<!-- <c-col :span="12">
<c-button size="small" type="primary" @click="onButpErr">
&Error
</c-button>
</c-col> -->
<!-- <c-col :span="12">
<span v-text="model.bopmod.dbfp.baspp.corpnam" data-path=".bopmod.dbfp.baspp.corpnam" > </span>
</c-col> -->
<!-- <c-col :span="12">
<span v-text="model.bopmod.dbfp.baspp.exratelab" data-path=".bopmod.dbfp.baspp.exratelab" > </span>
</c-col> -->
<!-- <c-col :span="12">
<span v-text="model.bopmod.dbfp.baspp.lcyamtlab" data-path=".bopmod.dbfp.baspp.lcyamtlab" > </span>
</c-col> -->
<!-- <c-col :span="12">
<c-button size="small" type="primary" @click="onCan">
E&xit
</c-button>
</c-col> -->
</div>
</template>
<script>
import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Gitset/Event";
export default {
inject: ["root"],
props: ["model", "codes"],
mixins: [commonProcess],
data() {
return {};
},
watch:{
"model.bopmod.dbfp.baspp.acp" :{
immediate: true,
handler(val,oldval){
if(this.model.bopmod.dbfp.baspp.acp==""){
this.model.bopmod.dbfp.baspp.acp="X"
}
}
},
},
methods: { ...Event },
created: function () {},
};
</script>
<style>
</style>
...@@ -75,11 +75,11 @@ ...@@ -75,11 +75,11 @@
<el-tab-pane <el-tab-pane
label="境内付款/承兑通知书-基础信息" label="境内付款/承兑通知书-基础信息"
name="basp" name="basp1"
v-if="model.bopmod.basflg && model.bopmod.szflg == '2'" v-if="model.bopmod.basflg && model.bopmod.szflg == '2'"
> >
<c-content> <c-content>
<m-basp :model="model" :codes="codes" /> <m-basp1 :model="model" :codes="codes" />
</c-content> </c-content>
</el-tab-pane> </el-tab-pane>
...@@ -207,7 +207,8 @@ import Gitsetp from "./Gitsetp"; ...@@ -207,7 +207,8 @@ import Gitsetp from "./Gitsetp";
import Det756 from "./Det756"; import Det756 from "./Det756";
import Det202cv from "./Det202cv"; import Det202cv from "./Det202cv";
import Basp from "./Basp"; import Basp from "./Basp";
import BaspVue from "../Bctset/Basp.vue"; import Basp1 from "./Basp1";
//import BaspVue from "../Bctset/Basp.vue";
import Outp from "./Outp"; import Outp from "./Outp";
import Cips from "./Cips"; import Cips from "./Cips";
import Cips2 from "./Cips2"; import Cips2 from "./Cips2";
...@@ -231,6 +232,7 @@ export default { ...@@ -231,6 +232,7 @@ export default {
"m-det756": Det756, "m-det756": Det756,
"m-det202cv": Det202cv, "m-det202cv": Det202cv,
"m-basp": Basp, "m-basp": Basp,
"m-basp1": Basp1,
"m-outp": Outp, "m-outp": Outp,
"m-cips": Cips, "m-cips": Cips,
"m-cips2": Cips2, "m-cips2": Cips2,
...@@ -285,6 +287,9 @@ export default { ...@@ -285,6 +287,9 @@ export default {
if(name === 'basp'){ if(name === 'basp'){
rulePath = "bopmod.dbcp.basp" rulePath = "bopmod.dbcp.basp"
} }
if(name === 'basp1'){
rulePath = "bopmod.dbfp.basp"
}
if(name === 'outp'){ if(name === 'outp'){
rulePath = "cnybop.Outp" rulePath = "cnybop.Outp"
} }
......
...@@ -265,7 +265,7 @@ ...@@ -265,7 +265,7 @@
size="medium" size="medium"
type="primary" type="primary"
@click="toCctdav" @click="toCctdav"
>光票托收</c-button >光票托收</c-button
> >
</c-col> </c-col>
<c-col :span="24"> <c-col :span="24">
......
...@@ -161,6 +161,7 @@ ...@@ -161,6 +161,7 @@
</c-col> </c-col>
<!-- Maximum Amount 信用证最大金额--> <!-- Maximum Amount 信用证最大金额-->
<c-col :span="24">
<c-col :span="12"> <c-col :span="12">
<el-form-item label="Maximum Amount" prop="ledgrp.cbs.max.cur"> <el-form-item label="Maximum Amount" prop="ledgrp.cbs.max.cur">
<c-select <c-select
...@@ -183,7 +184,9 @@ ...@@ -183,7 +184,9 @@
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
</c-col>
<c-col :span="24">
<!-- Issued on开证日期 Date Pre-advised 预通知日期--> <!-- Issued on开证日期 Date Pre-advised 预通知日期-->
<c-col :span="12"> <c-col :span="12">
<el-form-item label="Issued on" prop="ledgrp.rec.opndat"> <el-form-item label="Issued on" prop="ledgrp.rec.opndat">
...@@ -198,7 +201,9 @@ ...@@ -198,7 +201,9 @@
</c-date-picker> </c-date-picker>
</el-form-item> </el-form-item>
</c-col> </c-col>
</c-col>
<c-col :span="24">
<!-- Shipment Date 装运日期 --> <!-- Shipment Date 装运日期 -->
<c-col :span="12"> <c-col :span="12">
<el-form-item label="Shipment Date" prop="ledgrp.rec.shpdat"> <el-form-item label="Shipment Date" prop="ledgrp.rec.shpdat">
...@@ -212,7 +217,9 @@ ...@@ -212,7 +217,9 @@
</c-date-picker> </c-date-picker>
</el-form-item> </el-form-item>
</c-col> </c-col>
</c-col>
<c-col :span="24">
<!--Expiring on 到期日 --> <!--Expiring on 到期日 -->
<c-col :span="12"> <c-col :span="12">
<el-form-item label="Expiring on" prop="ledgrp.rec.expdat"> <el-form-item label="Expiring on" prop="ledgrp.rec.expdat">
...@@ -227,6 +234,7 @@ ...@@ -227,6 +234,7 @@
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="12"></c-col> <c-col :span="12"></c-col>
</c-col>
<!-- in (Place)/counters of有效地点 --> <!-- in (Place)/counters of有效地点 -->
<c-col :span="24"> <c-col :span="24">
......
<template> <template>
<div class="eibs-tab"> <div class="eibs-tab">
<c-row>
<!-- ============================顶部-第一行================================ --> <!-- ============================顶部-第一行================================ -->
<c-row> <c-row>
<c-col :span="24"> <c-col :span="24">
...@@ -125,7 +126,8 @@ ...@@ -125,7 +126,8 @@
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="5"> <c-col :span="5">
<c-checkbox v-model="model.ledgrp.rec.revflg" <c-checkbox
v-model="model.ledgrp.rec.revflg"
style="margin-left: 10px" style="margin-left: 10px"
disabled disabled
>Revolving L/C</c-checkbox >Revolving L/C</c-checkbox
...@@ -133,7 +135,7 @@ ...@@ -133,7 +135,7 @@
</c-col> </c-col>
</c-col> </c-col>
<c-row> <c-col :span="24">
<!-- Available with指定银行 --> <!-- Available with指定银行 -->
<c-col :span="19"> <c-col :span="19">
<el-form-item label="Available with" prop="ledgrp.avbnam"> <el-form-item label="Available with" prop="ledgrp.avbnam">
...@@ -145,7 +147,7 @@ ...@@ -145,7 +147,7 @@
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
</c-row> </c-col>
<c-col :span="24"> <c-col :span="24">
<c-col :span="19"> <c-col :span="19">
...@@ -161,7 +163,8 @@ ...@@ -161,7 +163,8 @@
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="5"> <c-col :span="5">
<c-checkbox v-model="model.ledgrp.rec.redclsflg" <c-checkbox
v-model="model.ledgrp.rec.redclsflg"
style="margin-left: 10px" style="margin-left: 10px"
disabled disabled
>Red/Green Clause</c-checkbox >Red/Green Clause</c-checkbox
...@@ -234,7 +237,6 @@ ...@@ -234,7 +237,6 @@
</c-select> </c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
</c-col> </c-col>
<!-- ========================上半部分的右边======================= --> <!-- ========================上半部分的右边======================= -->
<c-col :span="11" :offset="1"> <c-col :span="11" :offset="1">
...@@ -303,8 +305,7 @@ ...@@ -303,8 +305,7 @@
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="24"> <c-col :span="24">
<el-form-item label="" prop=""> <el-form-item label="" prop=""> </el-form-item>
</el-form-item>
</c-col> </c-col>
</c-col> </c-col>
</c-row> </c-row>
...@@ -352,11 +353,7 @@ ...@@ -352,11 +353,7 @@
</c-col> </c-col>
<c-col :span="11" :offset="1"> <c-col :span="11" :offset="1">
<!-- Name --> <!-- Name -->
<el-form-item <el-form-item label="Name" text-align="middle" prop="bedgrp.rec.nam">
label="Name"
text-align="middle"
prop="bedgrp.rec.nam"
>
<c-input <c-input
v-model="model.bedgrp.rec.nam" v-model="model.bedgrp.rec.nam"
maxlength="40" maxlength="40"
...@@ -369,7 +366,7 @@ ...@@ -369,7 +366,7 @@
</c-row> </c-row>
<!-- ========================下半部分的上半部分(左边,右边是空白的)======================= --> <!-- ========================下半部分的上半部分(左边,右边是空白的)======================= -->
<c-row> <c-row>
<c-col :span="24"> <c-col :span="24">
<c-col :span="12"> <c-col :span="12">
<c-col :span="24"> <c-col :span="24">
...@@ -422,7 +419,10 @@ ...@@ -422,7 +419,10 @@
</c-col> </c-col>
<!-- Discrep. advised on --> <!-- Discrep. advised on -->
<c-col :span="12"> <c-col :span="12">
<el-form-item label="Discrep. advised on" prop="bedgrp.rec.disdat"> <el-form-item
label="Discrep. advised on"
prop="bedgrp.rec.disdat"
>
<c-date-picker <c-date-picker
type="date" type="date"
v-model="model.bedgrp.rec.disdat" v-model="model.bedgrp.rec.disdat"
...@@ -435,7 +435,7 @@ ...@@ -435,7 +435,7 @@
</c-col> </c-col>
</c-col> </c-col>
</c-col> </c-col>
</c-row> </c-row>
<!-- ========================下半部分的下半边的左边=Presented by-====================== --> <!-- ========================下半部分的下半边的左边=Presented by-====================== -->
<c-row> <c-row>
<c-col :span="12"> <c-col :span="12">
...@@ -446,9 +446,7 @@ ...@@ -446,9 +446,7 @@
style="width: 100%" style="width: 100%"
placeholder="请选择Presented by" placeholder="请选择Presented by"
:code="codes.docprbrol0" :code="codes.docprbrol0"
@change="eventFunction( @change="eventFunction('bedgrp.rec.docprbrol')"
'bedgrp.rec.docprbrol'
)"
> >
</c-select> </c-select>
</el-form-item> </el-form-item>
...@@ -474,7 +472,7 @@ ...@@ -474,7 +472,7 @@
}" }"
@onSeainf="onSeainf" @onSeainf="onSeainf"
@onAplpDet="onPrbpDet" @onAplpDet="onPrbpDet"
:disabled1="model.bedgrp.rec.docprbrol=='BEN'? true: false" :disabled1="model.bedgrp.rec.docprbrol == 'BEN' ? true : false"
> >
</c-ptap1> </c-ptap1>
</c-col> </c-col>
...@@ -488,9 +486,7 @@ ...@@ -488,9 +486,7 @@
style="width: 100%" style="width: 100%"
placeholder="请选择Payer" placeholder="请选择Payer"
:code="codes.payrol" :code="codes.payrol"
@change="eventFunction( @change="eventFunction('bedgrp.rec.payrol')"
'bedgrp.rec.payrol'
)"
> >
</c-select> </c-select>
</el-form-item> </el-form-item>
...@@ -524,7 +520,6 @@ ...@@ -524,7 +520,6 @@
</c-col> </c-col>
</c-row> </c-row>
<!-- <c-col :span="12"> <!-- <c-col :span="12">
<el-form-item label="Drag Drop Sender" prop="betp.ledget.sdamod.dadsnd"> <el-form-item label="Drag Drop Sender" prop="betp.ledget.sdamod.dadsnd">
<c-input <c-input
...@@ -1078,6 +1073,7 @@ ...@@ -1078,6 +1073,7 @@
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> --> </c-col> -->
</c-row>
</div> </div>
</template> </template>
<script> <script>
...@@ -1097,7 +1093,7 @@ export default { ...@@ -1097,7 +1093,7 @@ export default {
}, },
methods: { methods: {
...Event, ...Event,
onSeainf(){}, onSeainf() {},
}, },
computed: { computed: {
docprbrolFlag: { docprbrolFlag: {
......
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