Commit 7e824d23 by Wuyuqiu

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 80d35415 4636d3e6
......@@ -49,7 +49,7 @@ export default {
}
</script>
<style>
<style scoped>
.m-table-search {
position: relative;
margin: -20px 0 0 0;
......
......@@ -36,7 +36,7 @@ export default {
"gidgrp.cbs.opn1.amt":[
{type: "string", required: false, message: "必输项"},
{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位" }
],
"gidgrp.ben.pts.nam":[
......
import Utils from "~/utils"
/**
* Gitenc Check规则
*/
let checkObj = {
"liaall.limmod.limpts.oth.pts.extkey" :null,
"liaall.limmod.ownref" :null,
"liaall.limmod.ecifno" :null,
"dnfenc.qicuje" :null,
"dnfenc.yewudh" :null,
"liaall.limmod.limpts.oth.pts.nam" :null,
"setmod.dspflg" :null,
"dnfenc.kehuzh" :null,
"liaall.liaccv.totcovamt" :null,
"liaall.limmod.limpts.wrk.pts.nam" :null,
"liaall.limmod.limpts.wrk.pts.extkey" :null,
"mtabut.coninf.conexedat" :null,
"dnfenc.lxzyzh" :null,
"liaall.limmod.limpts.nonrevflg1" :null,
"dnfenc.tizamt" :null,
"setmod.docamt" :null,
"liaall.liaccv.cshpct" :null,
"dnfenc.zhruzh" :null,
"dnfenc.zhqtyp" :null,
"liaall.liaccv.relcshpct" :null,
}
for (const key in checkObj) {
if (Object.hasOwnProperty.call(checkObj, key)) {
checkObj[key] = checkObj[key] ? checkObj[key] : Utils.reflectCheck(key)
}
}
export default checkObj
/**
* Gitenc Default规则
*/
import Api from "~/service/Api";
import Utils from "~/utils/index"
export default {
"liaall.limmod.limpts.oth.pts.extkey" :Utils.defaultFunction,
"gidgrp.rec.ownref" :Utils.defaultFunction,
"setmod.doccur" :Utils.defaultFunction,
"setmod.dspflg" :Utils.defaultFunction,
"setmod.docamt" :Utils.defaultFunction,
"trnmod.trndoc.condocstm" :Utils.defaultFunction,
"trnmod.trndoc.shwinc" :Utils.defaultFunction,
"trnmod.trndoc.shwout" :Utils.defaultFunction,
"gidgrp.rec.expdat" :Utils.defaultFunction,
"liaall.limmod.limpts.wrk.pts.extkey" :Utils.defaultFunction,
"liaall.limmod.limpts.nonrevflg2" :Utils.defaultFunction,
"liaall.limmod.limpts.nonrevflg1" :Utils.defaultFunction,
"gidgrp.rec.gartyp" :Utils.defaultFunction,
"gidgrp.rec.hndtyp" :Utils.defaultFunction,
"gidgrp.rec.liadat" :Utils.defaultFunction,
"liaall.limmod.comamt" :Utils.defaultFunction,
"liaall.limmod.ccvamt" :Utils.defaultFunction,
"liaall.limmod.limpts.wrk.pts.nam" :Utils.defaultFunction,
"gidgrp.cbs.max.cur" :Utils.defaultFunction,
"gidgrp.cbs.max.amt" :Utils.defaultFunction,
"liaall.liaccv.newamt" :Utils.defaultFunction,
"liaall.liaccv.totcovamt" :Utils.defaultFunction,
"dnfenc.zhqtyp" :Utils.defaultFunction,
"dnfenc.yewudh" :Utils.defaultFunction,
"dnfenc.kehuzh" :Utils.defaultFunction,
"liaall.liaccv.cshpct" :Utils.defaultFunction,
"mtabut.coninf.oitset.oit.inftxt" :Utils.defaultFunction,
"mtabut.coninf.oitset.oit.inflev" :Utils.defaultFunction,
"gidgrp.iss.pts.nam" :Utils.defaultFunction,
"mtabut.coninf.usr.extkey" :Utils.defaultFunction,
"gidgrp.ben.pts.nam" :Utils.defaultFunction,
"liaall.liaccv.addinf" :Utils.defaultFunction,
"dnfenc.ccvtyp" :Utils.defaultFunction,
"liaall.limmod.limpts.oth.pts.nam" :Utils.defaultFunction,
"liaall.liaccv.concur" :Utils.defaultFunction,
"gidgrp.apl.pts.nam" :Utils.defaultFunction,
"gidgrp.ctr.pts.nam" :Utils.defaultFunction,
"mtabut.coninf.oitinf.oit.inftxt" :Utils.defaultFunction,
"mtabut.coninf.oitinf.oit.inflev" :Utils.defaultFunction,
"mtabut.coninf.conexedat" :Utils.defaultFunction,
}
//你可以添加自动default处理
import Api from "~/service/Api"
import Utils from "~/utils"
export default {
async onLiaccvAdd(){
let rtnmsg = await this.executeRule("liaccv.add")
if(rtnmsg.respCode == SUCCESS)
{
//TODO 处理数据逻辑
}
else
{
this.$notify.error({title: '错误',message: '服务请求失败!'});
}
},
async onLiaccvDel(){
let rtnmsg = await this.executeRule("liaccv.del")
if(rtnmsg.respCode == SUCCESS)
{
//TODO 处理数据逻辑
}
else
{
this.$notify.error({title: '错误',message: '服务请求失败!'});
}
},
async onDnfencGet(){
let rtnmsg = await this.executeRule("dnfenc.get")
if(rtnmsg.respCode == SUCCESS)
{
//TODO 处理数据逻辑
this.updateModel(rtnmsg.data);
}
else
{
this.$notify.error({title: '错误',message: '服务请求失败!'});
}
},
async onDnfencQcget(){
let rtnmsg = await this.executeRule("dnfenc.qcget")
if(rtnmsg.respCode == SUCCESS)
{
//TODO 处理数据逻辑
}
else
{
this.$notify.error({title: '错误',message: '服务请求失败!'});
}
},
async onSetmodDet(){
let rtnmsg = await this.executeRule("setmod.det")
if(rtnmsg.respCode == SUCCESS)
{
//TODO 处理数据逻辑
}
else
{
this.$notify.error({title: '错误',message: '服务请求失败!'});
}
},
async onTrndocButshw(){
let rtnmsg = await this.executeRule("trndoc.butshw")
if(rtnmsg.respCode == SUCCESS)
{
//TODO 处理数据逻辑
}
else
{
this.$notify.error({title: '错误',message: '服务请求失败!'});
}
},
async onTrndocButadd(){
let rtnmsg = await this.executeRule("trndoc.butadd")
if(rtnmsg.respCode == SUCCESS)
{
//TODO 处理数据逻辑
}
else
{
this.$notify.error({title: '错误',message: '服务请求失败!'});
}
},
async onTrndocButnew(){
let rtnmsg = await this.executeRule("trndoc.butnew")
if(rtnmsg.respCode == SUCCESS)
{
//TODO 处理数据逻辑
}
else
{
this.$notify.error({title: '错误',message: '服务请求失败!'});
}
},
async onTrndocButattto(){
let rtnmsg = await this.executeRule("trndoc.butattto")
if(rtnmsg.respCode == SUCCESS)
{
//TODO 处理数据逻辑
}
else
{
this.$notify.error({title: '错误',message: '服务请求失败!'});
}
},
async onTrndocButdel(){
let rtnmsg = await this.executeRule("trndoc.butdel")
if(rtnmsg.respCode == SUCCESS)
{
//TODO 处理数据逻辑
}
else
{
this.$notify.error({title: '错误',message: '服务请求失败!'});
}
},
async onTrndocButatt(){
let rtnmsg = await this.executeRule("trndoc.butatt")
if(rtnmsg.respCode == SUCCESS)
{
//TODO 处理数据逻辑
}
else
{
this.$notify.error({title: '错误',message: '服务请求失败!'});
}
},
async onWrkpDet(){
let rtnmsg = await this.executeRule("wrkp.det")
if(rtnmsg.respCode == SUCCESS)
{
//TODO 处理数据逻辑
}
else
{
this.$notify.error({title: '错误',message: '服务请求失败!'});
}
},
async onOthpDet(){
let rtnmsg = await this.executeRule("othp.det")
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: '服务请求失败!'});
}
},
async onLimmodTrycal(){
let rtnmsg = await this.executeRule("limmod.trycal")
if(rtnmsg.respCode == SUCCESS)
{
//TODO 处理数据逻辑
}
else
{
this.$notify.error({title: '错误',message: '服务请求失败!'});
}
},
}
\ No newline at end of file
export default {
"gitp0.recget.sdamod.dadsnd":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"gidgrp.rec.ownref":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"gitp0.recget.sdamod.seainf":[
{type: "string", required: false, message: "必输项"},
{max: 3,message:"长度不能超过3"}
],
"gidgrp.rec.nam":[
{type: "string", required: false, message: "必输项"},
{max: 40,message:"长度不能超过40"}
],
"gidgrp.cbs.max.cur":[
{type: "string", required: false, message: "必输项"},
{max: 3,message:"长度不能超过3"}
],
"gidgrp.cbs.max.amt":[
{type: "string", required: false, message: "必输项"},
{max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
"gidgrp.apl.pts.nam":[
{type: "string", required: false, message: "必输项"},
{max: 40,message:"长度不能超过40"}
],
"gidgrp.cbs.opn1.cur":[
{type: "string", required: false, message: "必输项"},
{max: 3,message:"长度不能超过3"}
],
"gidgrp.cbs.opn1.amt":[
{type: "string", required: false, message: "必输项"},
{max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
"gidgrp.ben.pts.nam":[
{type: "string", required: false, message: "必输项"},
{max: 40,message:"长度不能超过40"}
],
"gidgrp.ctr.pts.nam":[
{type: "string", required: false, message: "必输项"},
{max: 40,message:"长度不能超过40"}
],
"gidgrp.rec.expdat":[
{type: "date", required: false, message: "输入正确的日期"},
],
"gidgrp.rec.exptyp":[
{type: "string", required: false, message: "输入正确的日期"},
{max: 4,message:"长度不能超过4"}
],
"gidgrp.rec.liadat":[
{type: "date", required: false, message: "输入正确的日期"}
],
"gidgrp.iss.pts.nam":[
{type: "string", required: false, message: "必输项"},
{max: 40,message:"长度不能超过40"}
],
"setmod.refdat":[
{type: "date", required: false, message: "输入正确的日期"}
],
"liaall.liaccv.concur":[
{type: "string", required: false, message: "必输项"},
{max: 3,message:"长度不能超过3"}
],
"liaall.liaccv.newamt":[
{type: "number", required: false, message: "必输项"},
{max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
"liaall.liaccv.cshpct":[
{type: "string", required: false, message: "必输项"},
{max: 5,message:"长度不能超过5"}
],
"liaall.liaccv.newresamt":[
{type: "number", required: false, message: "必输项"},
{max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
"liaall.liaccv.relcshpct":[
{type: "string", required: false, message: "必输项"},
{max: 5,message:"长度不能超过5"}
],
"liaall.liaccv.pctresamt":[
{type: "number", required: false, message: "必输项"},
{max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
"liaall.liaccv.totcovamt":[
{type: "number", required: false, message: "必输项"},
{max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
"liaall.liaccv.addinf":[
{type: "string", required: true, message: "必输项"},
{max: 70,message:"长度不能超过70"}
],
"dnfenc.zhqucs":[
{type: "string", required: false, message: "必输项"},
{max: 2,message:"长度不能超过2"}
],
"dnfenc.tizamt":[
{type: "string", required: false, message: "必输项"},
{max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
"dnfenc.yewudh":[
{type: "string", required: false, message: "必输项"},
{max: 4,message:"长度不能超过4"}
],
"dnfenc.qicuje":[
{type: "string", required: false, message: "必输项"},
{max: 13,message:"长度不能超过13"}
],
"dnfenc.zhhuye":[
{type: "string", required: false, message: "必输项"},
{max: 18,message:"长度不能超过18"}
],
"dnfenc.stm8023":[
{type: "string", required: false, message: "必输项"},
{max: 40,message:"长度不能超过40"}
],
"setmod.ref":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"setmod.docamt":[
{type: "number", required: false, message: "必输项"},
{max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
"setmod.zmqacc":[
{type: "string", required: false, message: "必输项"},
{max: 20,message:"长度不能超过20"}
],
"mtabut.coninf.oitinf.oit.inftxt":[
{type: "string", required: true, message: "必输项"},
{max: 60,message:"长度不能超过60"}
],
"mtabut.coninf.oitset.oit.inftxt":[
{type: "string", required: true, message: "必输项"},
{max: 60,message:"长度不能超过60"}
],
"mtabut.coninf.conexedat":[
{type: "date", required: false, message: "输入正确的日期"}
],
"mtabut.coninf.usr.extkey":[
{type: "string", required: false, message: "必输项"},
{max: 8,message:"长度不能超过8"}
],
"trnmod.trndoc.advnam":[
{type: "string", required: false, message: "必输项"},
{max: 50,message:"长度不能超过50"}
],
"trnmod.trndoc.amdapl":[
{type: "string", required: true, message: "必输项"},
{max: 50,message:"长度不能超过50"}
],
"trnmod.trndoc.advdoc":[
{type: "string", required: false, message: "必输项"},
{max: 1,message:"长度不能超过1"}
],
"trnmod.trndoc.filrecv":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"trnmod.trndoc.doctrestm":[
{type: "string", required: false, message: "必输项"},
{max: 1,message:"长度不能超过1"}
],
"trnmod.trndoc.condocstm":[
{type: "string", required: false, message: "必输项"},
{max: 1,message:"长度不能超过1"}
],
"trnmod.trndoc.rcvatt.seainf":[
{type: "string", required: false, message: "必输项"},
{max: 3,message:"长度不能超过3"}
],
"liaall.limmod.ecifno":[
{type: "string", required: false, message: "必输项"},
{max: 22,message:"长度不能超过22"}
],
"liaall.limmod.ownref":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"liaall.limmod.wrkp.ptsget.sdamod.dadsnd":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"liaall.limmod.othp.ptsget.sdamod.dadsnd":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"liaall.limmod.limpts.wrk.pts.extkey":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"liaall.limmod.wrkp.ptsget.sdamod.seainf":[
{type: "string", required: false, message: "必输项"},
{max: 3,message:"长度不能超过3"}
],
"liaall.limmod.limpts.oth.pts.extkey":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"liaall.limmod.othp.ptsget.sdamod.seainf":[
{type: "string", required: false, message: "必输项"},
{max: 3,message:"长度不能超过3"}
],
"liaall.limmod.comamt":[
{type: "number", required: false, message: "必输项"},
{max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
"liaall.limmod.limpts.wrk.pts.nam":[
{type: "string", required: false, message: "必输项"},
{max: 40,message:"长度不能超过40"}
],
"liaall.limmod.limpts.oth.pts.nam":[
{type: "string", required: false, message: "必输项"},
{max: 40,message:"长度不能超过40"}
],
"liaall.limmod.ccvamt":[
{type: "number", required: false, message: "必输项"},
{max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
"liaall.limmod.limpts.pfcod1":[
{type: "string", required: false, message: "必输项"},
{max: 14,message:"长度不能超过14"}
],
"liaall.limmod.limpts.pfcod2":[
{type: "string", required: false, message: "必输项"},
{max: 14,message:"长度不能超过14"}
],
}
\ No newline at end of file
import Api from "~/service/Api"
import Pts from "../Common/Pts"
import Pub from "../Public"
export default class Gitenc{
constructor () {
this.data = {
aamgid:{
addamtflg:"",
},
gitp0:{
explab:"", // Label unlimited Validity .gitp0.explab
lialab:"", // Label unlimited lLability .gitp0.lialab
aplmullab:"", // Label, that is set, if there are multiple applicants .gitp0.aplmullab
expfldlab:"", // Label for Field Validity .gitp0.expfldlab
liafldlab:"", // Label for Field Lability .gitp0.liafldlab
recget:{
sdamod:{
seainf:"", // .gitp0.recget.sdamod.seainf
dadsnd:"", // Drag Drop Sender .gitp0.recget.sdamod.dadsnd
},
},
},
gidgrp:{
rec:{
ownref:"", // Reference .gidgrp.rec.ownref
nam:"", // Externally Displayed Name to Identify the Contract .gidgrp.rec.nam
hndtyp:"", // Handling Type .gidgrp.rec.hndtyp
gartyp:"", // Type of Undertaking .gidgrp.rec.gartyp
expdat:"", // Valid until .gidgrp.rec.expdat
liadat:"", // Liability until .gidgrp.rec.liadat
exptyp:"",
},
cbs:{
max:{
cur:"", // Currency .gidgrp.cbs.max.cur
amt:"", // Balance .gidgrp.cbs.max.amt
},
opn1:{
cur:"", // Currency .gidgrp.cbs.opn1.cur
amt:"", // Balance .gidgrp.cbs.opn1.amt
},
},
apl:{
pts:new Pts().data,
},
ben:{
pts:new Pts().data,
},
ctr:{
pts:new Pts().data,
},
iss:{
pts:new Pts().data,
},
},
// setmod:{
// refdat:"", // Reference Date .setmod.refdat
// docamttyplab:"", // settled amount description as label .setmod.docamttyplab
// retmsg:"", // Label showing Retry overflow condition .setmod.retmsg
// ref:"", // our reference .setmod.ref
// doccur:"", // document currency .setmod.doccur
// docamt:"", // document amount .setmod.docamt
// dspflg:"", // Type of settlement .setmod.dspflg
// xreflg:"", // Recalculate Rates .setmod.xreflg
// setglg:{
// labdspflg:"", // Label for Type of Settlement .setmod.setglg.labdspflg
// },
// zmqacclab:"", // 主�'�号LABEL .setmod.zmqacclab
// zmqacc:"", // 自�'�区主�'�号 .setmod.zmqacc
// },
// liaall:{
// liaccv:{
// newamt:"", // 合同金额 .liaall.liaccv.newamt
// concur:"", // 应付保证金金额 .liaall.liaccv.concur
// totcovamt:"", // 金额总和 .liaall.liaccv.totcovamt
// newresamt:"", // Reserved Amount .liaall.liaccv.newresamt
// addinf:"", // Additional Information .liaall.liaccv.addinf
// cshpct:"", // 保证金应收比例 .liaall.liaccv.cshpct
// relcshpct:"", // 保证金实收比例 .liaall.liaccv.relcshpct
// gleflg:"", // Create gle flag .liaall.liaccv.gleflg
// chgcurflg:"", // Change currency flag .liaall.liaccv.chgcurflg
// pctresamt:"", // reserve amount based percent .liaall.liaccv.pctresamt
// },
// limmod:{
// limpts:{
// wrklab:"", // Label .liaall.limmod.limpts.wrklab
// othlab:"", // Label .liaall.limmod.limpts.othlab
// othlabss:"", // Label .liaall.limmod.limpts.othlabss
// wrk:{
// pts:new Pts().data,
// },
// oth:{
// pts:new Pts().data,
// },
// lsh:"", // 合同流�'号 .liaall.limmod.limpts.lsh
// nonrevflg1:"", // Flag to Mark Non-revolving Limits .liaall.limmod.limpts.nonrevflg1
// pfcod1:"", // 合同流�'号 .liaall.limmod.limpts.pfcod1
// nonrevflg2:"", // Flag to Mark Non-revolving Limits .liaall.limmod.limpts.nonrevflg2
// pfcod2:"", // 合同流�'号 .liaall.limmod.limpts.pfcod2
// },
// wrkp:{
// ptsget:{
// sdamod:{
// dadsnd:"", // Drag Drop Sender .liaall.limmod.wrkp.ptsget.sdamod.dadsnd
// seainf:"", // .liaall.limmod.wrkp.ptsget.sdamod.seainf
// },
// },
// },
// othp:{
// ptsget:{
// sdamod:{
// dadsnd:"", // Drag Drop Sender .liaall.limmod.othp.ptsget.sdamod.dadsnd
// seainf:"", // .liaall.limmod.othp.ptsget.sdamod.seainf
// },
// },
// },
// ownref:"", // 国结业务编号 .liaall.limmod.ownref
// comamt:"", // 业务余额 .liaall.limmod.comamt
// ccvamt:"", // 保证金余额 .liaall.limmod.ccvamt
// ecifno:"", // ECIFNO .liaall.limmod.ecifno
// },
// },
dnfenc:{
stm8023:"", // 8023STREAM .dnfenc.stm8023
ccvtyp:"", // 操作类型 .dnfenc.ccvtyp
kehuzh:"", // 保证金账户 .dnfenc.kehuzh
zhruzh:"", // 本金转入账户 .dnfenc.zhruzh
zhqtyp:"", // 支取类型 .dnfenc.zhqtyp
tizamt:"", // 部分提支金额 .dnfenc.tizamt
zhhuye:"", // 帐户余额 .dnfenc.zhhuye
zhqucs:"", // 支取次数 .dnfenc.zhqucs
lxzyzh:"", // 利息转入账户 .dnfenc.lxzyzh
yewudh:"", // 业务代号 .dnfenc.yewudh
qicuje:"", // 起存金额 .dnfenc.qicuje
intdsp:"", // 利息转入账户 .dnfenc.intdsp
pridsp:"", // 本金转入账户 .dnfenc.pridsp
},
// mtabut:{
// coninf:{
// oitinf:{
// labinftxt:"", // Label for INFTXT .mtabut.coninf.oitinf.labinftxt
// oit:{
// inftxt:"", // Infotext .mtabut.coninf.oitinf.oit.inftxt
// inflev:"", // Infotext Level .mtabut.coninf.oitinf.oit.inflev
// },
// },
// oitset:{
// labinftxt:"", // Label for INFTXT .mtabut.coninf.oitset.labinftxt
// oit:{
// inftxt:"", // Infotext .mtabut.coninf.oitset.oit.inftxt
// inflev:"", // Infotext Level .mtabut.coninf.oitset.oit.inflev
// },
// },
// conexedat:"", // 执行日期 .mtabut.coninf.conexedat
// usr:{
// extkey:"", // User ID .mtabut.coninf.usr.extkey
// },
// },
// },
// trnmod:{
// trndoc:{
// advlabel:"", // ADVLABEL .trnmod.trndoc.advlabel
// 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
// },
// },
pageId: "", // ctx的key
trnmod: new Pub().data.Trnmod,
setmod: new Pub().data.Setmod,
liaall: new Pub().data.Liaall,
mtabut: new Pub().data.Mtabut,
}
}
}
\ No newline at end of file
......@@ -175,6 +175,7 @@ import Betsnd from "./Betsnd"
import Betcan from "./Betcan"
import Betset from "./Betset"
import Letnot from "./Letnot"
import Gitenc from "./Gitenc"
import Ditdav from "./Ditdav"
// import Infpty from "./Infpty"
......@@ -528,6 +529,7 @@ const BusRouter = [
{ path: 'gitcan', component: Gitcan, name: 'Gitcan', meta: { title: '进口保函注销' } },
{ path: 'gitcrj', component: Gitcrj, name: 'Gitcrj', meta: { title: '进口保函拒付' } },
{ path: 'gctcan', component: Gctcan, name: 'Gctcan', meta: { title: '保函赔付注销' } },
{ path: 'gitenc', component: Gitenc, name: 'Gitenc', meta: { title: '闭券后定期保证金处理' } },
{ path: 'getfre', component: Getfre, name: 'Getfre', meta: { title: '自由格式报文' } },
{ path: 'gitfre', component: Gitfre, name: 'Gitfre', meta: { title: '自由格式报文' } },
{ path: 'gitdla', component: Gitdla, name: 'Gitdla', meta: { title: '减额后处理' } },
......
......@@ -76,6 +76,9 @@ export default {
{
this.updateModel(rtnmsg.data)
//TODO 处理数据逻辑
if(this.isInDisplay){
this.restoreDisplay();
}
}
else
......
......@@ -6,7 +6,7 @@
<c-col :span="24">
<el-form-item label="Debit Party" prop="xxtfee.intmbu.umsrol">
<c-select v-model="model.xxtfee.intmbu.umsrol" style="width:100%"
:placeholder="$t('other.please_enter')+'Debit Party'">
:placeholder="$t('other.please_enter')+'Debit Party'" :code="getValues('xxtfee.intmbu.umsrol', 'rolall')">
</c-select>
</el-form-item>
</c-col>
......@@ -48,7 +48,7 @@
<c-col :span="24">
<el-form-item label="Credit Party" prop="xxtfee.intmbu.umhrol">
<c-select v-model="model.xxtfee.intmbu.umhrol" style="width:100%"
:placeholder="$t('other.please_enter')+'Credit Party'">
:placeholder="$t('other.please_enter')+'Credit Party'" :code="getValues('xxtfee.intmbu.umhrol', 'rolall')">
</c-select>
</el-form-item>
</c-col>
......
......@@ -66,24 +66,26 @@
style="width: 100%"
placeholder="请选择保函余额币种"
@keyup.enter.native="nom1CurEvent"
:code ="codes.cur"
>
<el-option
<!-- <el-option
v-for="item in codes.cur"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</el-option> -->
</c-select>
</el-form-item>
</c-col>
<c-col :span="8">
<el-form-item label-width="5px" prop="gidgrp.cbs.opn1.amt">
<c-input-currency
<c-input-currency-min
disabled
v-model="model.gidgrp.cbs.opn1.amt"
></c-input-currency>
></c-input-currency-min>
</el-form-item>
</c-col>
</c-col>
......@@ -120,7 +122,7 @@
v-model="model.gidgrp.rec.gartyp"
style="width: 100%"
placeholder="请选择保函类型"
:code="codes.typgar"
:code="codes.typgar5"
>
</c-select>
</el-form-item>
......@@ -154,13 +156,13 @@
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<c-col :span="9">
<el-form-item
style="text-align: left"
label-width="0"
prop="xxtfee.intmbu.umbflg"
>
<c-checkbox v-model="model.xxtfee.intmbu.umbflg" class=""
<c-checkbox v-model="model.xxtfee.intmbu.umbflg" class="" @change="eventFunction('xxtfee.intmbu.umbflg')"
>重新预定</c-checkbox
>
</el-form-item>
......
......@@ -5,9 +5,6 @@
<m-gitsetp1 :model="model" :codes="codes" />
</el-collapse-item>
</el-collapse>
<el-collapse v-model="activeNames" @change="handleChange">
<el-collapse-item title="重新预定" name="cltrns" v-if="model.xxtfee.intmbu.umbflg">
<m-cltrns :model="model" :codes="codes" />
</el-collapse-item>
......@@ -23,7 +20,7 @@
import Event from "~/model/Getfee/Event";
import Gitsetp1 from "./Gitsetp1";
import Cltrns from "./Cltrns";
export default {
components:{
"m-gitsetp1" : Gitsetp1,
......@@ -41,7 +38,8 @@
};
},
methods: { ...Event },
methods: { ...Event,
},
created: function () {},
};
</script>
......
......@@ -145,7 +145,8 @@ export default {
pattern: Pattern,
rules: null,
codes: {
},
...CodeTable,
},
}
},
methods:{
......
......@@ -375,8 +375,6 @@
@change="eventFunction('fremsg.msgrol')"
:code="codes.payrol"
>
<!-- <el-option v-for="item in codes.docprbrol" :key="item.value" :label="item.label" :value="item.value">
</el-option> -->
</c-select>
</el-form-item>
</c-col>
......
......@@ -52,7 +52,6 @@
></c-input>
<template slot="footer">
<c-button
style="margin: 0 10px 0 10px; padding: 0 12px"
size="small"
type="primary"
>
......@@ -133,7 +132,6 @@
></c-input>
<template slot="footer">
<c-button
style="margin: 0 10px 0 10px; padding: 0 12px"
size="small"
type="primary"
>
......
......@@ -192,8 +192,8 @@
created: function () {},
};
</script>
<style>
.ql-editor {
<style scoped>
.quill-editor >>> .ql-editor {
min-height: 250px;
max-height: 500px;
}
......
......@@ -154,6 +154,10 @@
created: function () {},
};
</script>
<style>
<style scoped>
.quill-editor >>> .ql-editor {
min-height: 250px;
max-height: 500px;
}
</style>
\ No newline at end of file
......@@ -722,7 +722,6 @@
</c-input>
<template slot="footer">
<c-button
style="margin: 0 10px 0 10px; padding: 0 12px"
size="small"
type="primary"
>
......@@ -797,7 +796,6 @@
</c-input>
<template slot="footer">
<c-button
style="margin: 0 10px 0 10px; padding: 0 12px"
size="small"
type="primary"
>
......@@ -870,7 +868,6 @@
></c-input>
<template slot="footer">
<c-button
style="margin: 0 10px 0 10px; padding: 0 12px"
size="small"
type="primary"
>
......@@ -944,7 +941,6 @@
></c-input>
<template slot="footer">
<c-button
style="margin: 0 10px 0 10px; padding: 0 12px"
size="small"
type="primary"
>
......
......@@ -27,7 +27,6 @@
></c-input>
<template slot="footer">
<c-button
style="margin: 0 10px 0 10px; padding: 0 12px"
size="small"
type="primary"
>
......@@ -78,7 +77,6 @@
></c-input>
<template slot="footer">
<c-button
style="margin: 0 10px 0 10px; padding: 0 12px"
size="small"
type="primary"
>
......@@ -132,7 +130,6 @@
></c-input>
<template slot="footer">
<c-button
style="margin: 0 10px 0 10px; padding: 0 12px"
size="small"
type="primary"
>
......@@ -184,7 +181,6 @@
<template slot="footer">
<c-button
style="margin: 0 10px 0 10px; padding: 0 12px"
size="small"
type="primary"
>
......@@ -244,7 +240,6 @@
></c-input>
<template slot="footer">
<c-button
style="margin: 0 10px 0 10px; padding: 0 12px"
size="small"
type="primary"
>
......@@ -303,7 +298,6 @@
></c-input>
<template slot="footer">
<c-button
style="margin: 0 10px 0 10px; padding: 0 12px"
size="small"
type="primary"
icon="el-icon-search"
......
<template>
<div class="eibs-tab">
<el-collapse v-model="activeNames" @change="handleChange">
<el-collapse-item title="附言" name="coninfp">
<m-coninfp :model="model" :codes="codes" />
</el-collapse-item>
</el-collapse>
</div>
</template>
<script>
import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess";
import Event from "~/model/Gitenc/Event";
import Coninfp from "~/views/Public/Coninfp";
export default {
components: {
"m-coninfp": Coninfp,
},
inject: ["root"],
props: ["model", "codes"],
mixins: [commonProcess],
data() {
return {
activeNames: ["coninfp"],
};
},
methods: {
...Event,
handleChange(val) {
console.log(val);
},
},
created: function () {},
};
</script>
<style>
</style>
<template>
<div class="eibs">
<c-col :span="12" class="col-left">
<!-- S0000004 : 保证金账户 -->
<c-col :span="24">
<el-form-item label="保证金账户" prop="dnfenc.kehuzh">
<c-input v-model="model.dnfenc.kehuzh" style="width:100%" placeholder="请输入保证金账户">
</c-input>
</el-form-item>
</c-col>
<!-- S0000102 : 支取类型 -->
<c-col :span="24">
<el-form-item label="支取类型" prop="dnfenc.zhqtyp">
<c-select v-model="model.dnfenc.zhqtyp" style="width:100%" placeholder="请选择支取类型">
</c-select>
</el-form-item>
</c-col>
<!-- S0000103 : 部分提支金额 -->
<c-col :span="24">
<c-form-item label="部分提支金额" prop="dnfenc.tizamt">
<c-input v-model="model.dnfenc.tizamt" placeholder="请输入部分提支金额"></c-input>
</c-form-item>
</c-col>
<!-- S0000026 : 本金转入账户 -->
<c-col :span="24">
<c-col :span="12">
<el-form-item label="本金转入账户" prop="dnfenc.pridsp">
<c-input v-model="model.dnfenc.pridsp" style="width:100%" placeholder=""></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="" prop="dnfenc.zhruzh" label-width="10px">
<c-input v-model="model.dnfenc.zhruzh" style="width:100%" placeholder="">
</c-input>
</el-form-item>
</c-col>
</c-col>
<!-- S0000106 : 利息转入账户 -->
<c-col :span="24">
<c-col :span="12">
<el-form-item label="利息转入账户" prop="dnfenc.intdsp">
<c-input v-model="model.dnfenc.intdsp" style="width:100%" placeholder="">
</c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="" prop="dnfenc.lxzyzh" label-width="10px">
<c-input v-model="model.dnfenc.lxzyzh" style="width:100%" placeholder="">
</c-input>
</el-form-item>
</c-col>
</c-col>
</c-col>
<c-col :span="12" class="col-right">
<!-- S0000003 : 操作类型 -->
<c-col :span="24">
<el-form-item label="操作类型" prop="dnfenc.ccvtyp">
<c-select v-model="model.dnfenc.ccvtyp" style="width:100%" placeholder="请选择操作类型">
</c-select>
</el-form-item>
</c-col>
<!-- S0000105 : 支取次数 -->
<c-col :span="24">
<c-form-item label="支取次数" prop="dnfenc.zhqucs">
<c-input v-model="model.dnfenc.zhqucs" maxlength="2" placeholder="请输入支取次数"></c-input>
</c-form-item>
</c-col>
<!-- S0000108 : 业务代号 -->
<c-col :span="24">
<c-form-item label="业务代号" prop="dnfenc.yewudh">
<c-input v-model="model.dnfenc.yewudh" maxlength="4" placeholder="请输入业务代号"></c-input>
</c-form-item>
</c-col>
<!-- S0000111 : 起存金额 -->
<c-col :span="24">
<c-form-item label="起存金额" prop="dnfenc.qicuje">
<c-input v-model="model.dnfenc.qicuje" placeholder="请输入起存金额"></c-input>
</c-form-item>
</c-col>
<!-- S0000104 : 帐户余额 -->
<c-col :span="24">
<c-form-item label="帐户余额" prop="dnfenc.zhhuye">
<c-input v-model="model.dnfenc.zhhuye" placeholder="请输入帐户余额"></c-input>
</c-form-item>
</c-col>
</c-col>
<c-col :span="24" style="text-align: right">
<el-button
type="primary"
icon="el-icon-search"
size="small"
@click="onDnfencGet()"
>查询
</el-button>
</c-col>
<c-col :span="24" style="margin-bottom: 35px">
<c-istream-table
ref="table"
:list="model.dnfenc.stm8023.rows || []"
:columns="stmData.columns"
v-on:multipleSelect="multipleSelect"
prop="dnfenc.stm8023"
>
</c-istream-table>
</c-col>
<!-- <c-col :span="12">
<c-form-item label="8023STREAM" prop="dnfenc.stm8023">
<c-input v-model="model.dnfenc.stm8023" :placeholder="$t('other.please_enter')+'8023STREAM'"></c-input>
</c-form-item>
</c-col> -->
</div>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Gitenc/Event"
export default {
name: "",
inject: ["root"],
props:["model"],
data(){
return {
stmData:{
columns:[
'1 1 "账号" 155',
'2 2 "客户中文名" 155',
'3 3 "账务机构" 155',
'4 4 "业务代号" 155',
'5 5 "计息方法" 155',
'6 6 "利率编号" 155',
'7 7 "积数" 155',
]
},
}
},
methods:{...Event,
// async onSearch() {
// let rtnmsg = await this.executeRule("get")
// if (rtnmsg.respCode == SUCCESS) {
// //TODO 处理数据逻辑
// this.updateModel(rtnmsg.data);
// }
// else {
// this.$notify.error({ title: '错误', message: '服务请求失败!' });
// }
// },
},
created:function(){
}
}
</script>
<style>
</style>
<template>
<div class="eibs">
<c-row>
<!-- left -->
<c-col :span="12" style="padding-right: 20px">
<c-col :span="24">
<el-form-item label="保函编号" prop="gidgrp.rec.ownref">
<c-fullbox>
<c-input
v-model="model.gidgrp.rec.ownref"
maxlength="16"
disabled
></c-input>
<template slot="footer">
<!-- <el-form-item label="" label-width="5px"> -->
<c-button
style="margin: 0 10px 0 10px; padding: 0 12px"
size="small"
type="primary"
@click="onSeainf"
>
<i class="el-icon-info" style="font-size:15px"></i>
</c-button>
</template>
</c-fullbox>
</el-form-item>
</c-col>
</c-col>
<c-col :span="12" style="padding-left: 20px">
<c-col :span="24">
<el-form-item label="简略信息" prop="gidgrp.rec.nam">
<c-input
v-model="model.gidgrp.rec.nam"
maxlength="40"
placeholder="请输入简略信息"
disabled
></c-input>
</el-form-item>
</c-col>
</c-col>
</c-row>
<c-row>
<c-col :span="12" style="padding-right: 20px">
<c-col :span="24">
<c-col :span="12">
<el-form-item label="保函币种和金额" prop="gidgrp.cbs.max.cur">
<c-select
v-model="model.gidgrp.cbs.max.cur"
style="width: 100%"
placeholder="币种"
:code="codes.curtxt"
:disabled="true"
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="9">
<el-form-item style="text-align: left; margin-left: 5px"
label-width="0px" prop="gidgrp.cbs.max.amt">
<c-input-currency :disabled="true"
v-model="model.gidgrp.cbs.max.amt"
style="text-align: left; width: 90%"
placeholder="请输入金额"
></c-input-currency>
</el-form-item>
</c-col>
<c-col :span="3">
<template>
<c-checkbox :disabled="true"
v-model="model.aamgid.addamtflg"
style="float: right; text-align: center"
>附加金额</c-checkbox
>
</template>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="12">
<el-form-item label="保函余额" prop="gidgrp.cbs.opn1.cur">
<c-select
v-model="model.gidgrp.cbs.opn1.cur"
maxlength="3"
style="width: 100%"
placeholder="请输入币种"
:code="codes.curtxt"
disabled
></c-select>
</el-form-item>
</c-col>
<c-col :span="9">
<el-form-item style="text-align: left; margin-left: 5px"
label-width="0px"
prop="gidgrp.cbs.opn1.amt"
>
<c-input-currency
v-model="model.gidgrp.cbs.opn1.amt"
style="text-align: left; width: 90%"
placeholder="请输入金额"
disabled
></c-input-currency>
</el-form-item>
</c-col>
</c-col>
<c-col :span="24">
<el-form-item
label="接收目的"
prop="gidgrp.rec.purposin"
>
<c-select
disabled
v-model="model.gidgrp.rec.purposin"
style="width: 100%"
placeholder="请选择接收目的"
:code="codes.purposin"
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="支出目的" prop="gidgrp.rec.purpos">
<c-select
v-model="model.gidgrp.rec.purpos"
style="width: 100%"
placeholder="请选择支出目的"
:code="codes.purpos"
disabled
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="保函种类" prop="gidgrp.rec.gartyp">
<c-select
v-model="model.gidgrp.rec.gartyp"
style="width: 100%"
placeholder="请选择保函种类"
:code="codes.typgar"
disabled
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<c-col :span="12">
<el-form-item
label="保函效期"
prop="gidgrp.rec.expdat"
>
<c-date-picker
disabled
type="date"
v-model="model.gidgrp.rec.expdat"
style="width: 90%"
placeholder="请选择保函效期"
></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item style="text-align: left; margin-left: 5px"
label-width="0px"
prop="gidgrp.rec.exptyp"
>
<c-select
v-model="model.gidgrp.rec.exptyp"
:codes="codes.exptyp"
style="text-align: left; width: 100%"
placeholder="请选择到期类型"
disabled
></c-select>
</el-form-item>
</c-col>
</c-col>
<!-- <c-col :span="12">
<el-form-item
label="到期类型"
prop="gidgrp.rec.exptyp"
>
<c-select
v-model="model.gidgrp.rec.exptyp"
style="width: 100%"
placeholder="请选择到期类型"
@change="executeNotify(null, true)"
>
<el-option
v-for="item in codes.exptyp"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</c-select>
</el-form-item>
</c-col> -->
</c-col>
<c-col :span="12" style="padding-left: 20px">
<c-col :span="24">
<c-form-item label="申请人" prop="gidgrp.apl.pts.nam">
<c-input v-model="model.gidgrp.apl.pts.nam" maxlength="40" disabled></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item label="受益人" prop="gidgrp.ben.pts.nam">
<c-input v-model="model.gidgrp.ben.pts.nam" maxlength="40" disabled></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item label="帐户行" prop="gidgrp.ctr.pts.nam">
<c-input v-model="model.gidgrp.ctr.nam" maxlength="40" disabled></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item label="开证行" prop="gidgrp.iss.pts.nam">
<c-input v-model="model.gidgrp.iss.pts.nam" maxlength="40" disabled></c-input>
</c-form-item>
</c-col>
</c-col>
</c-row>
<c-row>
<c-col :span="12" style="padding-right: 20px">
<c-col :span="24">
<c-col :span="12">
<el-form-item
label="保函开立日期"
prop="setmod.refdat"
>
<c-date-picker
disabled
type="date"
v-model="model.setmod.refdat"
style="width: 90%"
placeholder="请选择保函开立日期"
></c-date-picker>
</el-form-item>
</c-col>
</c-col>
</c-col>
</c-row>
</div>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Gitenc/Event"
export default {
inject: ['root'],
props:["model","codes"],
mixins: [commonProcess],
data(){
return {
}
},
methods:{...Event},
created:function(){
}
}
</script>
<style>
</style>
<template>
<div class="eibs-tab">
<el-collapse v-model="activeNames" @change="handleChange">
<el-collapse-item title="基本信息" name="gitsetp1">
<m-gitsetp1 :model="model" :codes="codes"/>
</el-collapse-item>
<el-collapse-item title="保证金接口" name="dnfp">
<m-dnfp :model="model" :codes="codes"/>
</el-collapse-item>
</el-collapse>
</div>
</template>
<script>
import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Gitenc/Event";
import Gitsetp1 from "./Gitsetp1"
import Dnfp from "./Dnfp"
export default {
components: {
"m-gitsetp1" : Gitsetp1,
"m-dnfp" : Dnfp,
},
inject: ["root"],
props: ["model", "codes"],
mixins: [commonProcess],
data() {
return {
activeNames: ["gitsetp1"],
};
},
methods: {
...Event,
handleChange(val) {
console.log(val);
},
},
created: function () {},
computed: {
},
};
</script>
<style>
</style>
<template>
<div class="eContainer">
<c-page title="闭券后定期保证金处理">
<el-form :model="model" :rules="rules" ref="modelForm" label-width="120px" label-position="right" size="small" :validate-on-rule-change="false">
<c-tabs v-model="tabVal" ref="elment" type="card" @tab-click="myTabClick">
<!--gitenc PD000019 Charges -->
<!-- <el-tab-pane :label="$t('gitenc.PD000019')" name="gitsetp1">
<m-gitsetp1 :model="model" :codes="codes"/>
</el-tab-pane> -->
<el-tab-pane label="业务信息" name="ovwp">
<c-content>
<m-ovwp :model="model" :codes="codes"/>
</c-content>
</el-tab-pane>
<!--liaccv PD000001 Cash Cover -->
<el-tab-pane label="保证金" name="ccvpan">
<c-content>
<m-ccvpan :model="model" :codes="codes"/>
</c-content>
</el-tab-pane>
<!--limmod PD000001 统一授信 -->
<el-tab-pane label="统一授信" name="limitbody">
<c-content>
<m-limitbody :model="model" :codes="codes"/>
</c-content>
</el-tab-pane>
<el-tab-pane label="费用/账务" name="setpan">
<c-content>
<div class="eibs-tab">
<el-collapse v-model="activeNames">
<el-collapse-item title="结算" name="setpan">
<!-- 结算 -->
<m-setpan :model="model" :codes="codes" />
</el-collapse-item>
</el-collapse>
</div>
</c-content>
</el-tab-pane>
<!--dnfenc PD000001 保证金接口 -->
<!-- <el-tab-pane :label="保证金接口" name="dnfp">
<m-dnfp :model="model" :codes="codes"/>
</el-tab-pane> -->
<!--coninf PD000000 Completion -->
<el-tab-pane label="备查/附言" name="addbcb">
<c-content>
<m-addbcb :model="model" :codes="codes" />
</c-content>
</el-tab-pane>
<!--trndoc PD000529 &Messages -->
<el-tab-pane label="报文/面函" name="docpan">
<c-content>
<m-docpan :model="model" :codes="codes"/>
</c-content>
</el-tab-pane>
<!--trndoc PD000546 Attachments -->
<el-tab-pane label="附件信息" name="doctre">
<c-content>
<m-doctre :model="model" :codes="codes"/>
</c-content>
</el-tab-pane>
</c-tabs>
<c-grid-ety-prompt-dialog
ref="etyDialog"
:promptData="promptData"
@select-ety="selectEty"
>
</c-grid-ety-prompt-dialog>
<c-grid-ety-prompt-dialog
ref="doxpDialog"
:isPty="false"
:promptData="promptData"
@select-ety="selectMsg"
>
</c-grid-ety-prompt-dialog>
<c-function-btn
:handleSubmit="handleSubmit"
:handleCheck="handleCheck"
:handleStash="handleStash"
>
</c-function-btn>
</el-form>
</c-page>
</div>
</template>
<script>
import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable"
import Gitenc from "~/model/Gitenc"
import commonFuncs from "~/mixin/commonFuncs";
import commonProcess from "~/mixin/commonProcess"
import Check from "~/model/Gitenc/Check"
import Default from "~/model/Gitenc/Default"
import Pattern from "~/model/Gitenc/Pattern"
import Ccvpan from "~/views/Public/Ccvpan"
import Limitbody from "~/views/Public/Limitbody"
import Setpan from "~/views/Public/Setpan"
import Docpan from "~/views/Public/Docpan"
import Doctre from "~/views/Public/Doctre"
import Addbcb from "./Addbcb"
import Ovwp from './Ovwp'
export default {
name: "Gitenc",
components:{
"m-ovwp" : Ovwp,
"m-ccvpan" : Ccvpan,
"m-setpan" : Setpan,
"m-addbcb" : Addbcb,
"m-docpan" : Docpan,
"m-doctre" : Doctre,
"m-limitbody" : Limitbody,
},
provide() {
return {
root: this
}
},
mixins: [commonProcess, commonFuncs], // 里面包含了Default、Check等的公共处理
data(){
return {
tabVal: "ovwp",
trnName: "gitenc",
model: new Gitenc().data,
checkRules: Check,
defaultRules: Default,
pattern: Pattern,
rules: null,
codes: {...CodeTable},
activeNames: ["setpan"],
}
},
methods:{
myTabClick(tab){
this.tabClick(tab)
/**
* do it yourself
**/
}
},
created:async function(){
console.log("进入gitenc交易");
let rtnmsg = await this.init({})
if(rtnmsg.respCode == SUCCESS)
{
this.updateModel(rtnmsg.data);
if (this.isInDisplay) {
this.restoreDisplay();
}
//TODO 处理数据逻辑
}
else
{
this.$notify.error({title: '错误',message: '服务请求失败!'});
}
}
}
</script>
<style>
</style>
......@@ -5,7 +5,7 @@
<!-- SF000009 : Debit Party -->
<c-col :span="24">
<el-form-item label="Debit Party" prop="xxtfee.intmbu.umsrol">
<c-select v-model="model.xxtfee.intmbu.umsrol" style="width:100%"
<c-select disabled v-model="model.xxtfee.intmbu.umsrol" style="width:100%"
:placeholder="$t('other.please_enter')+'Debit Party'">
</c-select>
</el-form-item>
......@@ -19,11 +19,11 @@
<c-col :span="24">
<el-form-item label="External Key of Address" prop="xxtfee.intmbu.ums.pts.extkey">
<c-fullbox>
<c-input
v-model="model.xxtfee.intmbu.ums.pts.extkey"
maxlength="16"
placeholder="请输入"
@keyup.enter.native="showGridPromptDialog(`xxtfee.intmbu.ums.pts.extkey`)"
<c-input disabled
v-model="model.xxtfee.intmbu.ums.pts.extkey"
maxlength="16"
placeholder="请输入"
@keyup.enter.native="showGridPromptDialog(`xxtfee.intmbu.ums.pts.extkey`)"
></c-input>
<template v-slot:footer>
<c-button style="margin: 0 10px 0 10px; padding: 0 12px" size="small" type="primary">
......@@ -47,7 +47,7 @@
<!-- SF000007 : Credit Party -->
<c-col :span="24">
<el-form-item label="Credit Party" prop="xxtfee.intmbu.umhrol">
<c-select v-model="model.xxtfee.intmbu.umhrol" style="width:100%"
<c-select disabled v-model="model.xxtfee.intmbu.umhrol" style="width:100%"
:placeholder="$t('other.please_enter')+'Credit Party'">
</c-select>
</el-form-item>
......@@ -61,11 +61,11 @@
<c-col :span="24">
<el-form-item label="External Key of Address" prop="xxtfee.intmbu.umh.pts.extkey">
<c-fullbox>
<c-input
v-model="model.xxtfee.intmbu.umh.pts.extkey"
maxlength="16"
placeholder="请输入"
@keyup.enter.native="showGridPromptDialog(`xxtfee.intmbu.umh.pts.extkey`)"
<c-input disabled
v-model="model.xxtfee.intmbu.umh.pts.extkey"
maxlength="16"
placeholder="请输入"
@keyup.enter.native="showGridPromptDialog(`xxtfee.intmbu.umh.pts.extkey`)"
></c-input>
<template v-slot:footer>
<c-button style="margin: 0 10px 0 10px; padding: 0 12px" size="small" type="primary">
......
......@@ -19,9 +19,8 @@
<c-col :span="24">
<c-col :span="12">
<el-form-item label="保函币种和金额" prop="gidgrp.cbs.max.cur">
<c-select disabled v-model="model.gidgrp.cbs.max.cur" style="width: 100%" placeholder="请选择币种">
<el-option v-for="item in codes.cur" :key="item.value" :label="item.label" :value="item.value">
</el-option>
<c-select disabled v-model="model.gidgrp.cbs.max.cur" style="width: 100%" :code="codes.cur"
placeholder="请选择币种">
</c-select>
</el-form-item>
</c-col>
......
......@@ -31,6 +31,7 @@
<el-form-item label="" prop="fremsg.iss.pts.extkey">
<c-fullbox>
<c-input v-model="model.fremsg.iss.pts.extkey" maxlength="16" placeholder="请输入"
:disabled="model.fremsg.issrol!=''"
@keyup.enter.native="
showGridPromptDialog('fremsg.iss.pts.extkey')
"></c-input>
......@@ -49,6 +50,7 @@
<c-col :span="24">
<el-form-item label="" prop="fremsg.iss.pts.adrblk">
<c-input :rows="4" type="textarea" v-model="model.fremsg.iss.pts.adrblk"
:disabled="model.fremsg.issrol!=''"
maxlength="300" show-word-limit placeholder="请输入">
</c-input>
</el-form-item>
......
<template>
<div class="eibs-tab">
<el-collapse v-model="activeNames" @change="handleChange">
<el-collapse-item title="公共报文" name="Gitfrep1">
<el-collapse-item title="公共报文" name="gitfrep1">
<m-gitfrep1 :model="model" :codes="codes" />
</el-collapse-item>
<el-collapse-item title="Mt759报文详情" name="Mt759p" v-if="model.fremsg.sndmt=='59'">
......
......@@ -126,6 +126,9 @@ export default {
if (rtnmsg.respCode == SUCCESS) {
this.updateModel(rtnmsg.data)
//TODO 处理数据逻辑
if(this.isInDisplay){
this.restoreDisplay();
}
} else {
this.$notify.error({title: '错误', message: '服务请求失败!'});
......
......@@ -81,8 +81,10 @@
</c-content>
</el-tab-pane>
<!--trndoc PD000546 Attachments -->
<el-tab-pane label="交易附件" name="doctre">
<m-doctre :model="model" :codes="codes" />
<el-tab-pane label="附件信息" name="doctre">
<c-content>
<m-doctre :model="model" :codes="codes" />
</c-content>
</el-tab-pane>
</c-tabs>
</el-form>
......
<template>
<ReviewWrapper>
<Bttcan></Bttcan>
</ReviewWrapper>
</template>
<script>
import Bttcan from "~/views/Business/Bttcan";
import { ReviewWrapper } from "~/components/gj-common.min.js";
export default {
name: "ReviewBttcan",
components: { ReviewWrapper, Bttcan },
created() {},
mounted() {},
};
</script>
<style></style>
\ No newline at end of file
<template>
<ReviewWrapper>
<Bttdck></Bttdck>
</ReviewWrapper>
</template>
<script>
import Bttdck from "~/views/Business/Bttdck";
import { ReviewWrapper } from "~/components/gj-common.min.js";
export default {
name: "ReviewBttdck",
components: { ReviewWrapper, Bttdck },
created() {},
mounted() {},
};
</script>
<style></style>
\ No newline at end of file
<template>
<ReviewWrapper>
<Bttdcr></Bttdcr>
</ReviewWrapper>
</template>
<script>
import Bttdcr from "~/views/Business/Bttdcr";
import { ReviewWrapper } from "~/components/gj-common.min.js";
export default {
name: "ReviewBttdcr",
components: { ReviewWrapper, Bttdcr },
created() {},
mounted() {},
};
</script>
<style></style>
\ No newline at end of file
<template>
<ReviewWrapper>
<Bttdrv></Bttdrv>
</ReviewWrapper>
</template>
<script>
import Bttdrv from "~/views/Business/Bttdrv";
import { ReviewWrapper } from "~/components/gj-common.min.js";
export default {
name: "ReviewBttdrv",
components: { ReviewWrapper, Bttdrv },
created() {},
mounted() {},
};
</script>
<style></style>
\ No newline at end of file
<template>
<ReviewWrapper>
<Getfre></Getfre>
</ReviewWrapper>
</template>
<script>
import Getfre from "~/views/Business/Getfre";
import { ReviewWrapper } from "~/components/gj-common.min.js";
export default {
name: "ReviewGetfre",
components: { ReviewWrapper, Getfre },
created() {},
mounted() {},
};
</script>
<style></style>
\ No newline at end of file
<template>
<ReviewWrapper>
<Gitenc></Gitenc>
</ReviewWrapper>
</template>
<script>
import Gitenc from "~/views/Business/Gitenc";
import { ReviewWrapper } from "~/components/gj-common.min.js";
export default {
name: "ReviewGitenc",
components: { ReviewWrapper, Gitenc },
created() {},
mounted() {},
};
</script>
<style></style>
\ No newline at end of file
......@@ -3,6 +3,7 @@ import ReviewGitfee from "./Business/ReviewGitfee.vue";
import ReviewGitpca from "./Business/ReviewGitpca.vue";
import ReviewGitfre from "./Business/ReviewGitfre.vue";
import ReviewGetfee from "./Business/ReviewGetfee.vue";
import ReviewGetfre from "./Business/ReviewGetfre.vue";
import ReviewGitatt from "./Business/ReviewGitatt.vue";
import ReviewDitopn from "./Business/ReviewDitopn.vue";
import ReviewDitdck from "./Business/ReviewDitdck.vue";
......@@ -120,6 +121,7 @@ import ReviewGitcan from "./Business/ReviewGitcan.vue";
import ReviewGitcrj from "./Business/ReviewGitcrj.vue";
import ReviewGitset from "./Business/ReviewGitset.vue";
import ReviewGctcan from "./Business/ReviewGctcan.vue";
import ReviewGitenc from "./Business/ReviewGitenc.vue";
import ReviewGiteng from "./Business/ReviewGiteng.vue";
import ReviewGitplb from "./Business/ReviewGitplb.vue";
import ReviewGitadd from "./Business/ReviewGitadd.vue";
......@@ -127,6 +129,10 @@ import ReviewGitdla from "./Business/ReviewGitdla.vue";
import ReviewBttrcl from "./Business/ReviewBttrcl.vue";
import ReviewBttset from "./Business/ReviewBttset.vue";
import ReviewBttdcr from "./Business/ReviewBttdcr.vue";
import ReviewBttdrv from "./Business/ReviewBttdrv.vue";
import ReviewBttcan from "./Business/ReviewBttcan.vue";
import ReviewBttdck from "./Business/ReviewBttdck.vue";
......@@ -136,6 +142,7 @@ const ReviewRouter = [
{ path: "gitfee", component:ReviewGitfee, name: "ReviewGitfee", meta: { title:"复核-进口保函收费"} },
{ path: "gitpca", component:ReviewGitpca, name: "ReviewGitpca", meta: { title:"复核-关税保函预注销"} },
{ path: "getfee", component:ReviewGetfee, name: "ReviewGetfee", meta: { title:"复核-附加传入信息"} },
{ path: "getfre", component:ReviewGetfre, name: "ReviewGetfre", meta: { title:"复核-自由格式报文"} },
{ path: "gitatt", component:ReviewGitatt, name: "ReviewGitatt", meta: { title:"复核-绑定电子凭证"} },
{ path: "ditopn", component: ReviewDitopn, name: "ReviewDitopn", meta: { title: "复核-买方信用证开立" } },
{ path: "ditdck", component: ReviewDitdck, name: "ReviewDitdck", meta: { title: "复核-买方信用证到单" } },
......@@ -266,6 +273,7 @@ const ReviewRouter = [
{ path: "gitset", component: ReviewGitset, name: "ReviewGitset", meta: { title: "复核-Gitset" } },
{ path: "gitcrj", component: ReviewGitcrj, name: "ReviewGitcrj", meta: { title: "复核-Gitcrj" } },
{ path: "gctcan", component: ReviewGctcan, name: "ReviewGctcan", meta: { title: "复核-Gctcan" } },
{ path: "gitenc", component: ReviewGitenc, name: "ReviewGitenc", meta: { title: "复核-Gitenc" } },
{ path: "giteng", component: ReviewGiteng, name: "ReviewGiteng", meta: { title: "复核-Giteng" } },
{ path: "gitplb", component: ReviewGitplb, name: "ReviewGitplb", meta: { title: "复核-Gitplb" } },
{ path: "gitfre", component: ReviewGitfre, name: "ReviewGitfre", meta: { title: "复核-Gitfre" } },
......@@ -274,6 +282,10 @@ const ReviewRouter = [
{ path: "bttrcl", component: ReviewBttrcl, name: "ReviewBttrcl", meta: { title: "复核-Bttrcl" } },
{ path: "bttset", component: ReviewBttset, name: "ReviewBttset", meta: { title: "复核-Bttset" } },
{ path: "bttdcr", component: ReviewBttdcr, name: "ReviewBttdcr", meta: { title: "复核-Bttdcr" } },
{ path: "bttdrv", component: ReviewBttdrv, name: "ReviewBttdrv", meta: { title: "复核-Bttdrv" } },
{ path: "bttcan", component: ReviewBttcan, name: "ReviewBttcan", meta: { title: "复核-Bttcan" } },
{ path: "bttdck", component: ReviewBttdck, name: "ReviewBttdck", meta: { title: "复核-Bttdck" } },
......
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