Commit 6845465a by wanggang_yf

brtset 前端页面调整

parent 40e837eb
export default {
buildPtspta (ptsptaObj) {
let pts = ptsptaObj.pts;
let ptspta = {
rol: pts.rol,
name: pts.nam,
ptyinr: pts.ptyinr,
ptainr: pts.ptainr,
extkey: pts.extkey,
dftdsp: pts.dftdsp,
dftcur: pts.dftcur,
dftact: pts.dftact,
dftfeecur: pts.dftfeecur,
dftactptainr: pts.dftactptainr,
glggrpflg: pts.glggrpflg,
adrblk: pts.adrblk
};
return ptspta;
},
buildCommonData (model, trnName) {
let ptsptaList = [];
if (model.gidgrp.apl.pts.extkey) {
ptsptaList.push(this.buildPtspta(model.gidgrp.apl));
}
if (model.gidgrp.adv.pts.extkey) {
ptsptaList.push(this.buildPtspta(model.gidgrp.adv));
}
if (model.gidgrp.ben.pts.extkey) {
ptsptaList.push(this.buildPtspta(model.gidgrp.ben));
}
let dataObj = {
rec: {
objtyp: 'GID',
ownref: model.gidgrp.rec.ownref,
opndat: model.gidgrp.rec.opndat,
expdat: model.gidgrp.rec.expdat,
branchInr: model.gidgrp.rec.branchInr,
hndtyp: model.gidgrp.rec.hndtyp,
gartyp: model.gidgrp.rec.gartyp,
fingua: model.gidgrp.rec.fingua,
segtyp: model.gidgrp.ghd.segtyp,
fromflg: model.gidgrp.rec.fromflg,
othersno: model.gidgrp.rec.othersno,
sndto: model.gidgrp.rec.sndto,
swiftflg: model.gitp.swiftflg,
giduil: model.gidgrp.rec.giduil,
purpos: model.gidgrp.rec.purpos,
revflg: model.gidgrp.rec.revflg,
cnfsta: model.gidgrp.rec.cnfsta,
},
cbsMap: {
MAX: model.gidgrp.cbs.max,
OPN1: model.gidgrp.cbs.opn1,
MAC: model.gidgrp.cbs.mac,
MAC2: model.gidgrp.cbs.mac2,
OPC2: model.gidgrp.cbs.opc2,
CNF: model.gidgrp.cbs.cnf,
},
ptsList: ptsptaList,
transName: trnName,
userId: window.sessionStorage.userId ? window.sessionStorage.userId : 'ZL'
};
return dataObj
},
buildSetfeg (model, trnName) {
let params = {
...this.buildCommonData(model, trnName),
liaall: model.liaall,
liaccv: model.liaccv,
doceot: model.trnmod.trndoc.doceot,
};
return params
},
buildSetglg (model, trnName) {
let params = {
...this.buildCommonData(model, trnName),
setfeg: model.setmod.setfeg,
liaall: model.liaall,
liaccv: model.liaccv,
};
return params
},
buildGlentry (model, trnName) {
let params = {
...this.buildCommonData(model, trnName),
liaallg: model.liaall.liaallg,
setfog: model.setmod.setfog,
setfeg: model.setmod.setfeg,
setglg: model.setmod.setglg,
};
return params
},
buildEngp (model, trnName) {
let params = {
...this.buildCommonData(model, trnName),
liaallg: model.liaall.liaallg,
};
return params
},
buildDocpan (model, trnName) {
let params = {
...this.buildCommonData(model, trnName),
};
return params
},
buildCcvpan (model, trnName) {
let params = {
...this.buildCommonData(model, trnName),
liaccvg: model.liaccv.liaccvg,
oldamt: model.liaccv.oldamt,
chgamt: model.liaccv.chgamt,
concur: model.liaccv.concur,
};
return params
},
buildLimitbody (model, trnName) {
let params = {
...this.buildCommonData(model, trnName),
rec: {
objtyp: 'GID',
objinr: model.gidgrp.rec.objinr,
ownref: model.gidgrp.rec.ownref,
},
};
return params
},
buildDoctre (model, trnName) {
let params = {
...this.buildCommonData(model, trnName),
rec: {
objtyp: 'GID',
objinr: model.gidgrp.rec.objinr,
ownref: model.gidgrp.rec.ownref,
swiftflg: model.gitp.swiftflg,
},
};
return params
},
// 公共组件setmod中dsp字段改变,触发联动时候的入参
buildSetgllAccts (model, trnName, setglg) {
let params = {
...this.buildCommonData(model, trnName),
setglg
};
return params
}
}
\ No newline at end of file
import Api from '~/service/Api';
import commonFunctions from '~/mixin/commonFunctions.js';
import buildFn from './buildCommons.js';
import setmod from '~/components/business/setmod/event';
import glentry from '~/components/business/glentry/event';
import engp from '~/components/business/engp/event';
import docpan from '~/components/business/docpan/event';
import ccvpan from '~/components/business/ccvpan/event';
import limitbody from '~/components/business/limitbody/event';
import doctre from '~/components/business/doctre/event';
import Utils from "~/utils"
export default {
mixins: [commonFunctions],
methods: {
...setmod,
...glentry,
...engp,
...docpan,
...ccvpan,
...limitbody,
...doctre,
async init () {
const params = {
spt: JSON.parse(localStorage.getItem('row_' + this.trnName))
}
const res = await Api.post('/service/brtset/init', {
...params,
transName: this.trnName,
userId: window.sessionStorage.userId || 'ZL',
});
if (!res.data) {
return
}
this.copyValueFromVoData(this.model, res.data)
this.copyValueFromVoData(this.model.setmod.setfeg, res.data.setfeg)
this.copyValueFromVoData(this.model.setmod.setfog, res.data.setfog)
this.copyValueFromVoData(this.model.setmod.setglg, res.data.setglg)
},
// 兼容处理在前端model中定义了字段,后端返回的数据中不存在字段的问题
copyValueFromVoData (model, data) {
let keysList = Object.keys(model)
keysList.map((key) => {
if (data[key]) {
if (Utils.typeOf(model[key]) === 'Object') {
this.copyValueFromVoData(model[key], data[key])
} else {
this.$set(model, key, data[key])
}
}
})
},
async tabClick(tab) {
if (this.isInDisplay) {
return;
}
let name = tab.name;
switch (name) {
case 'ccvpan':
let ccvpanRequest = buildFn.buildCcvpan(this.model, this.trnName);
this.processLiaccv(ccvpanRequest);
break;
case 'engp':
let engpRequest = buildFn.buildEngp(this.model, this.trnName);
this.processLiaall(engpRequest);
break;
case 'setpan':
let setfegRequest = buildFn.buildSetfeg(this.model, this.trnName);
// 此处利用回调是为了等setfeg的接口调用完成后才去获取setglg参数,由于setglg参数依赖于setfeg函数的返回值
this.processSetpan(setfegRequest, () => {
return buildFn.buildSetglg(this.model, this.trnName);
});
break;
case 'docpan':
let docpanRequest = buildFn.buildDocpan(this.model, this.trnName);
this.processTrndoc(docpanRequest);
break;
case 'glepan':
let glentryRequest = buildFn.buildGlentry(this.model, this.trnName);
this.processGlentry(glentryRequest);
break;
case 'limitbody':
let limitbodyRequest = buildFn.buildLimitbody(this.model, this.trnName);
this.processLimitbody(limitbodyRequest);
break;
case 'doctre':
let doctreRequest = buildFn.buildDoctre(this.model, this.trnName);
this.processDoctre(doctreRequest);
break;
default:
return;
}
},
// 点击获取按钮拉取当前key字段下的表单数据
queryFormData(key) {
console.log(key);
},
// 业务信息=》基本信息=》保函编号-----获取保函编号
async queryOwnref() {
let params = {
ptainr: this.model.gidgrp.apl.pts.ptainr,
businessType: 'LG',
tbl: 'LG',
};
const loading = this.loading();
let res = await Api.post('/service/brtset/getOwnRef', params);
if (res.respCode == SUCCESS) {
loading.close();
this.model.gidgrp.rec.ownref = res.data;
}
},
// 获取gitopn弹框表格数据
async queryGridEtyPromptDialogData(type, ptytyp) {
let params = {
userId: window.sessionStorage.userId || 'ZL',
ptytyp: ptytyp,
extkey: this.model.gidgrp[type.toLowerCase()].pts.extkey,
};
let res = await Api.post('/service/ptspta/list', params);
if (res.respCode == SUCCESS) {
this.root.$refs['etyDialog'].show = true;
this.root.promptData.data = res.data.ptaInfos;
this.root.promptData.type = type;
}
},
// 选中gitopn弹框表格的行数据
async selectGridEtyPromptData(row) {
let params = {
...row,
};
let res = await Api.post('/service/ptspta/fetch', params);
if (res.respCode == SUCCESS) {
this.$set(this.model.gidgrp, row.role.toLowerCase(), res.data);
}
},
// 业务信息=》基本信息=》支出目的
purposChange(key, value) {
this.handleChangeForm(key, value);
},
// 初始化保函开立类型码表下拉列表
async queryHndtypCodeTableList(trnName) {
let params = {
gitp: {
swiftflg: this.model.gitp.swiftflg,
},
gidgrp: {
rec: {
purpos: this.model.gidgrp.rec.purpos,
},
},
transName: trnName.toUpperCase(),
};
let res = await Api.post('/service/brtset/initHndtyp', params);
if (res.respCode == SUCCESS) {
this.$set(this.codes, 'voHndtyp', res.data);
}
},
// 是否SWIFT格式修改--联动保函开立类型
handleChangeSwiftflg() {
this.queryHndtypCodeTableList(this.root.trnName);
},
// 支出目的修改--联动保函开立类型
handleChangePurpos() {
this.queryHndtypCodeTableList(this.root.trnName);
},
buildLiaccv () {
let params = {
...buildFn.buildCommonData(this.model, this.trnName),
liaccvg: this.model.liaccv.liaccvg,
oldamt: this.model.liaccv.oldamt,
chgamt: this.model.liaccv.chgamt,
concur: this.model.liaccv.concur,
};
return params
},
// 公共组件setmod处理方式改变触发联动
changeSetmodModel (emitParams) {
let reqParams = {}
switch (emitParams.code) {
case 'processMethods':
reqParams = buildFn.buildSetglg(this.model, this.trnName);
this.calcPayDetail(reqParams)
break
case 'changeDsp':
let index = emitParams.index;
let setglgRequest = buildFn.buildSetglg(this.model, this.trnName);
setglgRequest.setglg = {setgll: emitParams.list};
this.setgllAccts(setglgRequest, index);
break
default:
return
}
}
},
};
export default {
"brtp.lidget.sdamod.dadsnd":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"lidgrp.rec.ownref":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"brtp.lidget.sdamod.seainf":[
{type: "string", required: false, message: "必输项"},
{max: 3,message:"长度不能超过3"}
],
"lidgrp.rec.expdat":[
{type: "date", required: false, message: "输入正确的日期"}
],
"lidgrp.cbs.opn1.cur":[
{type: "string", required: false, message: "必输项"},
{max: 3,message:"长度不能超过3"}
],
"lidgrp.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位" }//满足正负数
],
"brtp.recget.sdamod.dadsnd":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"brdgrp.rec.ownref":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"brtp.recget.sdamod.seainf":[
{type: "string", required: false, message: "必输项"},
{max: 3,message:"长度不能超过3"}
],
"brdgrp.rec.nam":[
{type: "string", required: false, message: "必输项"},
{max: 40,message:"长度不能超过40"}
],
// "brdgrp.cbs.max.amt":[
// {type: "number", required: false, message: "必输项"},
// {max: 18,message:"整数位不能超过14位"},
// {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
// ],
"brdgrp.apl.pts.ref":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"brdgrp.cbs.opn1.cur":[
{type: "string", required: false, message: "必输项"},
{max: 3,message:"长度不能超过3"}
],
"brdgrp.cbs.opn1.amt":[
{type: "string", required: false, message: "必输项"},
{max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
"brdgrp.apl.pts.nam":[
{type: "string", required: false, message: "必输项"},
{max: 40,message:"长度不能超过40"}
],
"brdgrp.rec.rcvdat":[
{type: "date", required: false, message: "输入正确的日期"}
],
"brdgrp.rec.advdat":[
{type: "date", required: false, message: "输入正确的日期"}
],
"brdgrp.ben.pts.ref":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"brdgrp.rec.matdat":[
{type: "date", required: false, message: "输入正确的日期"}
],
"brdgrp.rec.stadat":[
{type: "date", required: false, message: "输入正确的日期"}
],
"brdgrp.ben.pts.nam":[
{type: "string", required: false, message: "必输项"},
{max: 40,message:"长度不能超过40"}
],
"brdgrp.rec.tenmaxday":[
{type: "number", required: false, message: "必输项"},
{type: "number",max: 999,message:"不能超过999"}
],
"brdgrp.prb.pts.ref":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"brdgrp.prb.pts.nam":[
{type: "string", required: false, message: "必输项"},
{max: 40,message:"长度不能超过40"}
],
"liaall.tenstm":[
{type: "string", required: false, message: "必输项"},
{max: 1,message:"长度不能超过1"}
],
"setmod.redamt":[
{type: "string", required: false, message: "必输项"},
{max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
"brdgrp.rec.rptref":[
{type: "string", required: false, message: "必输项"},
{max: 25,message:"长度不能超过25"}
],
"setmod.doccur":[
{type: "string", required: false, message: "必输项"},
{max: 3,message:"长度不能超过3"}
],
"setmod.docamt":[
{type: "string", required: false, message: "必输项"},
{max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
"setmod.setamt":[
{type: "string", required: false, message: "必输项"},
{max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
"nar754":[
{type: "string", required: true, message: "必输项"},
{max: 700,message:"长度不能超过700"}
],
"aamset.utlamt":[
{type: "string", required: false, message: "必输项"},
{max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
"aamset.utlamt2":[
{type: "string", required: false, message: "必输项"},
{max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
"brdgrp.rec.invref":[
{type: "string", required: false, message: "必输项"},
{max: 35,message:"长度不能超过35"}
],
"zcsdrq":[
{type: "date", required: false, message: "输入正确的日期"}
],
"brtp.prbp.ptsget.sdamod.dadsnd":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"brdgrp.prb.pts.extkey":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"brtp.prbp.ptsget.sdamod.seainf":[
{type: "string", required: false, message: "必输项"},
{max: 3,message:"长度不能超过3"}
],
"brtp.prechkdat":[
//{type: "date", required: false, message: "输入正确的日期"}
],
"brdgrp.prb.namelc":[
{type: "string", required: true, message: "必输项"},
{max: 35,message:"长度不能超过35"}
],
"brdgrp.prb.pts.adrblk":[
{type: "string", required: true, message: "必输项"},
{max: 140,message:"长度不能超过140"}
],
"brdgrp.prb.dbfadrblkcn":[
{type: "string", required: true, message: "必输项"},
{max: 35,message:"长度不能超过35"}
],
"bptbck.dscbckcur":[
{type: "string", required: false, message: "必输项"},
{max: 3,message:"长度不能超过3"}
],
"brdgrp.prb.adrelc":[
{type: "string", required: true, message: "必输项"},
{max: 35,message:"长度不能超过35"}
],
"liaall.outamt":[
{type: "number", required: false, message: "必输项"},
{max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
"liaall.outpct":[
{type: "string", required: false, message: "必输项"},
{max: 6,message:"长度不能超过6"}
],
"liaall.concur":[
{type: "string", required: false, message: "必输项"},
{max: 3,message:"长度不能超过3"}
],
"liaall.misamt":[
{type: "number", required: false, message: "必输项"},
{max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
"liaall.exttotoldamt":[
{type: "number", required: false, message: "必输项"},
{max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
"liaall.exttotamt":[
{type: "number", required: false, message: "必输项"},
{max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
"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"}
],
"setmod.ref":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"setmod.zmqacc":[
{type: "string", required: false, message: "必输项"},
{max: 20,message:"长度不能超过20"}
],
"setmod.glemod.gleshwstm":[
{type: "string", required: false, message: "必输项"},
{max: 1,message:"长度不能超过1"}
],
"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"}
],
"cfatrt.cda.cfeogudamount":[
{type: "string", required: false, message: "必输项"},
{max: 22,message:"长度不能超过22"}
],
"cfatrt.cda.cfeogudad":[
{type: "string", required: true, message: "必输项"},
{max: 32,message:"长度不能超过32"}
],
"hmdmod2.bennam":[
{type: "string", required: false, message: "必输项"},
{max: 105,message:"长度不能超过105"}
],
"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: "string", 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"}
],
"trtcre.trtp.bcdget.sdamod.dadsnd":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"trtcre.trtp.btdget.sdamod.dadsnd":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"trtcre.trtp.brdget.sdamod.dadsnd":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"trtcre.trtp.ledget.sdamod.dadsnd":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"trtcre.trtp.bedget.sdamod.dadsnd":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"trtcre.trdgrp.rec.pntref":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"trtcre.trtp.bcdget.sdamod.seainf":[
{type: "string", required: false, message: "必输项"},
{max: 3,message:"长度不能超过3"}
],
"trtcre.trtp.btdget.sdamod.seainf":[
{type: "string", required: false, message: "必输项"},
{max: 3,message:"长度不能超过3"}
],
"trtcre.trtp.brdget.sdamod.seainf":[
{type: "string", required: false, message: "必输项"},
{max: 3,message:"长度不能超过3"}
],
"trtcre.trtp.ledget.sdamod.seainf":[
{type: "string", required: false, message: "必输项"},
{max: 3,message:"长度不能超过3"}
],
"trtcre.trtp.bedget.sdamod.seainf":[
{type: "string", required: false, message: "必输项"},
{max: 3,message:"长度不能超过3"}
],
"trtcre.trdgrp.rec.pntnam":[
{type: "string", required: false, message: "必输项"},
{max: 40,message:"长度不能超过40"}
],
"trtcre.trtp.recget.sdamod.dadsnd":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"trtcre.trdgrp.rec.ownref":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"trtcre.trtp.recget.sdamod.seainf":[
{type: "string", required: false, message: "必输项"},
{max: 3,message:"长度不能超过3"}
],
"trtcre.trdgrp.rec.nam":[
{type: "string", required: false, message: "必输项"},
{max: 40,message:"长度不能超过40"}
],
"trtcre.trdgrp.fip.pts.ref":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"trtcre.trtp.usr.extkey":[
{type: "string", required: false, message: "必输项"},
{max: 8,message:"长度不能超过8"}
],
"trtcre.trtp.usrget.sdamod.seainf":[
{type: "string", required: false, message: "必输项"},
{max: 3,message:"长度不能超过3"}
],
"trtcre.trtp.fipp.ptsget.sdamod.dadsnd":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"trtcre.trdgrp.fip.pts.extkey":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"trtcre.trtp.fipp.ptsget.sdamod.seainf":[
{type: "string", required: false, message: "必输项"},
{max: 3,message:"长度不能超过3"}
],
"trtcre.trdgrp.rec.issdat":[
{type: "date", required: false, message: "输入正确的日期"}
],
"trtcre.trdgrp.fip.namelc":[
{type: "string", required: true, message: "必输项"},
{max: 35,message:"长度不能超过35"}
],
"trtcre.trdgrp.fip.pts.adrblk":[
{type: "string", required: true, message: "必输项"},
{max: 35,message:"长度不能超过35"}
],
"trtcre.trdgrp.fip.dbfadrblkcn":[
{type: "string", required: true, message: "必输项"},
{max: 35,message:"长度不能超过35"}
],
"trtcre.trdgrp.fip.adrelc":[
{type: "string", required: true, message: "必输项"},
{max: 35,message:"长度不能超过35"}
],
"trtcre.oriamt":[
{type: "number", required: false, message: "必输项"},
{max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
"trtcre.trdgrp.rec.pctfin":[
{type: "string", required: false, message: "必输项"},
{max: 5,message:"长度不能超过5"}
],
"trtcre.trtmod.finmod.dinjdm":[
{type: "string", required: false, message: "必输项"},
{max: 20,message:"长度不能超过20"}
],
"trtcre.extrat":[
{type: "string", required: false, message: "必输项"},
{max: 12,message:"长度不能超过12"}
],
"trtcre.trdgrp.cbs.max.amt":[
{type: "number", required: false, message: "必输项"},
{max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
"trtcre.trtmod.finmod.intdat":[
{type: "string", required: false, message: "必输项"},
{max: 2,message:"长度不能超过2"}
],
"trtcre.trtmod.finmod.ratchgdat":[
{type: "string", required: false, message: "必输项"},
{max: 4,message:"长度不能超过4"}
],
"trtcre.trdgrp.rec.tenday":[
{type: "string", required: false, message: "必输项"},
{max: 10,message:"长度不能超过10"}
],
"trtcre.trtmod.finmod.graday":[
{type: "string", required: false, message: "必输项"},
{max: 10,message:"长度不能超过10"}
],
"trtcre.trdgrp.rec.matdat":[
{type: "date", required: false, message: "输入正确的日期"}
],
"trtcre.trtmod.finmod.fltval":[
{type: "string", required: false, message: "必输项"},
{max: 12,message:"长度不能超过12"}
],
"trtcre.trdgrp.rec.stttendat":[
{type: "date", required: false, message: "输入正确的日期"}
],
"trtcre.trdgrp.rec.intrat":[
{type: "string", required: false, message: "必输项"},
{max: 14,message:"长度不能超过14"}
],
"trtcre.trtmod.finmod.ovdintrat":[
{type: "string", required: false, message: "必输项"},
{max: 8,message:"长度不能超过8"}
],
"trtcre.trtmod.finmod.shuilv":[
{type: "string", required: false, message: "必输项"},
{max: 10,message:"长度不能超过10"}
],
"trtcre.trdgrp.rec.actrat":[
{type: "string", required: false, message: "必输项"},
{max: 12,message:"长度不能超过12"}
],
"trtcre.trtmod.finmod.fincod":[
{type: "string", required: false, message: "必输项"},
{max: 17,message:"长度不能超过17"}
],
"trtcre.trdgrp.rec.trntyp":[
{type: "string", required: false, message: "必输项"},
{max: 6,message:"长度不能超过6"}
],
"trtcre.trtmod.finmod.intamt":[
{type: "number", required: false, message: "必输项"},
{max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
"trtcre.trdgrp.rec.oppacc":[
{type: "string", required: false, message: "必输项"},
{max: 35,message:"长度不能超过35"}
],
"trtcre.trtmod.finmod.dinmod.dinjdm":[
{type: "string", required: false, message: "必输项"},
{max: 20,message:"长度不能超过20"}
],
"trtcre.trtmod.finmod.dinmod.dinjls":[
{type: "string", required: false, message: "必输项"},
{max: 40,message:"长度不能超过40"}
],
"trtcre.trtmod.finmod.dinmod.ockhdm":[
{type: "string", required: false, message: "必输项"},
{max: 20,message:"长度不能超过20"}
],
"trtcre.trtmod.finmod.dinmod.hxkhdm":[
{type: "string", required: false, message: "必输项"},
{max: 20,message:"长度不能超过20"}
],
"trtcre.trtmod.finmod.dinmod.sxpfdm":[
{type: "string", required: false, message: "必输项"},
{max: 40,message:"长度不能超过40"}
],
"trtcre.trtmod.finmod.dinmod.djhtno":[
{type: "string", required: false, message: "必输项"},
{max: 40,message:"长度不能超过40"}
],
"trtcre.trtmod.finmod.dinmod.sxlexi":[
{type: "string", required: false, message: "必输项"},
{max: 20,message:"长度不能超过20"}
],
"trtcre.trtmod.finmod.dinmod.spzhta":[
{type: "string", required: false, message: "必输项"},
{max: 10,message:"长度不能超过10"}
],
"trtcre.trtmod.finmod.dinmod.chapdm":[
{type: "string", required: false, message: "必输项"},
{max: 20,message:"长度不能超过20"}
],
"trtcre.trtmod.finmod.dinmod.chapmc":[
{type: "string", required: false, message: "必输项"},
{max: 40,message:"长度不能超过40"}
],
"trtcre.trtmod.finmod.dinmod.dakaje":[
{type: "string", required: false, message: "必输项"},
{max: 24,message:"长度不能超过24"}
],
"trtcre.trtmod.finmod.dinmod.shuilv":[
{type: "string", required: false, message: "必输项"},
{max: 10,message:"长度不能超过10"}
],
"trtcre.trtmod.finmod.dinmod.maxdje":[
{type: "string", required: false, message: "必输项"},
{max: 24,message:"长度不能超过24"}
],
"trtcre.trtmod.finmod.dinmod.shpjgh":[
{type: "string", required: false, message: "必输项"},
{max: 26,message:"长度不能超过26"}
],
"trtcre.trtmod.finmod.dinmod.mindje":[
{type: "string", required: false, message: "必输项"},
{max: 24,message:"长度不能超过24"}
],
"trtcre.trtmod.finmod.dinmod.shpdch":[
{type: "string", required: false, message: "必输项"},
{max: 26,message:"长度不能超过26"}
],
"trtcre.trtmod.finmod.dinmod.bizhog":[
{type: "string", required: false, message: "必输项"},
{max: 20,message:"长度不能超过20"}
],
"trtcre.trtmod.finmod.dinmod.shpijg":[
{type: "string", required: false, message: "必输项"},
{max: 24,message:"长度不能超过24"}
],
"trtcre.trtmod.finmod.dinmod.dakaqx":[
{type: "string", required: false, message: "必输项"},
{max: 10,message:"长度不能超过10"}
],
"trtcre.trtmod.finmod.dinmod.spjgdc":[
{type: "string", required: false, message: "必输项"},
{max: 26,message:"长度不能超过26"}
],
"trtcre.trtmod.finmod.dinmod.maxqix":[
{type: "string", required: false, message: "必输项"},
{max: 10,message:"长度不能超过10"}
],
"trtcre.trtmod.finmod.dinmod.dinjlb":[
{type: "string", required: false, message: "必输项"},
{max: 26,message:"长度不能超过26"}
],
"trtcre.trtmod.finmod.dinmod.minqix":[
{type: "string", required: false, message: "必输项"},
{max: 10,message:"长度不能超过10"}
],
"trtcre.trtmod.finmod.dinmod.sheplb":[
{type: "string", required: false, message: "必输项"},
{max: 26,message:"长度不能超过26"}
],
"trtcre.trtmod.finmod.dinmod.qixndw":[
{type: "string", required: false, message: "必输项"},
{max: 10,message:"长度不能超过10"}
],
"trtcre.trtmod.finmod.dinmod.libor":[
{type: "string", required: false, message: "必输项"},
{max: 26,message:"长度不能超过26"}
],
"dftcre.dfdgrp.rec.pntref":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"dftcre.dfdgrp.rec.pntnam":[
{type: "string", required: false, message: "必输项"},
{max: 40,message:"长度不能超过40"}
],
"dftcre.dfdgrp.rec.ownref":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"dftcre.dfdgrp.rec.nam":[
{type: "string", required: false, message: "必输项"},
{max: 40,message:"长度不能超过40"}
],
"dftcre.oriamt":[
{type: "number", required: false, message: "必输项"},
{max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
"dftcre.dfdgrp.apl.pts.ref":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"dftcre.dfdgrp.cbs.max.amt":[
{type: "number", required: false, message: "必输项"},
{max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
"dftcre.dfdgrp.cbs.opn1.amt":[
{type: "number", required: false, message: "必输项"},
{max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
"dftcre.dftp.aplp.ptsget.sdamod.dadsnd":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"dftcre.dfdgrp.apl.pts.extkey":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"dftcre.dftp.aplp.ptsget.sdamod.seainf":[
{type: "string", required: false, message: "必输项"},
{max: 3,message:"长度不能超过3"}
],
"dftcre.dfdgrp.apl.namelc":[
{type: "string", required: true, message: "必输项"},
{max: 35,message:"长度不能超过35"}
],
"dftcre.dfdgrp.apl.pts.adrblk":[
{type: "string", required: true, message: "必输项"},
{max: 35,message:"长度不能超过35"}
],
"dftcre.dfdgrp.apl.dbfadrblkcn":[
{type: "string", required: true, message: "必输项"},
{max: 35,message:"长度不能超过35"}
],
"dftcre.dfdgrp.apl.adrelc":[
{type: "string", required: true, message: "必输项"},
{max: 35,message:"长度不能超过35"}
],
"dftcre.dfdgrp.rec.stttendat":[
{type: "date", required: false, message: "输入正确的日期"}
],
"dftcre.dfdgrp.dff.pts.ref":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"dftcre.dfdgrp.rec.matdat":[
{type: "date", required: false, message: "输入正确的日期"}
],
"dftcre.dftp.dffp.ptsget.sdamod.dadsnd":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"dftcre.dfdgrp.dff.pts.extkey":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"dftcre.dftp.dffp.ptsget.sdamod.seainf":[
{type: "string", required: false, message: "必输项"},
{max: 3,message:"长度不能超过3"}
],
"dftcre.dfdgrp.rec.tenday":[
{type: "string", required: false, message: "必输项"},
{max: 3,message:"长度不能超过3"}
],
"dftcre.dfdgrp.dff.namelc":[
{type: "string", required: true, message: "必输项"},
{max: 35,message:"长度不能超过35"}
],
"dftcre.dfdgrp.dff.pts.adrblk":[
{type: "string", required: true, message: "必输项"},
{max: 35,message:"长度不能超过35"}
],
"dftcre.dfdgrp.dff.dbfadrblkcn":[
{type: "string", required: true, message: "必输项"},
{max: 35,message:"长度不能超过35"}
],
"dftcre.dfdgrp.rec.actrat":[
{type: "string", required: false, message: "必输项"},
{max: 12,message:"长度不能超过12"}
],
"dftcre.dfdgrp.dff.adrelc":[
{type: "string", required: true, message: "必输项"},
{max: 35,message:"长度不能超过35"}
],
"dftcre.dfdgrp.rec.fltval":[
{type: "string", required: false, message: "必输项"},
{max: 9,message:"长度不能超过9"}
],
"dftcre.dfdgrp.rec.bankno":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"dftcre.dfdgrp.rec.bankcn":[
{type: "string", required: false, message: "必输项"},
{max: 40,message:"长度不能超过40"}
],
"dftcre.dfuamt":[
{type: "number", required: false, message: "必输项"},
{max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
"dftcre.dfdgrp.rec.resamt":[
{type: "number", required: false, message: "必输项"},
{max: 12,message:"整数位不能超过8位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
"dftcre.dfdgrp.rec.bnkact":[
{type: "string", required: false, message: "必输项"},
{max: 32,message:"长度不能超过32"}
],
"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: false, 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: "string", required: false, message: "必输项"} ],
"bopmod.dbcgrp.bas.fcyacc":[
{type: "string", required: false, message: "必输项"},
{max: 32,message:"长度不能超过32"}
],
"bopmod.dbcgrp.bas.othamt":[
{type: "string", required: false, message: "必输项"} ],
"bopmod.dbcgrp.bas.othacc":[
{type: "string", required: false, message: "必输项"},
{max: 32,message:"长度不能超过32"}
],
"bopmod.dbcgrp.bas.txamt":[
{type: "string", required: false, message: "必输项"} ],
"bopmod.dbcgrp.bas.outchargeamt":[
{type: "string", required: false, message: "必输项"} ],
"bopmod.dbcgrp.bas.actuamt":[
{type: "string", 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"}
],
"liaall.misamt" :null,
"trtcre.trdgrp.fip.pts.adrblk" :null,
"trtcre.trtmod.finmod.ovdinttyp" :null,
"trtcre.trtmod.finmod.dinmod.rmbsbs" :null,
"bopmod.dbcgrp.bas.buscode" :null,
"dftcre.dfdgrp.rec.resamt" :null,
"dftcre.dfdgrp.apl.namelc" :null,
"dftcre.dfdgrp.cbs.max.cur" :null,
"dftcre.dfdgrp.cbs.max.amt" :null,
"brdgrp.prb.adrelc" :null,
"cnybop.outflg" :null,
"cfatrt.cfaflg" :null,
"trtcre.trtmod.finmod.dinmod.chapdm" :null,
"trtcre.trdgrp.rec.stttendat" :null,
"bopmod.dbcgrp.bas.exrate" :null,
"bopmod.dbcgrp.bas.custype" :null,
"bopmod.dbcgrp.bas.idcode" :null,
"bopmod.dbcgrp.bas.oppuser" :null,
"brdgrp.prb.pts.adrblk" :null,
"trtcre.trdgrp.cbs.max.cur" :null,
"dftcre.dfdgrp.rec.bankno" :null,
"liaall.limmod.limpts.oth.pts.nam" :null,
"setmod.dspflg" :null,
"trtcre.trdgrp.rec.issdat" :null,
"dftcre.dfdgrp.apl.pts.extkey" :null,
"bopmod.dbcgrp.bas.fcyamt" :null,
"cfatrt.ownextkey" :null,
"trtcre.trdgrp.fip.namelc" :null,
"bopmod.dbcgrp.bas.issdate" :null,
"bopmod.dbcgrp.bas.lcbgno" :null,
"liaall.liaccv.totcovamt" :null,
"cfabrt.ownextkey" :null,
"trtcre.trtmod.finmod.intact" :null,
"dftcre.dfdgrp.dff.pts.extkey" :null,
"bopmod.dbcgrp.bas.custnm" :null,
"cfabrt.cfaflg" :null,
"trtcre.trtmod.finmod.dinjdm" :null,
"cfatrt.cda.useofunds" :null,
"trtcre.trdgrp.cbs.max.amt" :null,
"bopmod.dbcgrp.bas.methods" :null,
"liaall.limmod.limpts.wrk.pts.nam" :null,
"trtcre.trtmod.finmod.intamt" :null,
"cnybop.cnyflg" :null,
"trtcre.trdgrp.fip.adrelc" :null,
"trtcre.trtmod.finmod.dinmod.ockhdm" :null,
"trtcre.trtmod.finmod.ratchgdat" :null,
"trtcre.trtmod.finmod.fltval" :null,
"dftcre.dfdgrp.rec.invtyp" :null,
"cfatrt.cda.cfeogudamount" :null,
"dftcre.dfdgrp.rec.stttendat" :null,
"bopmod.dbcgrp.bas.txamt" :null,
"brdgrp.prb.pts.ref" :null,
"bopmod.dbcgrp.bas.fcyacc" :null,
"brdgrp.apl.pts.nam" :null,
"trtcre.trdgrp.rec.oppacc" :null,
"cfadft.ownextkey" :null,
"brtp.ischktyp" :null,
"trtcre.trdgrp.rec.lprtyp" :null,
"hmdmod2.bennam" :null,
"trnmod.swftyp" :null,
"trtcre.trtmod.finmod.ovdintrat" :null,
"trtcre.trdgrp.rec.trntyp" :null,
"trtcre.trtmod.finmod.ratchgtyp" :null,
"bopmod.dbcgrp.bas.outchargeccy" :null,
"bopmod.dbcgrp.bas.othamt" :null,
"bopmod.dbcgrp.bas.actuamt" :null,
"dftcre.dfdgrp.dff.adrelc" :null,
"dftcre.dfdgrp.rec.fintyp" :null,
"liaall.limmod.limpts.oth.pts.extkey" :null,
"dftcre.dfdgrp.rec.matdat" :null,
"liaall.limmod.ownref" :null,
"trtcre.trtmod.finmod.flttyp" :null,
"dftcre.dfdgrp.rec.dfuflg" :null,
"bopmod.dbcgrp.bas.othacc" :null,
"liaall.limmod.ecifno" :null,
"trtcre.trtmod.finmod.dinmod.shpijg" :null,
"trtcre.trtmod.finmod.ratchgprd" :null,
"trtcre.trdgrp.rec.actrat" :null,
"bopmod.dbcgrp.bas.actuccy" :null,
"bopmod.dbcgrp.bas.actiontype" :null,
"dftcre.dfdgrp.rec.bankcn" :null,
"bopmod.dbcgrp.bas.lcyamt" :null,
"bopmod.szflg" :null,
"dftcre.dfdgrp.rec.trntyp" :null,
"brdgrp.cbs.max.amt" :null,
"trtcre.trdgrp.rec.flowflag" :null,
"trtcre.trdgrp.rec.matdat" :null,
"bopmod.dbcgrp.bas.actiondesc" :null,
"cfadft.cfaflg" :null,
"cnybop.traflg" :null,
"brdgrp.prb.namelc" :null,
"trtcre.trtmod.finmod.act1" :null,
"trtcre.trtmod.finmod.act3" :null,
"dftcre.dfdgrp.apl.adrelc" :null,
"dftcre.dfdgrp.rec.flttyp" :null,
"dftcre.dfdgrp.rec.actrat" :null,
"brtp.prechkdat" :null,
"trtcre.trdgrp.rec.invtyp" :null,
"trtcre.trdgrp.fip.pts.extkey" :null,
"trtcre.trtp.act" :null,
"trtcre.trdgrp.rec.tenday" :null,
"trtcre.trtmod.finmod.dinmod.shpjgh" :null,
"trtcre.trtmod.finmod.inttyp" :null,
"bopmod.dbcgrp.bas.rptno" :null,
"dftcre.dfdgrp.dff.pts.adrblk" :null,
"dftcre.dfdgrp.rec.intprd" :null,
"brdgrp.prb.pts.nam" :null,
"liaall.tenstm" :null,
"brdgrp.ben.pts.nam" :null,
"trtcre.trdgrp.rec.pctfin" :null,
"trtcre.trtmod.finmod.intprd" :null,
"setmod.redamt" :null,
"aamset.utlamt2" :null,
"trtcre.trtmod.finmod.dinmod.hxkhdm" :null,
"dftcre.dfdgrp.apl.pts.adrblk" :null,
"bopmod.dbcgrp.bas.custcod" :null,
"brdgrp.prb.pts.extkey" :null,
"trnmod.cmtflg" :null,
"bopmod.dbcgrp.bas.txccy" :null,
"liaall.limmod.limpts.wrk.pts.extkey" :null,
"bopmod.basflg" :null,
"trtcre.trtp.usr.extkey" :null,
"trtcre.trdgrp.rec.guaflg" :null,
"dftcre.dfdgrp.dff.namelc" :null,
"brdgrp.rec.frepayflg" :null,
"mtabut.coninf.conexedat" :null,
"bopmod.dbcgrp.bas.lcyacc" :null,
"liaall.limmod.limpts.nonrevflg1" :null,
"bopmod.dbcgrp.bas.outchargeamt" :null,
"cnybop.libflg" :null,
"bopmod.ownextkey" :null,
"trtcre.trdgrp.rec.stagod" :null,
"cfatrt.cda.cfeogudcurr" :null,
"setmod.docamt" :null,
"liaall.liaccv.cshpct" :null,
"bopmod.acttyp" :null,
"trtcre.trtmod.finmod.intdat" :null,
"liaall.liaccv.relcshpct" :null,
"mtabut.clsflg" :null,
"cnybop.vouflg" :null,
}
\ No newline at end of file
import Pts from '~/components/business/commonModel/Pts';
import Pub from '~/components/business/commonModel/index.js';
export default class Brtset{
constructor () {
const pub = new Public()
this.data = {
brdgrp: {
prb: {
pts: {
ref: '',
extkey: '',
nam: '',
adrblk: ''
}
},
rec: {
tenmaxday: '',
rcvdat: '',
docflg: '',
ownref: '',
docsta: '',
invref: '',
rptref: '',
stadat: '',
advdat: '',
matdat: '',
nam: '',
docprbrol: '',
frepayflg: ''
},
cbs: {
opn1: {
cur: '',
amt: ''
},
opn2: {
cur: ''
},
max: {
cur: '',
amt: ''
}
},
ben: {
pts: {
ref: '',
nam: ''
}
},
apl: {
pts: {
ref: '',
extkey: '',
nam: ''
}
}
},
zcsdrq: '',
setmod: {
redamt: '',
setglg: {
setgll0: {
dsp: ''
},
setgllidx: {
setgrp: {
actser: {
pts: {
extkey: '',
adrblk: ''
}
},
rcvcor2: {
pts: {
extkey: '',
adrblk: ''
}
},
rcvcor: {
pts: {
extkey: '',
adrblk: ''
}
},
snd756: {
pts: {
extkey: '',
adrblk: ''
}
},
bei: {
pts: {
extkey: '',
adrblk: ''
}
},
ori: {
pts: {
extkey: '',
adrblk: ''
}
},
tri: {
pts: {
extkey: '',
adrblk: ''
}
}
},
sespay: {
beiacc: '',
strinf202: '',
strinf: '',
rcvcor2acc: '',
ownref: '',
corbnk: '',
oriacc: '',
evebnk: '',
coract: '',
rcvcoracc: '',
triacc: ''
}
}
},
setamt: '',
doccur: '',
docamt: ''
},
cfatrt: {
cda: {
cfeogudamount: '',
cfeogudcurr: '',
useofunds: '',
cfeogudad: ''
},
ownextkey: '',
cfaflg: '',
basflg: '',
dclflg: '',
cdaflg: ''
},
brtp: {
prechkdat: '',
ischktyp: ''
},
financ: {
rzkx4: '',
acc: '',
rzkx3: '',
rzkx2: '',
rzkx1: '',
ref4: '',
ref3: '',
ref2: ''
},
cnybop: {
saddwordout: '',
sbankname: '',
outflg: '',
cnyflg: '',
cnyout: {
spayeeacct: '',
sorilevyno: '',
foffshoreamt: '',
cpayeeattr: '',
spayercountrycode: '',
fcustomsamt: '',
spayeracct: '',
frecordamt: '',
sbankorgcode: '',
sbanktrano: '',
fonshoreamt: '',
dpayeedate: '',
spayeecny: '',
spk: '',
ftotalamt: '',
iaccountperiod: '',
sbalancemode: '',
smidtransbank: '',
sswiftbic: '',
cpayeraccttyp: '',
fpayeeamt: '',
fprepayeeamt: '',
fnogoodsamt: ''
},
spayername: '',
traflg: '',
vouflg: '',
outscale: '',
libflg: '',
spayeename: ''
},
aamset: {
utlamt: '',
utlamt2: ''
},
trtcre: {
trtmod: {
finmod: {
accbch: '',
intprd: '',
ovdintrat: '',
fincod: '',
fltval: '',
dinmod: {
spjgdc: '',
shpdch: '',
sxlexi: '',
jzllgz: '',
chapdm: '',
libor: '',
sheplb: '',
dinjdm: '',
dinjls: '',
dakaqx: '',
spzhta: '',
shpjgh: '',
shuilv: '',
shpijg: '',
dakaje: '',
sxpfdm: '',
dinjlb: '',
rmbsbs: '',
ndjgbs: '',
qixndw: '',
hxkhdm: '',
maxqix: '',
maxdje: '',
minqix: '',
ockhdm: '',
mindje: '',
bizhog: '',
lprtyp: '',
djhtno: '',
chapmc: ''
},
intamt: '',
flttyp: '',
act3: '',
ratchgdat: '',
inttyp: '',
ovdinttyp: '',
graday: '',
intact: '',
act1: '',
dinjdm: '',
wjdkfl: '',
ratchgtyp: '',
acttyp: '',
intdat: '',
ratchgprd: '',
shuilv: ''
}
},
oriamt: '',
crefinflg: '',
trntyp: '',
trdgrp: {
rec: {
stttendat: '',
recaccount: '',
pctfin: '',
recdistrictcode: '',
ownref: '',
intrat: '',
pntnam: '',
invtyp: '',
fintyp: '',
tenday: '',
guaflg: '',
stagod: '',
lprtyp: '',
issdat: '',
matdat: '',
nam: '',
actrat: '',
pntref: '',
reccountrycode: ''
},
cbs: {
max: {
cur: '',
amt: ''
}
},
fip: {
pts: {
ref: '',
extkey: '',
adrblk: ''
}
}
},
oppacc: '',
oricur: '',
trtp: {
act: '',
usr: {
extkey: ''
},
recname: '',
bcdget: {
sdamod: {
seainf: ''
}
}
},
extrat: ''
},
cfadft: {
ownextkey: '',
cfaflg: '',
basflg: '',
dclflg: ''
},
number: '',
bopmod: {
dbfgrp: {
bas: {
actiontype: '',
custype: '',
actuamt: '',
othacc: '',
custnm: '',
methods: '',
rptno: '',
txccy: '',
lcyamt: '',
lcbgno: '',
tenor: '',
actuccy: '',
ownextkey: '',
idcode: '',
fcyamt: '',
issdate: '',
fcyacc: '',
txamt: '',
buscode: '',
outchargeamt: '',
oppuser: '',
lcyacc: '',
actiondesc: '',
outchargeccy: '',
othamt: '',
tmpref: '',
exrate: '',
custcod: ''
}
},
ownextkey: '',
dbcp: {
baspp: {
tmprefnew: '',
exratelab: '',
cornam: '',
lcyamtlab: '',
roptnam: '',
corpnam: '',
cusnam: '',
acp: ''
}
},
dbfp: {
baspp: {
tmprefnew: '',
exratelab: '',
cornam: '',
lcyamtlab: '',
roptnam: '',
corpnam: '',
cusnam: '',
acp: ''
}
},
acttyp: '',
szflg: '',
dbcgrp: {
bas: {
actiontype: '',
custype: '',
actuamt: '',
othacc: '',
custnm: '',
methods: '',
rptno: '',
txccy: '',
lcyamt: '',
lcbgno: '',
tenor: '',
actuccy: '',
ownextkey: '',
idcode: '',
fcyamt: '',
issdate: '',
fcyacc: '',
txamt: '',
buscode: '',
outchargeamt: '',
oppuser: '',
lcyacc: '',
actiondesc: '',
outchargeccy: '',
othamt: '',
tmpref: '',
exrate: '',
custcod: ''
}
},
basflg: ''
},
mtabut: {
clsflg: ''
},
nar754: '',
trdgrp: {
rec: {
branchinr: ''
}
},
paypsb: '',
dftcre: {
dftp: {
dffp: {
ptsget: {
sdamod: {
seainf: '',
dadsnd: ''
}
}
},
pctlab: '',
aplp: {
ptsget: {
sdamod: {
seainf: '',
dadsnd: ''
}
}
}
},
dfdgrp: {
rec: {
stttendat: '',
bankcn: '',
intprd: '',
resamt: '',
fltval: '',
pntnam: '',
ownref: '',
bnkact: '',
invtyp: '',
fintyp: '',
flttyp: '',
tenday: '',
rescur: '',
guaflg: '',
dfuflg: '',
trntyp: '',
bankno: '',
matdat: '',
nam: '',
actrat: '',
pntref: ''
},
dff: {
adrelc: '',
dbfadrblkcn: '',
namelc: '',
pts: {
ref: '',
extkey: '',
adrblk: ''
}
},
cbs: {
opn1: {
cur: '',
amt: ''
},
max: {
cur: '',
amt: ''
}
},
apl: {
adrelc: '',
dbfadrblkcn: '',
namelc: '',
pts: {
ref: '',
extkey: '',
adrblk: ''
}
}
},
oriamt: '',
dfucur: '',
oricur: '',
dfuamt: '',
dfflag: ''
},
lidgrp: {
rec: {
expdat: '',
ownref: ''
},
cbs: {
opn1: {
cur: '',
amt: ''
}
}
},
cfabrt: {
cfaflg: '',
basflg: '',
dclflg: ''
},
liaall: {
limmod: {
limpfp: {
clmcbe: '',
clmpty: {
length: ''
},
clmcbe: {
length: ''
},
clmpty: '',
clmcbb: '',
clmcbb: {
length: ''
}
},
limpts: {
wrk:{
pts: {
ref: '',
extkey: '',
nam: '',
adrblk: ''
}
}
}
},
tenstm: {
rows: [],
},
tensetstm: ''
},
trnmod: {
reconebch: '',
cmtflg: '',
cipmod: {
recsehbchnam: '',
zjg1mc: '',
zjg2mc: '',
dddbsh: '',
fuynh4: '',
fukrhm: '',
fkhdzh: '',
stasehbchnam: '',
recsehbch: '',
dafnzh: '',
fuynh3: '',
fkrkhh: '',
fuynh2: '',
staonebchnam: '',
cips112: '',
ddmisu: '',
skkhhh: '',
pyebchkey: '',
ddbhao: '',
skkhhm: '',
staonebch: '',
fkhkhh: '',
stasehbch: '',
zjg1hh: '',
zjg2hh: '',
skkhzh: '',
dafnmc: '',
fuyns4: '',
fuyns3: '',
fuyns2: '',
fkkhzh: '',
fuyns1: '',
pyebchnam: '',
skkhhmc: ''
},
swftyp: '',
trndoc: {
condocstm: '',
filrecv: '',
doclbl: '',
doctrestm: '',
shwinc: '',
shwout: '',
rcvatt: {
seainf: ''
}
},
reconebchnam: '',
commen: '',
bustyp: ''
},
gcdgrp: {
prb: {
adrelc: '',
dbfadrblkcn: '',
namelc: '',
pts: new Pts().data,
},
rec: {
clmdat: '',
ownref: '',
payrol: '',
nam: '',
docprbrol: '',
},
oth: {
adrelc: '',
dbfadrblkcn: '',
namelc: '',
pts: new Pts().data,
},
cbs: {
opn1: {
cur: '',
amt: ''
},
max: {
cur: '',
amt: ''
}
},
ben: {
pts: new Pts().data,
},
apl: {
pts: new Pts().data,
},
adv: {
pts: new Pts().data,
},
apl: {
pts: new Pts().data,
},
},
gidgrp: {
rec: {
expdat: '',
liadat: '',
ownref: '',
gartyp: ''
},
ghd: {
wahnum: '',
remark: '',
bustyp: '',
segtyp: ''
},
cbs: {
opn1: {
cur: '',
amt: ''
}
},
ctr: {
pts: new Pts().data,
},
con: {
pts: new Pts().data,
},
iss: {
pts: new Pts().data,
},
ben: {
pts: new Pts().data,
},
atb: {
pts: new Pts().data,
},
avc: {
pts: new Pts().data,
},
adv: {
pts: new Pts().data,
},
apl: {
pts: new Pts().data,
},
},
liaall: {
concur: '',
liaccv: {
concur: '',
newamt: '',
dnfmod: {
zhruzh: '',
kehuzh: '',
intdsp: '',
lxzyzh: '',
pridsp: '',
yewudh: '',
qicuje: '',
ccvtyp: '',
tizamt: '',
zhqtyp: '',
stm8023: '',
zhhuye: '',
zhqucs: ''
},
relcshpct: '',
gleflg: '',
addinf: '',
newresamt: '',
chgcurflg: '',
pctresamt: '',
cshpct: '',
totcovamt: ''
},
tenstm: {
rows: [],
},
outpct: '',
exttotamt: '',
exttotoldamt: '',
outamt: '',
misamt: '',
con: {
pts: new Pts().data,
},
iss: {
pts: new Pts().data,
},
ben: {
pts: new Pts().data,
},
atb: {
pts: new Pts().data,
},
avc: {
pts: new Pts().data,
},
},
trnmod: {
trndia: {
usrget: {
sdamod: {
seainf: ''
}
},
atpget: {
sdamod: {
seainf: '',
dadsnd: ''
}
},
usr: {
extkey: ''
},
diamodflg: '',
dspstm: '',
atp: {
cod: ''
},
diarec: {
prechkdat: '',
inftxt: '',
usr: '',
ptyextkey: '',
paycur: '',
dat: '',
ownusg: '',
cod: '',
donflg: '',
nam: '',
payamt: '',
ptynam: ''
},
atptxt: ''
},
ptsmod: {
adrp: {
prtpanblk: ''
}
},
trndoc: {
condocstm: '',
filrecv: '',
amdapl: '',
doclbl: '',
doctrestm: '',
shwout: '',
shwinc: '',
amdnam: '',
advnam: '',
advdoc: '',
advlabel: '',
rcvatt: {
seainf: ''
}
},
docimm: {
xmldocblk: '',
prtswtpblk: '',
ascin: '',
prtswtrpblk: ''
},
ctr: {
pts: new Pts().data,
},
con: {
pts: new Pts().data,
},
iss: {
pts: new Pts().data,
},
},
setmod: new Pub().data.Setmod,
mtabut: new Pub().data.Mtabut,
trnmod: new Pub().data.Trnmod,
liaall: new Pub().data.Liaall,
liaccv: new Pub().data.Liaccv,
docpan: new Pub().data.Docpan,
};
}
}
<template>
<div class="eibs-tab">
<el-collapse v-model="activeNames">
<!--el-collapse-item title="备查表" name="addbcb">
<m-addbcb :model="model" :codes="codes" />
</el-collapse-item-->
<el-collapse-item title="附言" name="coninfp">
<m-coninfp :model="model" :codes="codes" />
</el-collapse-item>
</el-collapse>
</div>
</template>
<script>
import event from '../event'
import Coninfp from "~/views/Public/Coninfp";
export default {
components: {
"m-coninfp": Coninfp,
},
inject: ["root"],
props: ["model", "codes"],
mixins: [event],
data() {
return {
activeNames: ["coninfp"],
};
},
methods: {},
created: function () {},
};
</script>
<style>
</style>
<template>
<div class="eibs">
<c-row>
<c-col :span="24">
<!----------左边------------>
<c-col :span="12" style="padding-right: 20px;">
<c-col :span="24">
<el-form-item label="申报号码" prop="bopmod.dbcgrp.bas.rptno">
<c-input v-model="model.bopmod.dbcgrp.bas.rptno" maxlength="22" placeholder="请输入申报号码" disabled></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="操作类型" prop="bopmod.dbcgrp.bas.actiontype">
<c-select v-model="model.bopmod.dbcgrp.bas.actiontype" style="width:100%" placeholder="请选择操作类型" :code="codes.actiontype" disabled>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="地区机构号" prop="bopmod.dbcgrp.bas.ownextkey">
<c-select v-model="model.bopmod.dbcgrp.bas.ownextkey" style="width:100%" placeholder="请选择地区机构号" disabled>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="银行业务编号" prop="bopmod.dbcgrp.bas.buscode">
<c-input v-model="model.bopmod.dbcgrp.bas.buscode" maxlength="22" placeholder="请输入银行业务编号" disabled></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="付款人类型" prop="bopmod.dbcgrp.bas.custype">
<c-select v-model="model.bopmod.dbcgrp.bas.custype" style="width:100%" placeholder="请选择类型" :code="codes.custype" disabled>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="付款人名称" prop="bopmod.dbcgrp.bas.custnm">
<c-input type="textarea" v-model="model.bopmod.dbcgrp.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.dbcgrp.bas.oppuser">
<c-input type="textarea" v-model="model.bopmod.dbcgrp.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.dbcgrp.bas.idcode">
<c-input v-model="model.bopmod.dbcgrp.bas.idcode" maxlength="32" placeholder="请输入身份证件号码" disabled></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="购汇金额" prop="bopmod.dbcgrp.bas.lcyamt">
<c-input v-model="model.bopmod.dbcgrp.bas.lcyamt" placeholder="请输入购汇金额"></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="现汇金额" prop="bopmod.dbcgrp.bas.fcyamt">
<c-input v-model="model.bopmod.dbcgrp.bas.fcyamt" placeholder="请输入现汇金额"></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="其它金额" prop="bopmod.dbcgrp.bas.othamt">
<c-input v-model="model.bopmod.dbcgrp.bas.othamt" placeholder="请输入其它金额"></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<c-col :span="13">
<el-form-item label="付款币种及金额" prop="bopmod.dbcgrp.bas.txccy">
<c-select v-model="model.bopmod.dbcgrp.bas.txccy" style="width:100%" placeholder="请选择付款币种及金额" :code="codes.curtxt" disabled>
</c-select>
</el-form-item>
</c-col>
<c-col :span="11">
<el-form-item label="" prop="bopmod.dbcgrp.bas.txamt" label-width="5px">
<c-input v-model="model.bopmod.dbcgrp.bas.txamt" placeholder="请输入付款币种及金额" disabled></c-input>
</el-form-item>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="13">
<el-form-item label="实付款币种及金额" prop="bopmod.dbcgrp.bas.actuccy">
<c-select v-model="model.bopmod.dbcgrp.bas.actuccy" style="width:100%" placeholder="请选择实际付款币种及金额" :code="codes.curtxt" disabled>
</c-select>
</el-form-item>
</c-col>
<c-col :span="11">
<el-form-item label="" prop="bopmod.dbcgrp.bas.actuamt" label-width="5px">
<c-input v-model="model.bopmod.dbcgrp.bas.actuamt" placeholder="请输入实际付款币种及金额" disabled></c-input>
</el-form-item>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="12">
<el-form-item label="开证日期" prop="bopmod.dbcgrp.bas.issdate">
<c-date-picker type="date" v-model="model.bopmod.dbcgrp.bas.issdate" style="width:100%" placeholder="请选择开证日期" disabled></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="信用证/保函编号" prop="bopmod.dbcgrp.bas.lcbgno">
<c-input v-model="model.bopmod.dbcgrp.bas.lcbgno" maxlength="20" placeholder="请输入信用证/保函编号" disabled></c-input>
</el-form-item>
</c-col>
</c-col>
</c-col>
<!----------右边------------>
<c-col :span="12" style="padding-left: 20px;">
<c-col :span="24">
<el-form-item label="修改/删除原因" prop="bopmod.dbcgrp.bas.actiondesc">
<c-input type="textarea" v-model="model.bopmod.dbcgrp.bas.actiondesc" maxlength="32" show-word-limit placeholder="请输入操作类型" :rows="7" disabled ></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="结算方式" prop="bopmod.dbcgrp.bas.methods">
<c-select v-model="model.bopmod.dbcgrp.bas.methods" style="width:100%" placeholder="请选择结算方式" :code="codes.methods" disabled>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="组织机构" prop="bopmod.dbcgrp.bas.custcod">
<c-input v-model="model.bopmod.dbcgrp.bas.custcod" maxlength="18" placeholder="请输入组织机构" disabled></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<br>
</c-col>
<c-col :span="24">
<br>
</c-col>
<c-col :span="24">
<c-checkbox v-model="model.bopmod.dbcp.baspp.acp" disabled :checked="true">确认</c-checkbox>
</c-col>
<c-col :span="24">
<el-form-item label="购汇汇率" prop="bopmod.dbcgrp.bas.exrate">
<c-input v-model="model.bopmod.dbcgrp.bas.exrate" placeholder="请输入购汇汇率" disabled></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="人民币帐号/银行卡号" prop="bopmod.dbcgrp.bas.lcyacc">
<c-input v-model="model.bopmod.dbcgrp.bas.lcyacc" maxlength="32" placeholder="请输入人民币帐号/银行卡号" disabled></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="外汇帐号/银行卡号" prop="bopmod.dbcgrp.bas.fcyacc">
<c-input v-model="model.bopmod.dbcgrp.bas.fcyacc" maxlength="32" placeholder="请输入外汇帐号/银行卡号" disabled></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="其它帐号/银行卡号" prop="bopmod.dbcgrp.bas.othacc">
<c-input v-model="model.bopmod.dbcgrp.bas.othacc" maxlength="32" placeholder="请输入其它帐号/银行卡号" disabled></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<c-col :span="13">
<el-form-item label="扣费币种及金额" prop="bopmod.dbcgrp.bas.outchargeccy">
<c-select v-model="model.bopmod.dbcgrp.bas.outchargeccy" style="width:100%" placeholder="请选择扣费币种及金额" :code="codes.curtxt" disabled>
</c-select>
</el-form-item>
</c-col>
<c-col :span="11">
<el-form-item label="" prop="bopmod.dbcgrp.bas.outchargeamt" label-width="5px">
<c-input v-model="model.bopmod.dbcgrp.bas.outchargeamt" placeholder="请输入扣费币种及金额" disabled></c-input>
</el-form-item>
</c-col>
</c-col>
<c-col :span="24">
<el-form-item label="期限" prop="bopmod.dbcgrp.bas.tenor">
<c-input v-model="model.bopmod.dbcgrp.bas.tenor" placeholder="请输入期限" disabled></c-input>
</el-form-item>
</c-col>
</c-col>
</c-col>
<!--按钮,先屏蔽了-->
<c-col v-show="false">
<c-col :span="12">
<c-button size="small" type="primary" @click="onSav">
&Save
</c-button>
</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">
<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">
<c-button size="small" type="primary" @click="onButpErr">
&Error
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onCan">
E&xit
</c-button>
</c-col>
</c-col>
<!--多余字段隐藏-->
<c-col v-show="false">
<c-col :span="12">
<el-form-item label="�'时申报流�'号" prop="bopmod.dbcgrp.bas.tmpref">
<c-input v-model="model.bopmod.dbcgrp.bas.tmpref" maxlength="16" placeholder="请输入�'时申报流�'号"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<span v-text="model.bopmod.dbcp.baspp.tmprefnew" data-path=".bopmod.dbcp.baspp.tmprefnew" > </span>
</c-col>
<c-col :span="12">
<span v-text="model.bopmod.dbcp.baspp.roptnam" data-path=".bopmod.dbcp.baspp.roptnam" > </span>
</c-col>
<c-col :span="12">
<span v-text="model.bopmod.dbcp.baspp.cusnam" data-path=".bopmod.dbcp.baspp.cusnam" > </span>
</c-col>
<c-col :span="12">
<span v-text="model.bopmod.dbcp.baspp.cornam" data-path=".bopmod.dbcp.baspp.cornam" > </span>
</c-col>
<c-col :span="12">
<span v-text="model.bopmod.dbcp.baspp.corpnam" data-path=".bopmod.dbcp.baspp.corpnam" > </span>
</c-col>
<c-col :span="12">
<span v-text="model.bopmod.dbcp.baspp.exratelab" data-path=".bopmod.dbcp.baspp.exratelab" > </span>
</c-col>
<c-col :span="12">
<span v-text="model.bopmod.dbcp.baspp.lcyamtlab" data-path=".bopmod.dbcp.baspp.lcyamtlab" > </span>
</c-col>
</c-col>
</c-row>
</div>
</template>
<script>
import event from '../event'
export default {
inject: ['root'],
props:["model","codes"],
mixins: [event],
data(){
return {
}
},
methods:{},
}
</script>
<style>
</style>
<template>
<div class="eibs">
<c-row>
<c-col :span="24">
<!----------左边------------>
<c-col :span="12" style="padding-right: 20px;">
<c-col :span="24">
<el-form-item label="申报号码" prop="bopmod.dbfgrp.bas.rptno">
<c-input v-model="model.bopmod.dbfgrp.bas.rptno" maxlength="22" placeholder="请输入申报号码" disabled></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="操作类型" prop="bopmod.dbfgrp.bas.actiontype">
<c-select v-model="model.bopmod.dbfgrp.bas.actiontype" style="width:100%" placeholder="请选择操作类型" :code="codes.actiontype" disabled>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="地区机构号" prop="bopmod.dbfgrp.bas.ownextkey">
<c-select v-model="model.bopmod.dbfgrp.bas.ownextkey" style="width:100%" placeholder="请选择地区机构号" disabled>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="银行业务编号" prop="bopmod.dbfgrp.bas.buscode">
<c-input v-model="model.bopmod.dbfgrp.bas.buscode" maxlength="22" placeholder="请输入银行业务编号" disabled></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="付款人类型" prop="bopmod.dbfgrp.bas.custype">
<c-select v-model="model.bopmod.dbfgrp.bas.custype" style="width:100%" placeholder="请选择类型" :code="codes.custype" disabled>
</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 v-model="model.bopmod.dbfgrp.bas.idcode" maxlength="32" placeholder="请输入身份证件号码" disabled></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="24">
<c-col :span="13">
<el-form-item label="付款币种及金额" prop="bopmod.dbfgrp.bas.txccy">
<c-select v-model="model.bopmod.dbfgrp.bas.txccy" style="width:100%" placeholder="请选择付款币种及金额" :code="codes.curtxt">
</c-select>
</el-form-item>
</c-col>
<c-col :span="11">
<el-form-item label="" prop="bopmod.dbfgrp.bas.txamt" label-width="5px">
<c-input v-model="model.bopmod.dbfgrp.bas.txamt" placeholder="请输入付款币种及金额"></c-input>
</el-form-item>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="13">
<el-form-item label="实际付款币种及金额" prop="bopmod.dbfgrp.bas.actuccy">
<c-select v-model="model.bopmod.dbfgrp.bas.actuccy" style="width:100%" placeholder="请选择实际付款币种及金额" :code="codes.curtxt" disabled>
</c-select>
</el-form-item>
</c-col>
<c-col :span="11">
<el-form-item label="" prop="bopmod.dbfgrp.bas.actuamt" label-width="5px">
<c-input v-model="model.bopmod.dbfgrp.bas.actuamt" placeholder="请输入实际付款币种及金额" disabled></c-input>
</el-form-item>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="12">
<el-form-item label="开证日期" prop="bopmod.dbfgrp.bas.issdate">
<c-date-picker type="date" v-model="model.bopmod.dbfgrp.bas.issdate" style="width:100%" placeholder="请选择开证日期" disabled></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="信用证/保函编号" prop="bopmod.dbfgrp.bas.lcbgno">
<c-input v-model="model.bopmod.dbfgrp.bas.lcbgno" maxlength="20" placeholder="请输入信用证/保函编号" disabled></c-input>
</el-form-item>
</c-col>
</c-col>
</c-col>
<!----------右边------------>
<c-col :span="12" style="padding-left: 20px;">
<c-col :span="24">
<el-form-item label="修改/删除原因" prop="bopmod.dbfgrp.bas.actiondesc">
<c-input type="textarea" v-model="model.bopmod.dbfgrp.bas.actiondesc" maxlength="32" show-word-limit placeholder="请输入操作类型" :rows="7" disabled ></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="结算方式" prop="bopmod.dbfgrp.bas.methods">
<c-select v-model="model.bopmod.dbfgrp.bas.methods" style="width:100%" placeholder="请选择结算方式" :code="codes.methods" disabled>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="组织机构" prop="bopmod.dbfgrp.bas.custcod">
<c-input v-model="model.bopmod.dbfgrp.bas.custcod" maxlength="18" placeholder="请输入组织机构" disabled></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<br>
</c-col>
<c-col :span="24">
<br>
</c-col>
<c-col :span="24">
<el-form-item>
<c-checkbox v-model="model.bopmod.dbfp.baspp.acp" disabled :checked="true" style="float: left;">确认</c-checkbox>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="购汇汇率" prop="bopmod.dbfgrp.bas.exrate">
<c-input v-model="model.bopmod.dbfgrp.bas.exrate" placeholder="请输入购汇汇率" disabled></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="人民币帐号/银行卡号" prop="bopmod.dbfgrp.bas.lcyacc">
<c-input v-model="model.bopmod.dbfgrp.bas.lcyacc" maxlength="32" placeholder="请输入人民币帐号/银行卡号" disabled></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="外汇帐号/银行卡号" prop="bopmod.dbfgrp.bas.fcyacc">
<c-input v-model="model.bopmod.dbfgrp.bas.fcyacc" maxlength="32" placeholder="请输入外汇帐号/银行卡号" disabled></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="其它帐号/银行卡号" prop="bopmod.dbfgrp.bas.othacc">
<c-input v-model="model.bopmod.dbfgrp.bas.othacc" maxlength="32" placeholder="请输入其它帐号/银行卡号" disabled></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<c-col :span="13">
<el-form-item label="扣费币种及金额" prop="bopmod.dbfgrp.bas.outchargeccy">
<c-select v-model="model.bopmod.dbfgrp.bas.outchargeccy" style="width:100%" placeholder="请选择扣费币种及金额" :code="codes.curtxt" disabled>
</c-select>
</el-form-item>
</c-col>
<c-col :span="11">
<el-form-item label="" prop="bopmod.dbfgrp.bas.outchargeamt" label-width="5px">
<c-input v-model="model.bopmod.dbfgrp.bas.outchargeamt" placeholder="请输入扣费币种及金额" disabled></c-input>
</el-form-item>
</c-col>
</c-col>
<c-col :span="24">
<el-form-item label="期限" prop="bopmod.dbfgrp.bas.tenor">
<c-input v-model="model.bopmod.dbfgrp.bas.tenor" placeholder="请输入期限" disabled></c-input>
</el-form-item>
</c-col>
</c-col>
</c-col>
<!--按钮,先屏蔽了-->
<c-col v-show="false">
<c-col :span="12">
<c-button size="small" type="primary" @click="onSav">
&Save
</c-button>
</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">
<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">
<c-button size="small" type="primary" @click="onButpErr">
&Error
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onCan">
E&xit
</c-button>
</c-col>
</c-col>
<!--多余字段隐藏-->
<c-col v-show="false">
<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">
<span v-text="model.bopmod.dbfp.baspp.tmprefnew" data-path=".bopmod.dbfp.baspp.tmprefnew" > </span>
</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">
<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">
<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>
</c-row>
</div>
</template>
<script>
import event from '../event'
export default {
inject: ['root'],
props:["model","codes"],
mixins: [event],
data(){
return {
}
},
methods:{},
}
</script>
<style>
</style>
<template>
<div class="eibs">
<c-col :span="24">
<c-col :span="12" style="padding-right: 20px;">
<el-form-item label="外汇贷款" prop="cfatrt.cfaflg">
<c-select v-model="model.cfatrt.cfaflg" style="width:100%" placeholder="请选择外汇贷款" :disabled=this.flag>
</c-select>
</el-form-item>
<el-form-item label="地区机构号" prop="cfatrt.ownextkey">
<c-select v-model="model.cfatrt.ownextkey" style="width:100%" placeholder="请选择地区机构号" :disabled=this.flag>
</c-select>
</el-form-item>
</c-col>
<c-col :span="12" style="padding-left: 20px;">
<c-fullbox>
<!--c-checkbox v-model="model.cfatrt.basflg" :disabled=this.flag>签约信息</c-checkbox>
<c-checkbox v-model="model.cfatrt.dclflg" :disabled=this.flag>变动信息</c-checkbox-->
<el-form-item label="是否外保内贷" prop="cfatrt.cdaflg">
<c-select v-model="model.cfatrt.cdaflg" style="width:100%" placeholder="请选择是否外保内贷" :disabled=this.flag>
</c-select>
</el-form-item>
</c-fullbox>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="12" class="col-left">
<el-form-item label="海外代付" prop="cfadft.cfaflg">
<c-select v-model="model.cfadft.cfaflg" style="width:100%" placeholder="请选择海外代付" :disabled=this.flag>
</c-select>
</el-form-item>
<el-form-item label="地区机构号" prop="cfadft.ownextkey">
<c-select v-model="model.cfadft.ownextkey" style="width:100%" placeholder="请选择地区机构号" :disabled=this.flag>
</c-select>
</el-form-item>
</c-col>
<c-col :span="12" class="col-right">
<c-col :span="12">
<el-form-item label="">
<c-checkbox v-model="model.cfadft.basflg" style="float: left;" :disabled=this.flag >签约信息</c-checkbox>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="">
<c-checkbox v-model="model.cfadft.dclflg" style="float: left;" :disabled=this.flag >变动信息</c-checkbox>
</el-form-item>
</c-col>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="12" class="col-left">
<el-form-item label="远期信用证" prop="cfabrt.cfaflg">
<c-select v-model="model.cfabrt.cfaflg" style="width:100%" placeholder="请选择远期信用证" :disabled=this.flag>
</c-select>
</el-form-item>
<el-form-item label="地区机构号" prop="cfadft.ownextkey">
<c-select v-model="model.cfadft.ownextkey" style="width:100%" placeholder="请选择地区机构号" :disabled=this.flag>
</c-select>
</el-form-item>
</c-col>
<c-col :span="12" class="col-right">
<c-col :span="12">
<el-form-item label="">
<c-checkbox v-model="model.cfabrt.basflg" style="float: left;" :disabled=this.flag >签约信息</c-checkbox>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="">
<c-checkbox v-model="model.cfabrt.dclflg" style="float: left;" :disabled=this.flag >变动信息</c-checkbox>
</el-form-item>
</c-col>
</c-col>
</c-col>
<c-col :span="24" style="margin-bottom: 15px;">
<el-form-item label="资金用途" prop="cfatrt.cda.useofunds">
<c-select v-model="model.cfatrt.cda.useofunds" style="width:100%" placeholder="请选择资金用途" :disabled=this.flag>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24" style="margin-bottom: 15px;">
<el-form-item label="中资企业境外担保项下境内贷款额度币种" prop="cfatrt.cda.cfeogudcurr" label-width="250px">
<c-select v-model="model.cfatrt.cda.cfeogudcurr" style="width:100%" placeholder="请选择中资企业境外担保项下境内贷款额度币种" :disabled=this.flag>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24" style="margin-bottom: 15px;">
<el-form-item label="中资企业境外担保项下境内贷款额度金额" prop="cfatrt.cda.cfeogudamount" label-width="250px">
<c-input v-model="model.cfatrt.cda.cfeogudamount" placeholder="请输入中资企业境外担保项下境内贷款额度金额" :disabled=this.flag></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="中资企业境外担保项下贷款业务批准文件号" prop="cfatrt.cda.cfeogudad" label-width="250px">
<c-input type="textarea" v-model="model.cfatrt.cda.cfeogudad" maxlength="32" show-word-limit placeholder="请输入中资企业境外担保项下贷款业务批准文件号" :disabled=this.flag ></c-input>
</el-form-item>
</c-col>
</div>
</template>
<script>
import event from '../event'
export default {
inject: ['root'],
props:["model","codes"],
mixins: [event],
data(){
return {
flag:true,
}
},
methods:{},
created:function(){
}
}
</script>
<style>
</style>
<template>
<div class="eibs">
<c-col :span="24">
<c-col :span="12" style="padding-right: 20px;">
<c-col :span="24">
<el-form-item label="收款直接参与者行号" prop="trnmod.reconebch">
<c-input v-model="model.trnmod.reconebch" maxlength="35" placeholder="请输入收款直接参与者行号"></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="收款直接参与者名称" prop="trnmod.reconebchnam">
<c-input type="textarea" v-model="model.trnmod.reconebchnam" maxlength="35" show-word-limit placeholder="请输入收款直接参与者名称" ></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="附言" prop="trnmod.commen">
<c-input type="textarea" v-model="model.trnmod.commen" maxlength="30" show-word-limit placeholder="请输入附言" ></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="业务种类" prop="trnmod.bustyp">
<c-select v-model="model.trnmod.bustyp" style="width:100%" placeholder="请选择业务种类" >
<el-option
v-for="item in this.bustyp"
:key="item.value"
:label="item.value + 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>
</c-col>
</div>
</template>
<script>
import event from '../event'
export default {
inject: ['root'],
props:["model","codes"],
mixins: [event],
data(){
return {
bustyp:[
{ value: 'GODX', label: '货期贸易' },
{ value: 'STRX', label: '服务贸易' },
{ value: 'CTFX', label: '资本项下' },
{ value: 'FTFX', label: '金融机构头寸调拨' },
{ value: 'BDES', label: '债卷还本利息' },
{ value: 'BPRR', label: '债卷还本金' },
{ value: 'BINP', label: '债卷利息' },
{ value: 'BISF', label: '债卷发行手续费' },
{ value: 'BCAF', label: '债卷兑付手续费' },
{ value: 'CBCF', label: '附息式债卷兑付手续费' },
{ value: 'OTFX', label: '其他' },
],
}
},
methods:{},
created:function(){
}
}
</script>
<style>
</style>
<template>
<div class="eibs">
<c-row>
<c-col :span="12" style="padding-right: 20px;">
<c-col :span="24">
<c-form-item label="借记记账账号" prop="trnmod.cipmod.dafnzh">
<c-input
v-model="model.trnmod.cipmod.dafnzh"
maxlength="34"
disabled
placeholder=""
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item label="端到端标识号" prop="trnmod.cipmod.dddbsh">
<c-input
v-model="model.trnmod.cipmod.dddbsh"
maxlength="35"
disabled
placeholder=""
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item label="中介机构1行号" prop="trnmod.cipmod.zjg1hh">
<c-input
v-model="model.trnmod.cipmod.zjg1hh"
maxlength="35"
placeholder=""
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item label="中介机构1名称" prop="trnmod.cipmod.zjg1mc">
<c-input
type="textarea"
v-model="model.trnmod.cipmod.zjg1mc"
maxlength="35"
show-word-limit
placeholder=""
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item label="收款人开户行行号" prop="trnmod.cipmod.pyebchkey">
<c-input
v-model="model.trnmod.cipmod.pyebchkey"
maxlength="35"
placeholder=""
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item
label="收款人开户行名称\收款非银行支付机构名称"
prop="trnmod.cipmod.pyebchnam"
>
<c-input
type="textarea"
v-model="model.trnmod.cipmod.pyebchnam"
maxlength="70"
show-word-limit
placeholder=""
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item label="付款人开户行行号" prop="trnmod.cipmod.fkrkhh">
<c-input
v-model="model.trnmod.cipmod.fkrkhh"
maxlength="35"
placeholder=""
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item
label="付款人开户行名称\付款非银行支付机构名称"
prop="trnmod.cipmod.fukrhm"
>
<c-input
type="textarea"
v-model="model.trnmod.cipmod.fukrhm"
maxlength="70"
show-word-limit
placeholder=""
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item label="收款间接参与者行号" prop="trnmod.cipmod.recsehbch">
<c-input
v-model="model.trnmod.cipmod.recsehbch"
maxlength="35"
placeholder=""
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item
label="收款间接参与者名称"
prop="trnmod.cipmod.recsehbchnam"
>
<c-input
type="textarea"
v-model="model.trnmod.cipmod.recsehbchnam"
maxlength="100"
show-word-limit
placeholder=""
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item label="付款直接参与者行号" prop="trnmod.cipmod.staonebch">
<c-input
v-model="model.trnmod.cipmod.staonebch"
disabled
maxlength="35"
placeholder=""
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item
label="付款直接参与者名称"
prop="trnmod.cipmod.staonebchnam"
>
<c-input
type="textarea"
v-model="model.trnmod.cipmod.staonebchnam"
disabled
maxlength="100"
show-word-limit
placeholder=""
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item label="付款间接参与者行号" prop="trnmod.cipmod.stasehbch">
<c-input
v-model="model.trnmod.cipmod.stasehbch"
disabled
maxlength="35"
placeholder=""
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item
label="付款间接参与者名称"
prop="trnmod.cipmod.stasehbchnam"
>
<c-input
v-model="model.trnmod.cipmod.stasehbchnam"
disabled
maxlength="100"
placeholder=""
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item label="付款行行号" prop="trnmod.cipmod.fkhkhh">
<c-input
v-model="model.trnmod.cipmod.fkhkhh"
disabled
maxlength="35"
placeholder=""
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item label="付款行行名" prop="trnmod.cipmod.skkhhmc">
<c-input
type="textarea"
v-model="model.trnmod.cipmod.skkhhmc"
disabled
maxlength="35"
show-word-limit
placeholder=""
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item label="付款行地址" prop="trnmod.cipmod.fkhdzh">
<c-input
type="textarea"
v-model="model.trnmod.cipmod.fkhdzh"
disabled
maxlength="35"
show-word-limit
placeholder=""
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item label="付款行账号" prop="trnmod.cipmod.fkkhzh">
<c-input
v-model="model.trnmod.cipmod.fkkhzh"
maxlength="35"
placeholder=""
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item label="附言2" prop="trnmod.cipmod.fuynh2">
<c-input
type="textarea"
v-model="model.trnmod.cipmod.fuynh2"
maxlength="35"
show-word-limit
placeholder=""
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item label="附言4" prop="trnmod.cipmod.fuynh4">
<c-input
type="textarea"
v-model="model.trnmod.cipmod.fuynh4"
maxlength="35"
show-word-limit
placeholder=""
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item label="$t0000522" prop="trnmod.cipmod.ddbhao">
<c-input
v-model="model.trnmod.cipmod.ddbhao"
maxlength="35"
placeholder=""
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item label="订单描述" prop="trnmod.cipmod.ddmisu">
<c-input
type="textarea"
v-model="model.trnmod.cipmod.ddmisu"
maxlength="100"
show-word-limit
placeholder=""
></c-input>
</c-form-item>
</c-col>
</c-col>
<c-col :span="12" style="padding-left: 20px;">
<c-col :span="24">
<c-form-item label="借记记账名称" prop="trnmod.cipmod.dafnmc">
<c-input
type="textarea"
v-model="model.trnmod.cipmod.dafnmc"
disabled
maxlength="35"
show-word-limit
placeholder=""
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item label="中介机构2行号" prop="trnmod.cipmod.zjg2hh">
<c-input
v-model="model.trnmod.cipmod.zjg2hh"
maxlength="35"
placeholder=""
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item label="中介机构2名称" prop="trnmod.cipmod.zjg2mc">
<c-input
type="textarea"
v-model="model.trnmod.cipmod.zjg2mc"
maxlength="35"
show-word-limit
placeholder=""
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item label="致收款人银行附言1" prop="trnmod.cipmod.fuyns1">
<c-input
type="textarea"
v-model="model.trnmod.cipmod.fuyns1"
maxlength="35"
show-word-limit
placeholder=""
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item label="致收款人银行附言2" prop="trnmod.cipmod.fuyns2">
<c-input
type="textarea"
v-model="model.trnmod.cipmod.fuyns2"
maxlength="35"
show-word-limit
placeholder=""
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item label="致收款人银行附言3" prop="trnmod.cipmod.fuyns3">
<c-input
type="textarea"
v-model="model.trnmod.cipmod.fuyns3"
maxlength="35"
show-word-limit
placeholder=""
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item label="致收款人银行附言4" prop="trnmod.cipmod.fuyns4">
<c-input
type="textarea"
v-model="model.trnmod.cipmod.fuyns4"
maxlength="35"
show-word-limit
placeholder=""
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item label="收款行行号" prop="trnmod.cipmod.skkhhh">
<c-input
v-model="model.trnmod.cipmod.skkhhh"
maxlength="35"
placeholder=""
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item label="收款行行名" prop="trnmod.cipmod.skkhhm">
<c-input
type="textarea"
v-model="model.trnmod.cipmod.skkhhm"
maxlength="35"
show-word-limit
placeholder=""
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item label="收款行地址" prop="trnmod.cipmod.skkhdz">
<c-input
type="textarea"
v-model="model.trnmod.cipmod.fkhdzh"
maxlength="35"
show-word-limit
placeholder=""
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item label="收款行账号" prop="trnmod.cipmod.skkhzh">
<c-input
v-model="model.trnmod.cipmod.skkhzh"
maxlength="35"
placeholder=""
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item label="附言3" prop="trnmod.cipmod.fuynh3">
<c-input
type="textarea"
v-model="model.trnmod.cipmod.fuynh3"
maxlength="35"
show-word-limit
placeholder=""
></c-input>
</c-form-item>
</c-col>
<c-col :span="24" >
<c-checkbox v-model="model.trnmod.cipmod.cips112" disabled
>112cov</c-checkbox
>
</c-col>
</c-col>
</c-row>
</div>
</template>
<script>
import event from '../event'
export default {
inject: ["root"],
props: ["model", "codes"],
mixins: [event],
data() {
return {};
},
methods: {},
created: function () {},
};
</script>
<style>
</style>
<template>
<div class="eibs-tab">
<el-collapse v-model="activeNames">
<el-collapse-item title="外管信息" name="wg">
<m-wg :model="model" :codes="codes" />
</el-collapse-item>
<el-collapse-item title="对外付款/承兑通知书-基础信息" name="basp" v-if="model.bopmod.basflg != '' && model.bopmod.szflg == '1'">
<m-basp :model="model" :codes="codes" />
</el-collapse-item>
<el-collapse-item title="境内付款/承兑通知书-基础信息" name="basp1" v-if="model.bopmod.basflg != '' && model.bopmod.szflg == '2'">
<m-basp1 :model="model" :codes="codes" />
</el-collapse-item>
<el-collapse-item title="跨境人民币申报" name="cnyp1">
<m-cnyp1 :model="model" :codes="codes" />
</el-collapse-item>
<el-collapse-item title="2111跨境支出信息" name="outp" v-show="model.cnybop.outflg == '1'">
<m-outp :model="model" :codes="codes" />
</el-collapse-item>
<el-collapse-item title="资本项目" name="cfactlp">
<m-cfactlp :model="model" :codes="codes" />
</el-collapse-item>
</el-collapse>
</div>
</template>
<script>
import event from '../event';
import Wg from "./Wg";
import Cnyp1 from "./Cnyp1";
import Cfactlp from "./Cfactlp";
import Basp from "./Basp";
import Basp1 from "./Basp1";
import Outp from "./Outp";
export default {
inject: ["root"],
components: {
"m-wg": Wg,
"m-basp": Basp,
"m-basp1": Basp1,
"m-cnyp1": Cnyp1,
"m-outp": Outp,
"m-cfactlp": Cfactlp,
},
props: ["model", "codes"],
mixins: [event],
data() {
return {
activeNames: ["wg"],
};
},
methods: {},
created: function () {},
};
</script>
<style>
</style>
<template>
<div class="eibs">
<!-- left -->
<c-col :span="12" style="margin-top: 20px;">
<c-col :span="24">
<el-form-item label="是否报送跨境人民币2101表" label-width="175px">
<c-select
v-model="model.cnybop.cnyflg"
style="width: 100%;"
placeholder="请选择"
disabled
>
<el-option
v-for="item in codes.cnyflg"
:key="item.value"
:label="item.label"
:value="item.value"
></el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="是否报送跨境人民币2107表" label-width="175px">
<c-select
v-model="model.cnybop.traflg"
style="width: 100%;"
placeholder="请选择"
disabled
>
<el-option
v-for="item in codes.traflg"
:key="item.value"
:label="item.label"
:value="item.value"
></el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="是否报送跨境人民币2111表" label-width="175px" prop="cnybop.outflg">
<c-select
v-model="model.cnybop.outflg"
style="width: 100%;"
placeholder="请选择"
>
<el-option
v-for="item in codes.outflg"
:key="item.value"
:label="item.label"
:value="item.value"
></el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="是否报送跨境人民币2106表" label-width="175px">
<c-select
v-model="model.cnybop.libflg"
style="width: 100%;"
placeholder="请选择"
disabled
>
<el-option
v-for="item in codes.libflg"
:key="item.value"
:label="item.label"
:value="item.value"
></el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="是否报送跨境人民币2122表" label-width="175px">
<c-select
v-model="model.cnybop.vouflg"
placeholder="请选择"
style="width: 100%;"
disabled
>
<el-option
v-for="item in codes.vouflg"
:key="item.value"
:label="item.label"
:value="item.value"
></el-option>
</c-select>
</el-form-item>
</c-col>
<!-- 2111跨境支出信息 -->
</c-col>
</div>
</template>
<script>
import event from '../event';
export default {
inject: ["root"],
props: ["model", "codes"],
mixins: [event],
data() {
return {
temp:'不申报',
options: [
{
value: "1",
label: "申报",
},
{
value: "2",
label: "不申报",
},
],
codesOwnextkey:[
{
value: "",
label: "",
}
],
};
},
methods: {
async szflgChange(){
let rtnmsg = await this.executeRule("bopmod.szflg")
if(rtnmsg.respCode == SUCCESS){
this.model.bopmod.ownextkey = rtnmsg.data.bopmod_ownextkey
}
if(this.model.bopmod.szflg==='2'){
this.model.bopmod.acttyp = '';
}
if(this.model.bopmod.szflg==='3'){
this.model.bopmod.ownextkey = '';
this.model.bopmod.acttyp = '';
this.model.bopmod.basflg='';
}
}
},
created: function () {
//给人民币申报赋值
this.model.cnybop.cnyflg="2";
this.model.cnybop.traflg="2";
this.model.cnybop.libflg="2";
this.model.cnybop.vouflg="2";
},
watch: {
"model.bopmod.ownextkey": function(){
if(this.model.bopmod.ownextkey != ''){
var instName = window.sessionStorage.instName || "北京分行";
this.codesOwnextkey[0].value = this.model.bopmod.ownextkey;
this.codesOwnextkey[0].label = this.model.bopmod.ownextkey + instName;
}else{
this.codesOwnextkey[0].value = '';
this.codesOwnextkey[0].label = '';
}
}
},
};
</script>
<style>
</style>
<template>
<div class="eibs">
<c-col :span="12" style="padding-right: 20px;">
<c-col :span="24">
<el-form-item label="MT 202COV">
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="订单机构(Tag 52a)" :prop="'setmod.setglg.setgll.' + idx + '.setgrp.ori.pts.extkey'">
<c-fullbox>
<c-input v-model="model.setmod.setglg.setgll[idx].setgrp.ori.pts.extkey" maxlength="16" placeholder="请输入内容"
@keyup.enter.native="
showGridPromptDialog('gcdgrp.prb.pts.extkey')
"></c-input>
<template slot="footer">
<c-button style="margin: 0 10px 0 10px; padding: 0 12px" size="small" type="primary" @click="onSeainf">
<i class="el-icon-info"></i>
</c-button>
<c-button size="small" type="primary" style="margin: 0 0" @click="onGctpGetrefbut">
详情
</c-button>
</template>
</c-fullbox>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="" :prop="'setmod.setglg.setgll.' + idx + '.setgrp.ori.pts.adrblk'">
<c-input type="textarea" rows="4" v-model="model.setmod.setglg.setgll[idx].setgrp.ori.pts.adrblk" maxlength="35"
show-word-limit placeholder="请输入地址信息"></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="付款行的账号" :prop="'setmod.setglg.setgll.' + idx + '.sespay.oriacc'">
<c-input v-model="model.setmod.setglg.setgll[idx].sespay.oriacc" maxlength="34" placeholder="请输入付款行的账号">
</c-input>
</el-form-item>
</c-col>
<c-col :span="24" style="margin-top: 15px">
<el-form-item label="中间行" :prop="'setmod.setglg.setgll.' + idx + '.setgrp.rcvcor.pts.extkey'">
<c-fullbox>
<c-input v-model="model.setmod.setglg.setgll[idx].setgrp.rcvcor.pts.extkey" maxlength="16" placeholder="请输入"
@keyup.enter.native="
showGridPromptDialog('gcdgrp.prb.pts.extkey')
"></c-input>
<template slot="footer">
<c-button style="margin: 0 10px 0 10px; padding: 0 12px" size="small" type="primary" @click="onSeainf">
<i class="el-icon-info"></i>
</c-button>
<c-button size="small" type="primary" style="margin: 0 0" @click="onGctpGetrefbut">
详情
</c-button>
</template>
</c-fullbox>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="" :prop="'setmod.setglg.setgll.' + idx + '.setgrp.rcvcor.pts.adrblk'">
<c-input type="textarea" rows="4" v-model="model.setmod.setglg.setgll[idx].setgrp.rcvcor.pts.adrblk"
maxlength="35" show-word-limit placeholder="请输入"></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="中间行账号" :prop="'setmod.setglg.setgll.' + idx + '.sespay.rcvcoracc'">
<c-input v-model="model.setmod.setglg.setgll[idx].sespay.rcvcoracc" maxlength="34" placeholder="请输入中间行账号">
</c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="我行参考号(Tag 20)" :prop="'setmod.setglg.setgll.' + idx + '.sespay.ownref'">
<c-input v-model="model.setmod.setglg.setgll[idx].sespay.ownref" maxlength="16" placeholder="请输入我行参考号(Tag 20)">
</c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="跨境人民币代理行模式专用:" label-width="170px">
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="清算代理行" :prop="'setmod.setglg.setgll.' + idx + '.sespay.corbnk'">
<c-select v-model="model.setmod.setglg.setgll[idx].sespay.corbnk" :code="codes.corbnk" disabled
style="width: 100%" placeholder="请选择清算代理行">
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="光大开户行" :prop="'setmod.setglg.setgll.' + idx + '.sespay.evebnk'">
<c-select v-model="model.setmod.setglg.setgll[idx].sespay.evebnk" disabled :code="codes.evebnk"
style="width: 100%" placeholder="请选择光大开户行">
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="清算代理行账号" :prop="'setmod.setglg.setgll.' + idx + '.sespay.coract'">
<c-input disabled v-model="model.setmod.setglg.setgll[idx].sespay.coract" maxlength="32"
placeholder="请输入清算代理行账号"></c-input>
</el-form-item>
</c-col>
</c-col>
<c-col :span="12" style="padding-left: 20px;">
<c-col :span="24">
<el-form-item label="账户行(Tag 57a)" :prop="'setmod.setglg.setgll.' + idx + '.setgrp.tri.pts.extkey'">
<c-fullbox>
<c-input v-model="model.setmod.setglg.setgll[idx].setgrp.tri.pts.extkey" maxlength="16" placeholder="请输入账户行"
@keyup.enter.native="
showGridPromptDialog('gcdgrp.prb.pts.extkey')
"></c-input>
<template slot="footer">
<c-button style="margin: 0 10px 0 10px; padding: 0 12px" size="small" type="primary" @click="onSeainf">
<i class="el-icon-info"></i>
</c-button>
<c-button size="small" type="primary" style="margin: 0 0" @click="onGctpGetrefbut">
详情
</c-button>
</template>
</c-fullbox>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="" :prop="'setmod.setglg.setgll.' + idx + '.setgrp.tri.pts.adrblk'">
<c-input type="textarea" rows="4" v-model="model.setmod.setglg.setgll[idx].setgrp.tri.pts.adrblk" maxlength="35"
show-word-limit placeholder="请输入地址信息"></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="账户行账号" :prop="'setmod.setglg.setgll.' + idx + '.sespay.triacc'">
<c-input v-model="model.setmod.setglg.setgll[idx].sespay.triacc" maxlength="34" placeholder="请输入账户行账号"></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="受益人机构(Tag 58a)" :prop="'setmod.setglg.setgll.' + idx + '.setgrp.bei.pts.extkey'">
<c-fullbox>
<c-input v-model="model.setmod.setglg.setgll[idx].setgrp.bei.pts.extkey" maxlength="16" placeholder="请输入受益人机构"
@keyup.enter.native="
showGridPromptDialog('gcdgrp.prb.pts.extkey')
"></c-input>
<template slot="footer">
<c-button style="margin: 0 10px 0 10px; padding: 0 12px" size="small" type="primary" @click="onSeainf">
<i class="el-icon-info"></i>
</c-button>
<c-button size="small" type="primary" style="margin: 0 0" @click="onGctpGetrefbut">
详情
</c-button>
</template>
</c-fullbox>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="" :prop="'setmod.setglg.setgll.' + idx + '.setgrp.bei.pts.adrblk'">
<c-input rows="4" type="textarea" v-model="model.setmod.setglg.setgll[idx].setgrp.bei.pts.adrblk" maxlength="35"
show-word-limit placeholder="请输入"></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="受益人机构的账号" :prop="'setmod.setglg.setgll.' + idx + '.sespay.beiacc'">
<c-input v-model="model.setmod.setglg.setgll[idx].sespay.beiacc" maxlength="34" placeholder="请输入受益人机构的账号">
</c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="发报行对收报行的指示(Tag 72)" :prop="'setmod.setglg.setgll.' + idx + '.sespay.strinf202'">
<c-input rows="4" type="textarea" v-model="model.setmod.setglg.setgll[idx].sespay.strinf202" maxlength="35"
show-word-limit placeholder="请输入发报行对收报行的指示"></c-input>
</el-form-item>
</c-col>
</c-col>
</div>
</template>
<script>
import event from '../event';
export default {
inject: ["root"],
props: ["model", "codes", "idx"],
mixins: [event],
data() {
return {};
},
methods: {},
created: function () { },
};
</script>
<style>
</style>
<template>
<div class="eibs">
<c-col :span="12">
<c-col :span="24">
<el-form-item label=" MT756详情:" label-width="200px"> </el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
label="发送报文至:"
:prop="'setmod.setglg.setgll.' + idx + '.setgrp.snd756.pts.extkey'"
label-width="165px"
>
<c-fullbox>
<c-input
v-model="model.setmod.setglg.setgll[idx].setgrp.snd756.pts.extkey"
maxlength="16"
placeholder="请输入"
@keyup.enter.native="
showGridPromptDialog('setmod.setglg.setgll(' + (idx + 1) + ').setgrp.snd756.pts.extkey')
"
></c-input>
<template slot="footer">
<c-button
style="margin: 0 10px 0 10px; padding: 0 12px"
size="small"
type="primary"
@click="onSeainf"
>
<i class="el-icon-info"></i>
</c-button>
<c-button
size="small"
type="primary"
style="margin: 0 0"
@click="onGctpGetrefbut"
>
详情
</c-button>
</template>
</c-fullbox>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
label=""
:prop="'setmod.setglg.setgll.' + idx + '.setgrp.snd756.pts.adrblk'"
label-width="165px"
>
<c-input
type="textarea"
:rows="4"
v-model="model.setmod.setglg.setgll[idx].setgrp.snd756.pts.adrblk"
maxlength="35"
show-word-limit
placeholder="请输入地址信息"
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
label="发送方联系人(Tag 53a)"
:prop="'setmod.setglg.setgll.' + idx + '.setgrp.actser.pts.extkey'"
label-width="165px"
>
<c-fullbox>
<c-input
v-model="model.setmod.setglg.setgll[idx].setgrp.actser.pts.extkey"
maxlength="16"
placeholder="请输入"
@keyup.enter.native="
showGridPromptDialog('gcdgrp.prb.pts.extkey')
"
></c-input>
<template slot="footer">
<c-button
style="margin: 0 10px 0 10px; padding: 0 12px"
size="small"
type="primary"
@click="onSeainf"
>
<i class="el-icon-info"></i>
</c-button>
<c-button
size="small"
type="primary"
style="margin: 0 0"
@click="onGctpGetrefbut"
>
详情
</c-button>
</template>
</c-fullbox>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
label=""
:prop="'setmod.setglg.setgll.' + idx + '.setgrp.actser.pts.adrblk'"
label-width="165px"
>
<c-input
type="textarea"
:rows="4"
v-model="model.setmod.setglg.setgll[idx].setgrp.actser.pts.adrblk"
maxlength="35"
show-word-limit
placeholder="请输入地址信息"
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
label="接收方联系人(Tag 54a)"
:prop="'setmod.setglg.setgll.' + idx + '.setgrp.rcvcor2.pts.extkey'"
label-width="165px"
>
<c-fullbox>
<c-input
v-model="model.setmod.setglg.setgll[idx].setgrp.rcvcor2.pts.extkey"
maxlength="16"
placeholder="请输入"
@keyup.enter.native="
showGridPromptDialog('gcdgrp.prb.pts.extkey')
"
></c-input>
<template slot="footer">
<c-button
style="margin: 0 10px 0 10px; padding: 0 12px"
size="small"
type="primary"
@click="onSeainf"
>
<i class="el-icon-info"></i>
</c-button>
<c-button
size="small"
type="primary"
style="margin: 0 0"
@click="onGctpGetrefbut"
>
详情
</c-button>
</template>
</c-fullbox>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
label=""
:prop="'setmod.setglg.setgll.' + idx + '.setgrp.rcvcor2.pts.adrblk'"
label-width="165px"
>
<c-input
type="textarea"
:rows="4"
v-model="model.setmod.setglg.setgll[idx].setgrp.rcvcor2.pts.adrblk"
maxlength="35"
show-word-limit
placeholder="请输入地址信息"
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
label="接收方账户"
:prop="'setmod.setglg.setgll.' + idx + '.sespay.rcvcor2acc'"
label-width="165px"
>
<c-input
v-model="model.setmod.setglg.setgll[idx].sespay.rcvcor2acc"
maxlength="34"
placeholder="请输入接收方账户"
></c-input>
</el-form-item>
</c-col>
<c-col :span="22">
<el-form-item
label="发送给接收方信息(Tag 72)"
:prop="'setmod.setglg.setgll.' + idx + '.sespay.strinf'"
label-width="165px"
>
<c-input
type="textarea"
:rows="4"
v-model="model.setmod.setglg.setgll[idx].sespay.strinf"
maxlength="35"
show-word-limit
placeholder="请输入信息"
></c-input>
</el-form-item>
</c-col>
<c-col :span="2">
<c-button
size="small"
type="primary"
style="margin: 0 0 0 3px"
@click="
showGridPromptDialog(
'setmod.setglg.setgll.sespay.cod.buttxmsel',
null,
null,
{ TXT: 'setmod.setglg.setgll[' + idx + '].sespay.strinf' },
{ TXT: false },
'doxpDialog'
)
"
>
...
</c-button>
</c-col>
</c-col>
</div>
</template>
<script>
import event from '../event';
export default {
inject: ["root"],
props: ["model", "codes", "idx"],
mixins: [event],
data() {
return {};
},
methods: {},
created: function () {},
};
</script>
<style>
</style>
<template>
<div class="eibs">
<c-row>
<c-col :span="24">
<c-col :span="12" style="padding-right: 20px;">
<c-col :span="24">
<el-form-item label="Parent Reference" prop="dftcre.dfdgrp.rec.pntref">
<c-input v-model="model.dftcre.dfdgrp.rec.pntref" maxlength="16" placeholder="请输入Parent Reference"></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<c-col :span="21">
<el-form-item label="代付业务编号:" prop="dftcre.dfdgrp.rec.ownref">
<c-input v-model="model.dftcre.dfdgrp.rec.ownref" maxlength="16" placeholder="请输入代付业务编号:"></c-input>
</el-form-item>
</c-col>
<c-col :span="3">
<c-button size="small" type="primary" @click="onDftpButgetref">
Get
</c-button>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="13">
<el-form-item label="单据金额:" prop="dftcre.oricur">
<c-select v-model="model.dftcre.oricur" style="width:100%" placeholder="请选择单据金额:" :code="codes.cur">
</c-select>
</el-form-item>
</c-col>
<c-col :span="11">
<el-form-item label="" prop="dftcre.oriamt" label-width="5px">
<c-input v-model="model.dftcre.oriamt" placeholder="请输入单据金额:"></c-input>
</el-form-item>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="13">
<el-form-item label="代付金额:" prop="dftcre.dfdgrp.cbs.max.cur">
<c-select v-model="model.dftcre.dfdgrp.cbs.max.cur" style="width:100%" placeholder="请选择代付金额:" :code="codes.cur">
</c-select>
</el-form-item>
</c-col>
<c-col :span="11">
<el-form-item label="" prop="dftcre.dfdgrp.cbs.max.amt" label-width="5px">
<c-input v-model="model.dftcre.dfdgrp.cbs.max.amt" placeholder="请输入代付金额:"></c-input>
</el-form-item>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="13">
<el-form-item label="代付余额:" prop="dftcre.dfdgrp.cbs.opn1.cur">
<c-select v-model="model.dftcre.dfdgrp.cbs.opn1.cur" style="width:100%" placeholder="请选择代付余额:" :code="codes.cur">
</c-select>
</el-form-item>
</c-col>
<c-col :span="11">
<el-form-item label="" prop="dftcre.dfdgrp.cbs.opn1.amt" label-width="5px">
<c-input v-model="model.dftcre.dfdgrp.cbs.opn1.amt" placeholder="请输入代付余额:"></c-input>
</el-form-item>
</c-col>
</c-col>
<c-col :span="24">
<el-form-item label="代付类型:" prop="dftcre.dfdgrp.rec.fintyp">
<c-select v-model="model.dftcre.dfdgrp.rec.fintyp" style="width:100%" placeholder="请选择代付类型:" :code="codes.fintyp">
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<c-col :span="12">
<el-form-item label="境内境外代付:" prop="dftcre.dfdgrp.rec.dfuflg">
<c-select v-model="model.dftcre.dfdgrp.rec.dfuflg" style="width:100%" placeholder="请选择境内境外代付:" :code="codes.dfuflg">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="发票类型" prop="dftcre.dfdgrp.rec.invtyp">
<c-select v-model="model.dftcre.dfdgrp.rec.invtyp" style="width:100%" placeholder="请选择发票类型" :code="codes.invtyp">
</c-select>
</el-form-item>
</c-col>
</c-col>
<c-col :span="24">
<el-form-item label="交易类型:" prop="dftcre.dfdgrp.rec.trntyp">
<c-select v-model="model.dftcre.dfdgrp.rec.trntyp" style="width:100%" placeholder="请选择交易类型:" :code="codes.trntyp">
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="代付起始日:" prop="dftcre.dfdgrp.rec.stttendat">
<c-date-picker type="date" v-model="model.dftcre.dfdgrp.rec.stttendat" style="width:100%" placeholder="请选择代付起始日:"></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="代付到期日:" prop="dftcre.dfdgrp.rec.matdat">
<c-date-picker type="date" v-model="model.dftcre.dfdgrp.rec.matdat" style="width:100%" placeholder="请选择代付到期日:"></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="代付期限:" prop="dftcre.dfdgrp.rec.tenday">
<c-input v-model="model.dftcre.dfdgrp.rec.tenday" placeholder="请输入代付期限:"></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="计息周期:" prop="dftcre.dfdgrp.rec.intprd">
<c-select v-model="model.dftcre.dfdgrp.rec.intprd" style="width:100%" placeholder="请选择计息周期:" :code="codes.intprd">
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="代付利率:" prop="dftcre.dfdgrp.rec.actrat">
<c-input v-model="model.dftcre.dfdgrp.rec.actrat" placeholder="请输入代付利率:"></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<c-col :span="12">
<el-form-item label="利率浮动方式:" prop="dftcre.dfdgrp.rec.flttyp">
<c-select v-model="model.dftcre.dfdgrp.rec.flttyp" style="width:100%" placeholder="请选择利率浮动方式:" :code="codes.flttyp">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="浮动值" prop="dftcre.dfdgrp.rec.fltval">
<c-input v-model="model.dftcre.dfdgrp.rec.fltval" placeholder="请输入浮动值"></c-input>
</el-form-item>
</c-col>
</c-col>
<c-col :span="24">
<el-form-item label="货押标识:" prop="dftcre.dfdgrp.rec.guaflg">
<c-select v-model="model.dftcre.dfdgrp.rec.guaflg" style="width:100%" placeholder="请选择货押标识:" :code="codes.guaflg">
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<c-col :span="13">
<el-form-item label="代付金额:" prop="dftcre.dfucur">
<c-select v-model="model.dftcre.dfucur" style="width:100%" placeholder="请选择代付金额:" :code="codes.cur">
</c-select>
</el-form-item>
</c-col>
<c-col :span="11">
<el-form-item label="" prop="dftcre.dfuamt" label-width="5px">
<c-input v-model="model.dftcre.dfuamt" placeholder="请输入代付金额:"></c-input>
</el-form-item>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="13">
<el-form-item label="代付利息:" prop="dftcre.dfdgrp.rec.rescur">
<c-select v-model="model.dftcre.dfdgrp.rec.rescur" style="width:100%" placeholder="请选择代付利息:" :code="codes.cur">
</c-select>
</el-form-item>
</c-col>
<c-col :span="11">
<el-form-item label="" prop="dftcre.dfdgrp.rec.resamt" label-width="5px">
<c-input v-model="model.dftcre.dfdgrp.rec.resamt" placeholder="请输入代付利息"></c-input>
</el-form-item>
</c-col>
</c-col>
</c-col>
<c-col :span="12" style="padding-left: 20px;">
<c-col :span="24">
<el-form-item label="Parent Contract Name" prop="dftcre.dfdgrp.rec.pntnam">
<c-input v-model="model.dftcre.dfdgrp.rec.pntnam" maxlength="40" placeholder="请输入Parent Contract Name"></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="Name of Loan Contract" prop="dftcre.dfdgrp.rec.nam">
<c-input v-model="model.dftcre.dfdgrp.rec.nam" maxlength="40" placeholder="请输入Name of Loan Contract"></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="申请人" prop="dftcre.dfdgrp.apl.pts.ref">
<c-input v-model="model.dftcre.dfdgrp.apl.pts.ref" maxlength="16" placeholder="请输入申请人Ref."></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<c-col :span="21">
<el-form-item label="地址编号" prop="dftcre.dfdgrp.apl.pts.extkey">
<c-input v-model="model.dftcre.dfdgrp.apl.pts.extkey" maxlength="16" placeholder="请输入地址编码"></c-input>
</el-form-item>
</c-col>
<c-col :span="1">
<el-form-item label="" prop="dftcre.dftp.aplp.ptsget.sdamod.seainf" v-show="false">
<c-input v-model="model.dftcre.dftp.aplp.ptsget.sdamod.seainf" placeholder="请输入"></c-input>
</el-form-item>
</c-col>
<c-col :span="2">
<c-button size="small" type="primary" @click="onAplpDet">
详情
</c-button>
</c-col>
</c-col>
<c-col :span="24">
<el-form-item label="地址信息" prop="dftcre.dfdgrp.apl.pts.adrblk">
<c-input type="textarea" v-model="model.dftcre.dfdgrp.apl.pts.adrblk" maxlength="35" show-word-limit placeholder="请输入地址信息" :rows="5"></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="中文地址" prop="dftcre.dfdgrp.apl.dbfadrblkcn" v-show="false">
<c-input type="textarea" v-model="model.dftcre.dfdgrp.apl.dbfadrblkcn" maxlength="35" show-word-limit placeholder="请输入Chinese address" :rows="5"></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="代付行" prop="dftcre.dfdgrp.dff.pts.ref">
<c-input v-model="model.dftcre.dfdgrp.dff.pts.ref" maxlength="16" placeholder="请输入代付行"></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<c-col :span="21">
<el-form-item label="地址编号" prop="dftcre.dfdgrp.dff.pts.extkey">
<c-input v-model="model.dftcre.dfdgrp.dff.pts.extkey" maxlength="16" placeholder="请输入地址编码"></c-input>
</el-form-item>
</c-col>
<c-col :span="3">
<c-button size="small" type="primary" @click="onDffpDet">
详情
</c-button>
</c-col>
</c-col>
<c-col :span="24">
<el-form-item label="名称" prop="dftcre.dfdgrp.dff.namelc">
<c-input type="textarea" v-model="model.dftcre.dfdgrp.dff.namelc" maxlength="35" show-word-limit placeholder="请输入名称" :rows="5" ></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="地址" prop="dftcre.dfdgrp.dff.adrelc" v-show="false">
<c-input type="textarea" v-model="model.dftcre.dfdgrp.dff.adrelc" maxlength="35" show-word-limit placeholder="请输入地址" ></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="代付行核心客户号" prop="dftcre.dfdgrp.rec.bankno">
<c-input v-model="model.dftcre.dfdgrp.rec.bankno" maxlength="16" placeholder="请输入代付行核心客户号"></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="代付行中文名" prop="dftcre.dfdgrp.rec.bankcn">
<c-input v-model="model.dftcre.dfdgrp.rec.bankcn" maxlength="40" placeholder="请输入代付行中文名"></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="同业代付内部账号" prop="dftcre.dfdgrp.rec.bnkact">
<c-input v-model="model.dftcre.dfdgrp.rec.bnkact" maxlength="32" placeholder="请输入同业代付内部账号"></c-input>
</el-form-item>
</c-col>
</c-col>
</c-col>
<c-col :span="24" v-show="false">
<c-col :span="12">
<el-form-item label="Drag Drop Sender" prop="dftcre.dftp.aplp.ptsget.sdamod.dadsnd">
<c-input v-model="model.dftcre.dftp.aplp.ptsget.sdamod.dadsnd" placeholder="请输入Drag Drop Sender"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="名称" prop="dftcre.dfdgrp.apl.namelc">
<c-input type="textarea" v-model="model.dftcre.dfdgrp.apl.namelc" maxlength="35" show-word-limit placeholder="请输入名称" ></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="地址" prop="dftcre.dfdgrp.apl.adrelc">
<c-input type="textarea" v-model="model.dftcre.dfdgrp.apl.adrelc" maxlength="35" show-word-limit placeholder="请输入地址" ></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="Drag Drop Sender" prop="dftcre.dftp.dffp.ptsget.sdamod.dadsnd">
<c-input v-model="model.dftcre.dftp.dffp.ptsget.sdamod.dadsnd" placeholder="请输入Drag Drop Sender"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="" prop="dftcre.dftp.dffp.ptsget.sdamod.seainf">
<c-input v-model="model.dftcre.dftp.dffp.ptsget.sdamod.seainf" placeholder="请输入"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="地址信息" prop="dftcre.dfdgrp.dff.pts.adrblk">
<c-input type="textarea" v-model="model.dftcre.dfdgrp.dff.pts.adrblk" maxlength="35" show-word-limit placeholder="请输入地址信息" ></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="中文地址" prop="dftcre.dfdgrp.dff.dbfadrblkcn">
<c-input type="textarea" v-model="model.dftcre.dfdgrp.dff.dbfadrblkcn" maxlength="35" show-word-limit placeholder="请输入Chinese address" ></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<span v-text="model.dftcre.dftp.pctlab" data-path=".dftcre.dftp.pctlab" > </span>
</c-col>
</c-col>
</c-row>
</div>
</template>
<script>
import event from '../event';
export default {
inject: ['root'],
props:["model","codes"],
mixins: [event],
data(){
return {
}
},
methods:{},
created:function(){}
}
</script>
<style>
</style>
<template>
<div class="eibs">
<c-col :span="12" style="padding-right: 20px;" >
<c-form-item
label="定价审批代码"
prop="trtcre.trtmod.finmod.dinmod.dinjdm"
>
<c-input
v-model="model.trtcre.trtmod.finmod.dinmod.dinjdm"
maxlength="20"
:disabled="true"
></c-input>
</c-form-item>
</c-col>
<c-col :span="12" style="padding-left: 20px;">
<c-form-item label="定价流水号" prop="trtcre.trtmod.finmod.dinmod.dinjls">
<c-input
v-model="model.trtcre.trtmod.finmod.dinmod.dinjls"
maxlength="40"
:disabled="true"
></c-input>
</c-form-item>
</c-col>
<c-col :span="12" style="padding-right: 20px;">
<el-form-item
label="市场LPR期限品种"
prop="trtcre.trtmod.finmod.dinmod.lprtyp"
>
<c-select
v-model="model.trtcre.trtmod.finmod.dinmod.lprtyp"
style="width: 100%"
:disabled="true"
placeholder=""
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="12" style="padding-left: 20px;">
<c-form-item label="OC客户代码" prop="trtcre.trtmod.finmod.dinmod.ockhdm">
<c-input
v-model="model.trtcre.trtmod.finmod.dinmod.ockhdm"
maxlength="20"
:disabled="true"
></c-input>
</c-form-item>
</c-col>
<c-col :span="12" style="padding-right: 20px;">
<c-form-item
label="核心客户代码"
prop="trtcre.trtmod.finmod.dinmod.hxkhdm"
>
<c-input
v-model="model.trtcre.trtmod.finmod.dinmod.hxkhdm"
maxlength="20"
:disabled="true"
></c-input>
</c-form-item>
</c-col>
<c-col :span="12" style="padding-left: 20px;">
<c-form-item
label="授信批复代码"
prop="trtcre.trtmod.finmod.dinmod.sxpfdm"
>
<c-input
v-model="model.trtcre.trtmod.finmod.dinmod.sxpfdm"
maxlength="40"
:disabled="true"
></c-input>
</c-form-item>
</c-col>
<c-col :span="12" style="padding-right: 20px;">
<c-form-item label="合同号" prop="trtcre.trtmod.finmod.dinmod.djhtno">
<c-input
v-model="model.trtcre.trtmod.finmod.dinmod.djhtno"
maxlength="40"
:disabled="true"
></c-input>
</c-form-item>
</c-col>
<c-col :span="12" style="padding-left: 20px;">
<c-form-item label="授信类型" prop="trtcre.trtmod.finmod.dinmod.sxlexi">
<c-input
v-model="model.trtcre.trtmod.finmod.dinmod.sxlexi"
maxlength="20"
:disabled="true"
></c-input>
</c-form-item>
</c-col>
<c-col :span="12" style="padding-right: 20px;">
<c-form-item label="审批状态" prop="trtcre.trtmod.finmod.dinmod.spzhta">
<c-input
v-model="model.trtcre.trtmod.finmod.dinmod.spzhta"
maxlength="10"
:disabled="true"
></c-input>
</c-form-item>
</c-col>
<c-col :span="12" style="padding-left: 20px;">
<c-form-item label="产品代码" prop="trtcre.trtmod.finmod.dinmod.chapdm">
<c-input
v-model="model.trtcre.trtmod.finmod.dinmod.chapdm"
maxlength="20"
:disabled="true"
></c-input>
</c-form-item>
</c-col>
<c-col :span="12" style="padding-right: 20px;">
<c-form-item label="产品名称" prop="trtcre.trtmod.finmod.dinmod.chapmc">
<c-input
v-model="model.trtcre.trtmod.finmod.dinmod.chapmc"
maxlength="40"
:disabled="true"
></c-input>
</c-form-item>
</c-col>
<c-col :span="12" style="padding-left: 20px;">
<el-form-item
label="拟定价格标识"
prop="trtcre.trtmod.finmod.dinmod.ndjgbs"
>
<c-select
v-model="model.trtcre.trtmod.finmod.dinmod.ndjgbs"
style="width: 100%"
:disabled="true"
placeholder=""
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="12" style="padding-right: 20px;">
<c-form-item label="贷款金额" prop="trtcre.trtmod.finmod.dinmod.dakaje">
<c-input
v-model="model.trtcre.trtmod.finmod.dinmod.dakaje"
:disabled="true"
></c-input>
</c-form-item>
</c-col>
<c-col :span="12" style="padding-left: 20px;">
<c-form-item label="增值税税率" prop="trtcre.trtmod.finmod.dinmod.shuilv">
<c-input
v-model="model.trtcre.trtmod.finmod.dinmod.shuilv"
:disabled="true"
></c-input>
</c-form-item>
</c-col>
<c-col :span="12" style="padding-right: 20px;">
<c-form-item
label="最大贷款金额"
prop="trtcre.trtmod.finmod.dinmod.maxdje"
>
<c-input
v-model="model.trtcre.trtmod.finmod.dinmod.maxdje"
:disabled="true"
></c-input>
</c-form-item>
</c-col>
<c-col :span="12" style="padding-left: 20px;">
<c-form-item
label="审批价格(含税)"
prop="trtcre.trtmod.finmod.dinmod.shpjgh"
>
<c-input
v-model="model.trtcre.trtmod.finmod.dinmod.shpjgh"
:disabled="true"
></c-input>
</c-form-item>
</c-col>
<c-col :span="12" style="padding-right: 20px;">
<c-form-item
label="最小贷款金额"
prop="trtcre.trtmod.finmod.dinmod.mindje"
>
<c-input
v-model="model.trtcre.trtmod.finmod.dinmod.mindje"
:disabled="true"
></c-input>
</c-form-item>
</c-col>
<c-col :span="12" style="padding-left: 20px;">
<c-form-item
label="审批价格点差(含税)"
prop="trtcre.trtmod.finmod.dinmod.shpdch"
>
<c-input
v-model="model.trtcre.trtmod.finmod.dinmod.shpdch"
:disabled="true"
></c-input>
</c-form-item>
</c-col>
<c-col :span="12" style="padding-right: 20px;">
<c-form-item label="币种" prop="trtcre.trtmod.finmod.dinmod.bizhog">
<c-input
v-model="model.trtcre.trtmod.finmod.dinmod.bizhog"
maxlength="20"
:disabled="true"
></c-input>
</c-form-item>
</c-col>
<c-col :span="12" style="padding-left: 20px;">
<c-form-item
label="审批价格(不含税)"
prop="trtcre.trtmod.finmod.dinmod.shpijg"
>
<c-input
v-model="model.trtcre.trtmod.finmod.dinmod.shpijg"
:disabled="true"
></c-input>
</c-form-item>
</c-col>
<c-col :span="12" style="padding-right: 20px;">
<c-form-item label="贷款期限" prop="trtcre.trtmod.finmod.dinmod.dakaqx">
<c-input
v-model="model.trtcre.trtmod.finmod.dinmod.dakaqx"
:disabled="true"
></c-input>
</c-form-item>
</c-col>
<c-col :span="12" style="padding-left: 20px;">
<c-form-item
label="审批价格点差(不含税)"
prop="trtcre.trtmod.finmod.dinmod.spjgdc"
>
<c-input
v-model="model.trtcre.trtmod.finmod.dinmod.spjgdc"
:disabled="true"
></c-input>
</c-form-item>
</c-col>
<c-col :span="12" style="padding-right: 20px;">
<c-form-item
label="最大贷款期限"
prop="trtcre.trtmod.finmod.dinmod.maxqix"
>
<c-input
v-model="model.trtcre.trtmod.finmod.dinmod.maxqix"
:disabled="true"
></c-input>
</c-form-item>
</c-col>
<c-col :span="12" style="padding-left: 20px;">
<c-form-item label="定价LIBOR" prop="trtcre.trtmod.finmod.dinmod.dinjlb">
<c-input
v-model="model.trtcre.trtmod.finmod.dinmod.dinjlb"
:disabled="true"
></c-input>
</c-form-item>
</c-col>
<c-col :span="12" style="padding-right: 20px;">
<c-form-item
label="最小贷款期限"
prop="trtcre.trtmod.finmod.dinmod.minqix"
>
<c-input
v-model="model.trtcre.trtmod.finmod.dinmod.minqix"
:disabled="true"
></c-input>
</c-form-item>
</c-col>
<c-col :span="12" style="padding-left: 20px;">
<c-form-item label="审批LIBOR" prop="trtcre.trtmod.finmod.dinmod.sheplb">
<c-input
v-model="model.trtcre.trtmod.finmod.dinmod.sheplb"
:disabled="true"
></c-input>
</c-form-item>
</c-col>
<c-col :span="12" style="padding-right: 20px;">
<c-form-item label="期限单位" prop="trtcre.trtmod.finmod.dinmod.qixndw">
<c-input
v-model="model.trtcre.trtmod.finmod.dinmod.qixndw"
maxlength="10"
:disabled="true"
></c-input>
</c-form-item>
</c-col>
<c-col :span="12" style="padding-left: 20px;">
<c-form-item label="最新LIBOR" prop="trtcre.trtmod.finmod.dinmod.libor">
<c-input
v-model="model.trtcre.trtmod.finmod.dinmod.libor"
:disabled="true"
></c-input>
</c-form-item>
</c-col>
</div>
</template>
<script>
import event from '../event';
export default {
inject: ["root"],
props: ["model", "codes"],
mixins: [event],
data() {
return {};
},
methods: {},
created: function () {},
};
</script>
<style></style>
<template>
<div class="eibs">
<!-- SG000148 : 收款账号 -->
<c-col :span="12" style="padding-right: 20px">
<c-col :span="24">
<c-form-item label="收款人账号" prop="trtcre.trdgrp.rec.recaccount">
<c-input v-model="model.trtcre.trdgrp.rec.recaccount" maxlength="35" placeholder=""></c-input>
</c-form-item>
</c-col>
<!-- SG000152 : 收款人名称 -->
<c-col :span="24">
<c-form-item label="收款人名称" prop="trtcre.trtp.recname">
<c-input v-model="model.trtcre.trtp.recname" maxlength="80" placeholder=""></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item label="收款人国别代码" prop="trtcre.trdgrp.rec.reccountrycode">
<c-fullbox>
<c-input v-model="model.trtcre.trdgrp.rec.reccountrycode" maxlength="3" placeholder=""
@keyup.enter.native="showGridPromptDialog('trtcre.trdgrp.rec.reccountrycode')"
></c-input>
<template slot="footer">
<c-button size="small" type="primary" icon="el-icon-search" @click="onRecctySelbut1">
</c-button>
</template>
</c-fullbox>
</c-form-item>
</c-col>
<!-- SG000150 : 收款人国别代码 -->
<!-- SG000151 : 收款人国内地区码 -->
<c-col :span="24">
<c-form-item label="收款人国内地区码" prop="trtcre.trdgrp.rec.recdistrictcode">
<c-input v-model="model.trtcre.trdgrp.rec.recdistrictcode" maxlength="6" placeholder=""></c-input>
</c-form-item>
</c-col>
</c-col>
</div>
</template>
<script>
import event from '../event';
import T23E from "@/widget/SwfMessage/Tags/T23E";
export default {
components: {T23E},
inject: ['root'],
props:["model","codes"],
mixins: [event],
data(){
return {
}
},
methods:{},
created:function(){
}
}
</script>
<style>
</style>
<template>
<div class="eibs-tab">
<c-col :span="24">
<c-col :span="12" style="padding-right: 20px;">
<el-form-item
label="进口开证额度主体"
prop="brdgrp.apl.pts.extkey"
style="width = 100%">
<c-fullbox>
<c-input
v-model="model.brdgrp.apl.pts.extkey"
maxlength="16"
placeholder="请输入信用证编号"
></c-input>
<template slot="footer">
<c-button
style="margin:0 10px 0 10px;padding: 0 12px;"
size="small"
type="primary"
@click="onSeainf"
>
<i class="el-icon-info"></i>
</c-button>
<c-button
style="margin:0 10px 0 10px;padding: 0 12px;"
size="small"
type="primary"
@click="onSeainf"
>
<span style="font-family:'宋体';font-weight:bold">详情</span>
</c-button>
</template>
</c-fullbox>
</el-form-item>
</c-col>
<c-col :span="12" style="padding-left: 20px;">
<el-form-item label="有效日期" prop="lidgrp.rec.expdat">
<c-date-picker
type="date"
v-model="model.lidgrp.rec.expdat"
style="width:100%"
placeholder="请选择日期">
</c-date-picker>
</el-form-item>
</c-col>
</c-col>
</div>
</template>
<script>
import event from '../event';
export default {
inject: ['root'],
props:["model","codes"],
mixins: [event],
data(){
return {
}
},
methods:{},
created:function(){}
}
</script>
<style>
</style>
<template>
<div class="eibs">
<!-- ------------------Left------------------>
<c-col :span="12" style="padding-right: 20px;">
<c-col :span="24">
<el-form-item label="业务主键" prop="cnybop.cnyout.spk">
<c-input
v-model="model.cnybop.cnyout.spk"
maxlength="20"
placeholder=""
disabled
>
</c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="银行机构名称" prop="cnybop.sbankname">
<c-input
v-model="model.cnybop.sbankname"
maxlength="80"
placeholder=""
disabled
>
</c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="付款人账号" prop="cnybop.cnyout.spayeeacct">
<c-input
v-model="model.cnybop.cnyout.spayeeacct"
maxlength="32"
placeholder=""
业务主键
>
</c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
label="收款人常驻国家/地区编号"
prop="cnybop.cnyout.spayercountrycode"
>
<c-col :span="20">
<c-input
v-model="model.cnybop.cnyout.spayercountrycode"
maxlength="3"
placeholder=""
></c-input>
</c-col>
<c-col :span="4" style="text-align: right">
<c-button
size="small"
type="primary"
icon="el-icon-search"
></c-button>
</c-col>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="结算方式" prop="cnybop.cnyout.sbalancemode">
<c-select
v-model="model.cnybop.cnyout.sbalancemode"
style="width: 100%"
placeholder="请选择结算方式"
>
<el-option
v-for="item in codes.sbalancemode"
:key="item.value"
:label="item.label"
:value="item.value"
></el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
label="清算(结算)账户类型"
prop="cnybop.cnyout.cpayeraccttyp"
>
<c-select
v-model="model.cnybop.cnyout.cpayeraccttyp"
placeholder="请选择"
style="width: 100%"
>
<el-option
v-for="item in codes.cpayeraccttyp"
:key="item.value"
:label="item.label"
:value="item.value"
></el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
label="清算(结算)账户账号"
prop="cnybop.cnyout.spayeracct"
>
<c-input
v-model="model.cnybop.cnyout.spayeracct"
maxlength="32"
placeholder=""
readonly
>
</c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="付款日期" prop="cnybop.cnyout.dpayeedate">
<c-date-picker
type="date"
placeholder=""
v-model="model.cnybop.cnyout.dpayeedate"
style="width: 100%"
></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="付款币种" prop="cnybop.cnyout.spayeecny">
<c-select
v-model="model.cnybop.cnyout.spayeecny"
placeholder="请选择"
style="width: 100%"
>
<el-option
v-for="item in codes.gitopn_cur"
:key="item.value"
:label="item.label"
:value="item.value"
></el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="原币金额" prop="cnybop.cnyout.ftotalamt">
<c-input v-model="model.cnybop.cnyout.ftotalamt" placeholder="">
</c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="货物贸易付款金额" prop="cnybop.cnyout.fpayeeamt">
<c-input v-model="model.cnybop.cnyout.fpayeeamt" placeholder="">
</c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="已报关付款金额" prop="cnybop.cnyout.fcustomsamt">
<c-input v-model="model.cnybop.cnyout.fcustomsamt" placeholder="">
</c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="已备案付款金额" prop="cnybop.cnyout.frecordamt">
<c-input v-model="model.cnybop.cnyout.frecordamt" placeholder="">
</c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="交易附言" prop="cnybop.saddwordout">
<c-input v-model="model.cnybop.saddwordout" placeholder=""> </c-input>
</el-form-item>
</c-col>
</c-col>
<!-- ------------------Right------------------>
<c-col :span="12" style="padding-left: 20px;">
<c-col :span="24">
<el-form-item
label="银行业务编号"
label-width="30%"
prop="cnybop.cnyout.sbanktrano"
>
<c-input
v-model="model.cnybop.cnyout.sbanktrano"
maxlength="22"
style="width: 100%"
placeholder=""
disabled
>
</c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
label="银行机构代码"
label-width="30%"
prop="cnybop.cnyout.sbankorgcode"
>
<c-input
v-model="model.cnybop.cnyout.sbankorgcode"
maxlength="12"
placeholder=""
disabled
>
</c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
label="付款人机构代码或身份证件号码"
label-width="30%"
prop="cnybop.spayeename"
>
<c-input
v-model="model.cnybop.spayeename"
maxlength="80"
style="width: 100%"
placeholder=""
>
</c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
label="付款人属性"
label-width="30%"
prop="cnybop.cnyout.cpayeeattr"
>
<c-select
v-model="model.cnybop.cnyout.cpayeeattr"
placeholder="请选择付款人属性"
style="width: 100%"
>
<el-option
v-for="item in codes.cpayeeattr"
:key="item.value"
:label="item.label"
:value="item.value"
></el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
label="付款人名称"
label-width="30%"
prop="cnybop.spayername"
>
<c-input
v-model="model.cnybop.spayername"
maxlength="80"
placeholder=""
readonly
>
</c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
label="收款行SWIFT BIC"
label-width="30%"
prop="cnybop.cnyout.sswiftbic"
>
<c-input
v-model="model.cnybop.cnyout.sswiftbic"
maxlength="11"
placeholder=""
>
</c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
label="中间转汇行"
label-width="30%"
prop="cnybop.cnyout.smidtransbank"
>
<c-input
v-model="model.cnybop.cnyout.smidtransbank"
maxlength="11"
placeholder=""
>
</c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
label="预付款比例"
label-width="30%"
prop="cnybop.outscale"
>
<c-input v-model="model.cnybop.outscale" maxlength="4" placeholder="">
</c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
label="预付款金额"
label-width="30%"
prop="cnybop.cnyout.fprepayeeamt"
>
<c-input v-model="model.cnybop.cnyout.fprepayeeamt" placeholder="">
</c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
label="结账期"
label-width="30%"
prop="cnybop.cnyout.iaccountperiod"
>
<c-input v-model="model.cnybop.cnyout.iaccountperiod" placeholder="">
</c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
label="原申报号码"
label-width="30%"
prop="cnybop.cnyout.sorilevyno"
>
<c-input
v-model="model.cnybop.cnyout.sorilevyno"
maxlength="24"
placeholder=""
>
</c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
label="无货物报关进出境物流货物金额"
label-width="30%"
prop="cnybop.cnyout.fonshoreamt"
>
<c-input v-model="model.cnybop.cnyout.fonshoreamt" placeholder="">
</c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
label="无货物报关离岸转手买卖金额"
label-width="30%"
prop="cnybop.cnyout.foffshoreamt"
>
<c-input v-model="model.cnybop.cnyout.foffshoreamt" placeholder="">
</c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
label="无货物报关其他金额"
label-width="30%"
prop="cnybop.cnyout.fnogoodsamt"
>
<c-input v-model="model.cnybop.cnyout.fnogoodsamt" placeholder="">
</c-input>
</el-form-item>
</c-col>
</c-col>
</div>
</template>
<script>
import event from '../event';
export default {
inject: ["root"],
props: ["model", "codes"],
mixins: [event],
data() {
return {
};
},
};
</script>
<style>
</style>
\ No newline at end of file
<template>
<div class="eibs-tab">
<el-collapse v-model="activeNames" @change="handleChange">
<el-collapse-item title="单据结算" name="utlp">
<m-utlp ref="utlp" :model="model" :codes="codes" />
</el-collapse-item>
<el-collapse-item title="CIPS" name="cips2" v-if="model.trnmod.cmtflg == 'P'">
<m-cips2 :model="model" :codes="codes" />
</el-collapse-item>
<el-collapse-item title="CIPS要素" name="cips" v-if="model.trnmod.cmtflg == 'P'">
<m-cips :model="model" :codes="codes" />
</el-collapse-item>
<el-collapse-item title="创建融资" name="trtcrep" v-if="model.trtcre.crefinflg != ''">
<m-trtcrep :model="model" :codes="codes" />
</el-collapse-item>
<el-collapse-item title="定价系统" name="dinpan" v-if="
model.trtcre.trtmod.finmod.dinjdm != '' &&
model.trtcre.crefinflg != ''
">
<m-dinpan :model="model" :codes="codes" />
</el-collapse-item>
<el-collapse-item title="融资款项" name="rzkx" v-model="model.trtcre.crefinflg" v-if="model.trtcre.crefinflg">
<m-rzkx :model="model" :codes="codes" />
</el-collapse-item>
<el-collapse-item title="定向收付" name="dxzfp" v-if="model.trtcre.crefinflg">
<m-dxzfp :model="model" :codes="codes" />
</el-collapse-item>
<!-- <el-collapse-item title="通知付款(MT756)" name="det756" v-if="model.setmod.setglg.setgll[0].dsp == 'PAC'">
<m-det756 :model="model" :codes="codes" :idx="0"/>
</el-collapse-item> -->
<!-- <el-collapse-item title="头寸调拨(MT202)" name="det202cv" v-if="model.setmod.setglg.setgll[0].dsp == 'PAC'">
<m-det202cv :model="model" :codes="codes" />
</el-collapse-item> -->
<el-collapse-item v-for="(pac, idx) in pacs" :key="idx" :title="pac.title" :name="pac.name">
<m-det756 v-if="pac.type === '756'" :model="model" :codes="codes" :idx="pac.idx"/>
<m-det202cv v-else-if="pac.type === '202'" :model="model" :codes="codes" :idx="pac.idx" />
</el-collapse-item>
</el-collapse>
</div>
</template>
<script>
import event from '../event';
import Utlp from "./Utlp";
import Trtcrep from "./Trtcrep";
import Dinpan from "./Dinpan";
import Det756 from "./Det756";
import Det202cv from "./Det202cv";
import Cips from "./Cips";
import Cips2 from "./Cips2";
import Rzkx from "./Rzkx";
import Dxzfp from "./Dxzfp";
export default {
components: {
"m-rzkx": Rzkx,
"m-dxzfp": Dxzfp,
"m-utlp": Utlp,
"m-trtcrep": Trtcrep,
"m-dinpan": Dinpan,
"m-det756": Det756,
"m-det202cv": Det202cv,
"m-cips": Cips,
"m-cips2": Cips2,
},
inject: ["root"],
props: ["model", "codes"],
mixins: [event],
data() {
return {
activeNames: ["utlp"]
};
},
computed: {
pacs() {
const pa = []
const setgll = this.model.setmod.setglg.setgll
for (let i = 0; i < setgll.length; i++) {
const setg = setgll[i];
// 765和202页面出现条件(费用/账务页面:结算,处理方式是PAC时,756和202页面才能显示)
if (setg.dsp === 'PAC') {
const temp = []
temp.push(setg.rol )
temp.push(setg.acccur )
temp.push(setg.fmtaccamt )
pa.push({ idx: i, title: '通知付款(MT756 ' + temp.join(' ') + ')', name: 'det756_' + temp.join('_'), type: '756' })
pa.push({ idx: i, title: '头寸调拨(MT202 ' + temp.join(' ') + ')', name: 'det202cv_' + temp.join('_'), type: '202' })
}
}
return pa
}
},
methods: {
handleChange(val) {
console.log(val);
},
},
created: function () {},
};
</script>
<style>
</style>
<!--D,显示rz1-->
<template>
<div class="eibs">
<c-col :span="24" style="height: 24px">
<el-form-item label="我行已将上述融资款项" label-width="150px" class="messageLabel"></el-form-item>
</c-col>
<!-- ------------------左部------------------>
<!-- <c-col :span="12" style="padding-right: 20px">-->
<!-- <c-col :span="24">-->
<!-- <c-form-item style="float: left">-->
<!-- <c-checkbox v-model="model.financ.rzkx1">贷记贵司指定账户</c-checkbox>-->
<!-- </c-form-item>-->
<!-- </c-col>-->
<!-- <c-col :span="24">-->
<!-- <c-form-item style="float: left">-->
<!-- <c-checkbox v-model="model.financ.rzkx2">支付进口信用证项下款项</c-checkbox>-->
<!-- </c-form-item>-->
<!-- </c-col>-->
<!-- <c-col :span="24">-->
<!-- <c-form-item style="float: left">-->
<!-- <c-checkbox v-model="model.financ.rzkx3">支付进口代收项下款项</c-checkbox>-->
<!-- </c-form-item>-->
<!-- </c-col>-->
<!-- <c-col :span="24">-->
<!-- <c-form-item style="float: left">-->
<!-- <c-checkbox v-model="model.financ.rzkx4">支付汇出汇款项下款项</c-checkbox>-->
<!-- </c-form-item>-->
<!-- </c-col>-->
<!-- </c-col>-->
<!-- &lt;!&ndash; &#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;右部&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&ndash;&gt;-->
<!-- <c-col :span="12" style="padding-left: 20px">-->
<!-- <c-col :span="24">-->
<!-- <el-form-item label="帐号:" prop="financ.acc" >-->
<!-- <c-input v-model="model.financ.acc" maxlength="40" placeholder="请输入帐号" :disabled="model.financ.rzkx1==''||model.financ.rzkx1==null"></c-input>-->
<!-- </el-form-item>-->
<!-- </c-col>-->
<!-- <c-col :span="24">-->
<!-- <el-form-item label="业务编号" prop="financ.ref2">-->
<!-- <c-input v-model="model.financ.ref2" maxlength="20" placeholder="请输入业务编号" :disabled="model.financ.rzkx1==''||model.financ.rzkx1==null"></c-input>-->
<!-- </el-form-item>-->
<!-- </c-col>-->
<!-- <c-col :span="24">-->
<!-- <el-form-item label="业务编号" prop="financ.ref3">-->
<!-- <c-input v-model="model.financ.ref3" maxlength="20" placeholder="请输入业务编号" :disabled="model.financ.rzkx1==''||model.financ.rzkx1==null"></c-input>-->
<!-- </el-form-item>-->
<!-- </c-col>-->
<!-- <c-col :span="24">-->
<!-- <el-form-item label="业务编号" prop="financ.ref4">-->
<!-- <c-input v-model="model.financ.ref4" maxlength="20" placeholder="请输入业务编号" :disabled="model.financ.rzkx1==''||model.financ.rzkx1==null"></c-input>-->
<!-- </el-form-item>-->
<!-- </c-col>-->
<!-- </c-col>-->
<div>
<!-- <c-col :span="24" style="height: 24px">-->
<!-- <el-form-item label="我行已将上述融资款项" class="messageLabel"></el-form-item>-->
<!-- </c-col>-->
<!-- <c-col :span="24" style="height: 0px">-->
<!-- <el-divider></el-divider>-->
<!-- </c-col>-->
<!-- <br><br>-->
<c-row>
<c-col :span="6">
<c-checkbox v-model="model.financ.rzkx1">贷记贵司指定账户</c-checkbox>
</c-col>
<c-col :span="12">
<el-form-item label="帐号:" prop="financ.acc" >
<c-input v-model="model.financ.acc" maxlength="40" placeholder="请输入帐号" :disabled="model.financ.rzkx1==''||model.financ.rzkx1==null"></c-input>
</el-form-item>
</c-col>
</c-row>
<c-row>
<c-col :span="6">
<c-checkbox v-model="model.financ.rzkx2">支付进口信用证项下款项</c-checkbox>
</c-col>
<c-col :span="12">
<el-form-item label="业务编号" prop="financ.ref2">
<c-input v-model="model.financ.ref2" maxlength="20" placeholder="请输入业务编号" :disabled="model.financ.rzkx1==''||model.financ.rzkx1==null"></c-input>
</el-form-item>
</c-col>
</c-row>
<c-row>
<c-col :span="6">
<c-checkbox v-model="model.financ.rzkx3">支付进口代收项下款项</c-checkbox>
</c-col>
<c-col :span="12">
<el-form-item label="业务编号" prop="financ.ref3">
<c-input v-model="model.financ.ref3" maxlength="20" placeholder="请输入业务编号" :disabled="model.financ.rzkx1==''||model.financ.rzkx1==null"></c-input>
</el-form-item>
</c-col>
</c-row>
<c-row>
<c-col :span="6">
<c-checkbox v-model="model.financ.rzkx4">支付汇出汇款项下款项</c-checkbox>
</c-col>
<c-col :span="12">
<el-form-item label="业务编号" prop="financ.ref4">
<c-input v-model="model.financ.ref4" maxlength="20" placeholder="请输入业务编号" :disabled="model.financ.rzkx1==''||model.financ.rzkx1==null"></c-input>
</el-form-item>
</c-col>
</c-row>
</div>
</div>
</template>
<script>
import event from '../event';
export default {
inject: ['root'],
props: ["model", "codes"],
mixins: [event],
data() {
return {
}
},
methods: {},
created: function () {
}
}
</script>
<style>
</style>
<template>
<div class="eibs-tab">
<c-col :span="24">
<div class="e-table-wrapper">
<el-table
:data="model.liaall.limmod.limpfp.clmcbe|| []"
style="width: 100%"
>
<el-table-column
prop="limtyp"
label="限制类型"
sortable
width="150">
</el-table-column>
<el-table-column
prop="cur"
label="业务币种"
sortable
width="80">
</el-table-column>
<el-table-column
prop="cbeamt"
label="业务发生额"
sortable
width="90">
</el-table-column>
<el-table-column
prop="reqtyp1"
label="Req.Typel"
sortable
width="100">
</el-table-column>
<el-table-column
prop="limcbeamt"
label="额度发生额"
sortable
width="100">
</el-table-column>
<el-table-column
prop="reqtyp2"
label="Req.Type2"
sortable
width="100">
</el-table-column>
<el-table-column
prop="ckcbeamt"
label="敞口发生额"
sortable
width="100">
</el-table-column>
<el-table-column
prop="credat"
label="额度日期"
sortable
width="100">
</el-table-column>
<el-table-column
prop="ptyextkey"
label="客户编号"
sortable
width="100">
</el-table-column>
<el-table-column
prop="ptynam"
label="客户名称"
sortable
width="100">
</el-table-column>
<el-table-column
prop="ownref"
label="业务编号"
sortable
width="100">
</el-table-column>
<el-table-column
prop="ccvbl"
label="合同保证金比例"
sortable
width="100">
</el-table-column>
<el-table-column
prop="limvar"
label="额度类型"
sortable
width="100">
</el-table-column>
<el-table-column
prop="dgzylimref"
label="额度编号"
sortable
width="100">
</el-table-column>
</el-table>
<el-pagination
layout="prev, pager, next"
:total="model.liaall.limmod.limpfp.clmcbe.length">
</el-pagination>
</div>
</c-col>
<c-col :span="24">
<div class="e-table-wrapper">
<el-table
:data="model.liaall.limmod.limpfp.clmcbb|| []"
style="width: 100%"
>
<el-table-column
prop="dgzylimvar"
label="额度品种"
sortable
width="100">
</el-table-column>
<el-table-column
prop="tzhamt"
label="调整后业务余额"
sortable
width="100">
</el-table-column>
<el-table-column
prop="tzhccv"
label="调整后保证金比例"
sortable
width="100">
</el-table-column>
<el-table-column
prop="tzhlimamt"
label="调整后拟占用额度"
sortable
width="100">
</el-table-column>
<el-table-column
prop="tzhlimck"
label="调整后拟占用敞口"
sortable
width="100">
</el-table-column>
<el-table-column
prop="tzqamt"
label="调整前业务余额"
sortable
width="100">
</el-table-column>
<el-table-column
prop="tzqccv"
label="调整后保证金比例"
sortable
width="100">
</el-table-column>
<el-table-column
prop="tzqlimamt"
label="调整前已占用额度"
sortable
width="100">
</el-table-column>
<el-table-column
prop="tzqlimck"
label="调整前已占用敞口"
sortable
width="100">
</el-table-column>
</el-table>
<el-pagination
layout="prev, pager, next"
:total="model.liaall.limmod.limpfp.clmcbb.length">
</el-pagination>
</div>
</c-col>
<c-col :span="24">
<div class="e-table-wrapper">
<el-table
:data="model.liaall.limmod.limpfp.clmpty|| []"
style="width: 100%"
>
<el-table-column
prop="limvar"
label="额度类型"
sortable
width="100">
</el-table-column>
<el-table-column
prop="dgzylimvar"
label="额度品种"
sortable
width="100">
</el-table-column>
<el-table-column
prop="dglimcur"
label="额度币种"
sortable
width="100">
</el-table-column>
<el-table-column
prop="dgsxlimamt"
label="授信额度"
sortable
width="100">
</el-table-column>
<el-table-column
prop="dgyylimamt"
label="已用额度"
sortable
width="100">
</el-table-column>
<el-table-column
prop="dgkylimamt"
label="可用额度"
sortable
width="100">
</el-table-column>
<el-table-column
prop="dgcklimamt"
label="授信敞口"
sortable
width="100">
</el-table-column>
<el-table-column
prop="dgyylimck"
label="已用敞口"
sortable
width="100">
</el-table-column>
<el-table-column
prop="dgkylimck"
label="可用敞口"
sortable
width="100">
</el-table-column>
<el-table-column
prop="dghfxh"
label="恢复序号"
sortable
width="100">
</el-table-column>
<el-table-column
prop="dgzylimref"
label="额度编号"
sortable
width="100">
</el-table-column>
<el-table-column
prop="dgzyliminfref"
label="额度明细编号"
sortable
width="100">
</el-table-column>
<el-table-column
prop="dgccvbl"
label="保证金比例"
sortable
width="100">
</el-table-column>
</el-table>
<el-pagination
layout="prev, pager, next"
:total="model.liaall.limmod.limpfp.clmpty.length">
</el-pagination>
</div>
</c-col>
</div>
</template>
<script>
import event from '../event';
export default {
inject: ['root'],
props:["model","codes"],
mixins: [event],
data(){
return {
}
},
methods:{},
created:function(){
}
}
</script>
<style>
</style>
<template>
<div class="eibs">
<c-row>
<!--=================顶部================= -->
<c-col :span="24">
<c-col :span="12" style="padding-right: 20px;">
<el-form-item label="单据编号" prop="trtcre.trdgrp.rec.pntref">
<c-fullbox>
<c-input disabled v-model="model.trtcre.trdgrp.rec.pntref" maxlength="16" style="width: 98%" placeholder="请输入单据编号"></c-input>
<template slot="footer">
<c-button v-model="model.trtcre.trtp.bcdget.sdamod.seainf" style="margin: 0 0 0 10px; padding: 0 12px" size="small" type="primary" @click="onSeainf">
<i class="el-icon-info"></i>
</c-button>
</template>
</c-fullbox>
</el-form-item>
</c-col>
<c-col :span="12" style="padding-left: 20px;">
<el-form-item label="摘要" prop="trtcre.trdgrp.rec.pntnam">
<c-input align="middle" v-model="model.trtcre.trdgrp.rec.pntnam" maxlength="40" disabled placeholder="请输入摘要"></c-input>
</el-form-item>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="12" style="padding-right: 20px;">
<el-form-item label="融资编号" prop="trtcre.trdgrp.rec.ownref">
<c-fullbox>
<c-input disabled v-model="model.trtcre.trdgrp.rec.ownref" maxlength="16" placeholder="请输入融资编号"></c-input>
<template slot="footer">
<c-button style="margin: 0 0 0 10px; padding: 0 12px" size="small" type="primary" @click="onSeainf">
<i class="el-icon-info"></i>
</c-button>
<c-button size="small" type="primary" :disabled="
model.trtcre.trdgrp.rec.fintyp == '' ||
model.trtcre.trdgrp.fip.pts.adrblk == '' ||
// model.trdgrp.rec.branchinr == ''||
model.trtcre.trdgrp.rec.ownref != ''
" @click="onTrtpButgetref">
获取
</c-button>
</template>
</c-fullbox>
</el-form-item>
</c-col>
<c-col :span="12" style="padding-left: 20px;">
<el-form-item label="摘要" prop="trtcre.trdgrp.rec.nam">
<c-input align="middle" v-model="model.trtcre.trdgrp.rec.nam" maxlength="40" disabled placeholder="摘要"></c-input>
</el-form-item>
</c-col>
</c-col>
<!--=================中部-左================= -->
<c-col :span="12" style="padding-right: 20px;">
<c-col :span="24">
<el-form-item label="客户经理" prop="trtcre.trtp.usr.extkey">
<c-fullbox>
<c-input disabled v-model="model.trtcre.trtp.usr.extkey" maxlength="8" placeholder="请输入客户经理" style="width: 98%"></c-input>
<template slot="footer">
<c-button style="margin: 0 0 0 10px; padding: 0 12px" size="small" type="primary" @click="onSeainf">
<i class="el-icon-info"></i>
</c-button>
</template>
</c-fullbox>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="开立日期" prop="trtcre.trdgrp.rec.issdat">
<c-date-picker type="date" v-model="model.trtcre.trdgrp.rec.issdat" style="width: 100%" placeholder="请选择开立日期" :disable="true">
</c-date-picker>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="融资品种" prop="trtcre.trdgrp.rec.fintyp">
<c-select disabled v-model="model.trtcre.trdgrp.rec.fintyp" style="width: 100%" placeholder="请选择融资品种" :disable="true">
<el-option v-for="item in codes.fintyp1" :key="item.value" :label="item.label" :value="item.value">
</el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="货押标识" prop="trtcre.trdgrp.rec.guaflg">
<c-select v-model="model.trtcre.trdgrp.rec.guaflg" style="width: 100%" placeholder="请选择货押标识">
<el-option v-for="item in codes.guaflg" :key="item.value" :label="item.label" :value="item.value">
</el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="货物编码" prop="trtcre.trdgrp.rec.stagod">
<c-select v-model="model.trtcre.trdgrp.rec.stagod" style="width: 100%" placeholder="请选择货物编码">
<el-option v-for="item in codes.godcod" :key="item.value" :label="item.label" :value="item.value">
</el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="原始币种" prop="trtcre.oricur">
<c-select v-model="model.trtcre.oricur" style="width: 100%" :disabled="true" placeholder="请选择币种" @keyup.enter.native="maxCurEvent">
<el-option v-for="item in codes.curtxt1" :key="item.value" :label="item.label" :value="item.value">
</el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="7">
<el-form-item style="text-align: left" label-width="20px" prop="trtcre.oriamt">
<c-input v-model="model.trtcre.oriamt" style="width: 100%" placeholder="请输入融资金额"></c-input>
</el-form-item>
</c-col>
<c-col :span="5">
<el-form-item prop="trtcre.trdgrp.rec.pctfin" label-width="20px" style="text-align: right;">
<c-fullbox>
<c-input v-model="model.trtcre.trdgrp.rec.pctfin"></c-input>
<template slot="footer">
<div style="padding-left: 10px;text-align: right;">%</div>
</template>
</c-fullbox>
</el-form-item>
</c-col>
<!-- SG000196 : Exchange Rate -->
<c-col :span="24">
<c-form-item label="汇率" prop="trtcre.extrat">
<c-input v-model="model.trtcre.extrat"></c-input>
</c-form-item>
</c-col>
<!-- S0000167 : 融资金额 -->
<c-col :span="24">
<c-col :span="13">
<el-form-item label="融资金额" prop="trtcre.trdgrp.cbs.max.cur">
<c-select v-model="model.trtcre.trdgrp.cbs.max.cur">
<el-option v-for="item in codes.curtxt2" :key="item.value" :label="item.label" :value="item.value">
</el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="11">
<el-form-item label="" prop="trtcre.trdgrp.cbs.max.amt" label-width="5px">
<c-input v-model="model.trtcre.trdgrp.cbs.max.amt" :disabled="true"></c-input>
</el-form-item>
</c-col>
</c-col>
<c-col :span="12">
<el-form-item label="计息周期" prop="trtcre.trtmod.finmod.intprd">
<c-select v-model="model.trtcre.trtmod.finmod.intprd" style="width: 100%" placeholder="请选择计息周期">
<el-option v-for="item in codes.intprd1" :key="item.value" :label="item.label" :value="item.value">
</el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="利率调整方式" prop="trtcre.trtmod.finmod.ratchgtyp">
<c-select v-model="model.trtcre.trtmod.finmod.ratchgtyp" style="width: 100%" placeholder="请选择利率调整方式">
<el-option v-for="item in codes.ratchgtyp1" :key="item.value" :label="item.label" :value="item.value">
</el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="开户日期" prop="trtcre.trdgrp.rec.stttendat">
<c-date-picker type="date" v-model="model.trtcre.trdgrp.rec.stttendat" style="width: 100%" placeholder="请选择开户日期" value-format="yyyy-MM-dd"></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="到期日(非节假日)" prop="trtcre.trdgrp.rec.matdat">
<c-date-picker type="date" v-model="model.trtcre.trdgrp.rec.matdat" style="width: 100%" placeholder="非节假日" :picker-options="pickerOptions" value-format="yyyy-MM-dd"></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="基准利率" prop="trtcre.trdgrp.rec.intrat">
<c-fullbox>
<c-input v-model="model.trtcre.trdgrp.rec.intrat" placeholder="请输入基准利率" :disabled="true" style="width: 82%">
</c-input>
<c-button size="small" type="primary" @click="onFinmodButget" style="width: 15%">
Get
</c-button>
</c-fullbox>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="基准利率规则" prop="trtcre.trtmod.finmod.dinmod.jzllgz">
<c-select v-model="model.trtcre.trtmod.finmod.dinmod.jzllgz" style="width: 100%" placeholder="请选择基准利率规则">
<el-option v-for="item in codes.jzllgz" :key="item.value" :label="item.label" :value="item.value">
</el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="执行利率" prop="trtcre.trdgrp.rec.actrat">
<c-input v-model="model.trtcre.trdgrp.rec.actrat" placeholder="请输入执行利率"></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="借据号" prop="trtcre.trtmod.finmod.fincod">
<c-input v-model="model.trtcre.trtmod.finmod.fincod" maxlength="17" placeholder="请输入借据号" :disabled="true"></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="第一还款账号" prop="trtcre.trtmod.finmod.act1">
<c-select v-model="model.trtcre.trtmod.finmod.act1" style="width: 100%" placeholder="请选择第一还款账号">
<el-option v-for="(item, idx) in codes.codeSet['trtcre.trtmod.finmod.act1']" :key="idx" :label="item.split('\t')[1]" :value="item.split('\t')[0]"></el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="预收息金额" prop="trtcre.trtmod.finmod.intamt">
<c-fullbox>
<c-input v-model="model.trtcre.trtmod.finmod.intamt" style="width: 77%" :disabled="true" placeholder="请输入预收息金额">
</c-input>
<c-button size="small" type="primary" @click="onFinmodButcal" :disabled="model.trtcre.trtmod.finmod.intprd != '7'" style="width: 20%">
计算
</c-button>
</c-fullbox>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="预扣息方式" prop="trtcre.trtmod.finmod.inttyp">
<c-select v-model="model.trtcre.trtmod.finmod.inttyp" style="width: 100%" placeholder="请选择预扣息方式" :disabled="model.trtcre.trtmod.finmod.intprd != '7'">
<el-option v-for="item in codes.inttyp" :key="item.value" :label="item.label" :value="item.value">
</el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="税率" label-width="110px" prop="trtcre.trtmod.finmod.shuilv">
<c-input v-model="model.trtcre.trtmod.finmod.shuilv" :disabled="true" placeholder="请输入税率"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="市场LPR期限品种" prop="trtcre.trdgrp.rec.lprtyp">
<c-select v-model="model.trtcre.trdgrp.rec.lprtyp" style="width: 100%" placeholder="请选择市场LPR期限品种">
<el-option v-for="item in codes.lprtyp" :key="item.value" :label="item.label" :value="item.value">
</el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="发票类型" prop="trtcre.trdgrp.rec.invtyp">
<c-select v-model="model.trtcre.trdgrp.rec.invtyp" style="width: 100%" placeholder="请选择发票类型">
<el-option v-for="item in codes.invtyp" :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="trtcre.trdgrp.fip.pts.ref">
<c-input v-model="model.trtcre.trdgrp.fip.pts.ref"></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<el-form-item prop="trtcre.trdgrp.fip.pts.extkey" style="width: 100%">
<c-fullbox>
<c-input :disabled="true" v-model="model.trtcre.trdgrp.fip.pts.extkey" @keyup.enter.native="
showGridPromptDialog(`trtcre.trdgrp.fip.pts.extkey`)
" @change="valueChange"></c-input>
<template slot="footer">
<c-button :disabled="true" style="margin: 0 10px 0 10px; padding: 0 12px" size="small" type="primary" icon="el-icon-search" @click="onSeainf(`rtcre.trdgrp.fip.pts.extkey`)" @onSeainf="onSeainf">
</c-button>
<c-button style="margin: 0 0" size="small" type="primary" @click="onAplpDet">
{{ $t("buttons.details") }}
</c-button>
</template>
</c-fullbox>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item prop="trtcre.trdgrp.fip.pts.adrblk">
<c-input type="textarea" :rows="4" v-model="model.trtcre.trdgrp.fip.pts.adrblk" maxlength="150" show-word-limit :disabled="true"></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="定价审批代码" prop="trtcre.trtmod.finmod.dinjdm">
<c-fullbox>
<c-input v-model="model.trtcre.trtmod.finmod.dinjdm" maxlength="20" placeholder="请输入定价审批代码" style="width: 82%">
</c-input>
<c-button size="small" type="primary" @click="onDinmodDget" :disabled="true" style="width: 15%">
获取
</c-button>
</c-fullbox>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="审批流程发起标识" prop="trtcre.trtmod.finmod.dinmod.rmbsbss">
<c-select v-model="model.trtcre.trtmod.finmod.dinmod.rmbsbs" style="width: 100%" placeholder="请选择审批流程发起标识" :disabled="true">
<el-option v-for="item in codes.jzllgz" :key="item.value" :label="item.label" :value="item.value">
</el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="14">
<el-form-item label="计息日期" prop="trtcre.trtmod.finmod.intdat">
<c-input v-model="model.trtcre.trtmod.finmod.intdat" maxlength="2" placeholder="请输入计息日期" :disabled="
model.trtcre.trtmod.finmod.intprd == '6' ||
model.trtcre.trtmod.finmod.intprd == '7' ||
model.trtcre.trtmod.finmod.intprd == 'B'
"></c-input>
</el-form-item>
</c-col>
<c-col :span="9" :offset="1">
<c-checkbox v-model="model.trtcre.trtmod.finmod.wjdkfl" :disabled="true">是否到期主动扣收贷款本息</c-checkbox>
</c-col>
<c-col :span="12">
<el-form-item label="利率调整周期" prop="trtcre.trtmod.finmod.ratchgprd">
<c-select v-model="model.trtcre.trtmod.finmod.ratchgprd" style="width: 100%" :disabled="
model.trtcre.trtmod.finmod.ratchgtyp != 'A' &&
model.trtcre.trtmod.finmod.ratchgtyp != '8' &&
model.trtcre.trtmod.finmod.ratchgtyp != '9'
">
<el-option v-for="item in codes.ratchgprd" :key="item.value" :label="item.label" :value="item.value">
</el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="利率调整月日数" prop="trtcre.trtmod.finmod.ratchgdat">
<c-input v-model="model.trtcre.trtmod.finmod.ratchgdat" maxlength="4" placeholder="请输入利率调整月日数" :disabled="
model.trtcre.trtmod.finmod.ratchgtyp != '4' &&
model.trtcre.trtmod.finmod.ratchgtyp != '3'
"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="融资天数" prop="trtcre.trdgrp.rec.tenday">
<c-input v-model="model.trtcre.trdgrp.rec.tenday" style="width: 100%" :disabled="true"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="宽限期" prop="trtcre.trtmod.finmod.graday">
<c-input v-model="model.trtcre.trtmod.finmod.graday" style="width: 100%" :disabled="true" placeholder="请输入宽限期">
</c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="浮动方式" prop="trtcre.trtmod.finmod.flttyp">
<c-select v-model="model.trtcre.trtmod.finmod.flttyp" style="width: 100%" placeholder="请选择浮动方式">
<el-option v-for="item in codes.flttyp" :key="item.value" :label="item.label" :value="item.value">
</el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="浮动值" prop="trtcre.trtmod.finmod.fltval">
<c-input v-model="model.trtcre.trtmod.finmod.fltval" placeholder="请输入浮动值" :disabled="model.trtcre.trtmod.finmod.flttyp == '0'"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="逾期计息方式" prop="trtcre.trtmod.finmod.ovdinttyp">
<c-select v-model="model.trtcre.trtmod.finmod.ovdinttyp" style="width: 100%" placeholder="请选择逾期计息方式">
<el-option v-for="item in codes.ovdinttyp" :key="item.value" :label="item.label" :value="item.value">
</el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="罚息比率" prop="trtcre.trtmod.finmod.ovdintrat">
<c-fullbox>
<c-input v-model="model.trtcre.trtmod.finmod.ovdintrat" placeholder="请输入罚息比率" :disabled="model.trtcre.trtmod.finmod.ovdinttyp == '0'"></c-input>
<template slot="footer">
<div style="padding-left: 10px;text-align: right;">%</div>
</template>
</c-fullbox>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="第三方还款方式" prop="trtcre.trtmod.finmod.acttyp">
<c-select v-model="model.trtcre.trtmod.finmod.acttyp" style="width: 100%" placeholder="请选择第三方还款方式">
<el-option v-for="item in codes.acttyp1" :key="item.value" :label="item.label" :value="item.value">
</el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="入账机构" prop="trtcre.trtmod.finmod.accbch">
<c-select v-model="model.trtcre.trtmod.finmod.accbch" style="width: 100%" placeholder="请选择入账机构">
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="第三方还款账号" prop="trtcre.trtmod.finmod.act3">
<c-select
filterable
allow-create
v-model="model.trtcre.trtmod.finmod.act3"
style="width: 100%"
:disabled="model.trtcre.trtmod.finmod.acttyp == ''"
placeholder="请选择第三方还款账号"
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<span v-text="model.trtcre.trntyp" data-path=".trntyp"> </span>
</c-col>
<c-col :span="24">
<el-form-item label="预扣息账号" prop="trtcre.trtmod.finmod.intact">
<c-input v-model="model.trtcre.trtmod.finmod.intact" style="width: 100%" placeholder="请选择利息付款账号" :disabled="true">
</c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<span v-text="model.trtcre.oppacc" data-path=".oppacc"> </span>
</c-col>
<c-col :span="24">
<el-form-item label="外币贷款专户清单" prop="trtcre.trtp.act">
<c-select v-model="model.trtcre.trtp.act" style="width: 100%" placeholder="请选择外币贷款专户清单" :disabled="model.trtcre.trdgrp.cbs.max.cur === 'CNY'">
</c-select>
</el-form-item>
</c-col>
</c-col>
</c-row>
</div>
</template>
<script>
import event from '../event';
import Ptap from "~/views/Public/Ptap";
export default {
components: {
"c-ptap": Ptap
},
inject: ["root"],
props: ["model", "codes"],
mixins: [event],
data() {
return {
zmqflg: null,
pickerOptions: {
disabledDate(time) {
return time.getDay() === 0 || time.getDay() === 6;
},
},
flag: false,
};
},
watch: {},
methods: {},
created: function () {},
};
</script>
<style></style>
<template>
<div class="eibs">
<c-row>
<c-col :span="24">
<c-col :span="12" style="padding-right: 20px">
<el-form-item
label="信用证编号"
prop="lidgrp.rec.ownref"
style="width: 100%"
>
<c-fullbox>
<c-input
v-model="model.lidgrp.rec.ownref"
maxlength="16"
placeholder="请输入信用证编号"
disabled
></c-input>
<template slot="footer">
<c-button
style="margin: 0 0 0 10px; padding: 0 12px"
size="small"
type="primary"
icon="el-icon-info"
>
<span style="font-family: '宋体'; font-weight: bold"></span>
</c-button>
</template>
</c-fullbox>
</el-form-item>
</c-col>
<c-col :span="12" style="padding-left: 20px">
<el-form-item label="有效期限" prop="lidgrp.rec.expdat">
<c-date-picker
type="date"
v-model="model.lidgrp.rec.expdat"
style="width: 100%"
placeholder="请选择日期"
disabled
>
</c-date-picker>
</el-form-item>
</c-col>
</c-col>
<!-- ====================左边======================= -->
<c-col :span="12" style="padding-right: 20px">
<c-col :span="24">
<el-form-item
label="单据编号"
prop="brdgrp.rec.ownref"
style="width: 100%"
>
<c-fullbox>
<c-input
v-model="model.brdgrp.rec.ownref"
maxlength="8"
placeholder="请输入单据编号"
disabled
></c-input>
<template slot="footer">
<c-button
style="margin: 0 0 0 10px; padding: 0 12px"
size="small"
type="primary"
icon="el-icon-info"
>
<span style="font-family: '宋体'; font-weight: bold"></span>
</c-button>
</template>
</c-fullbox>
</el-form-item>
</c-col>
<c-col :span="24">
<c-col :span="13">
<el-form-item label="单据金额" prop="brdgrp.cbs.max.cur">
<c-select
v-model="model.brdgrp.cbs.max.cur"
style="width: 100%"
placeholder="请选择单据金额币种"
:code="codes.cur"
disabled
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="11">
<el-form-item label="" prop="brdgrp.cbs.max.amt" label-width="5px">
<c-input
v-model="model.brdgrp.cbs.max.amt"
placeholder="请选择单据金额"
disabled
></c-input>
</el-form-item>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="13">
<el-form-item label="单据余额" prop="brdgrp.cbs.opn1.cur">
<c-input
v-model="model.brdgrp.cbs.opn1.cur"
maxlength="3"
placeholder="请输入单据余额币种"
disabled
></c-input>
</el-form-item>
</c-col>
<c-col :span="11">
<el-form-item label="" prop="brdgrp.cbs.opn1.amt" label-width="5px">
<c-input
v-model="model.brdgrp.cbs.opn1.amt"
placeholder="请输入单据余额"
disabled
></c-input>
</el-form-item>
</c-col>
</c-col>
<c-col :span="12">
<el-form-item label="到单日期" prop="brdgrp.rec.rcvdat">
<c-date-picker
type="date"
v-model="model.brdgrp.rec.rcvdat"
style="width: 100%"
placeholder="请选择到单日期"
disabled
></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item
label="付款通知日期"
prop="brdgrp.rec.advdat"
label-width="120px"
>
<c-date-picker
type="date"
v-model="model.brdgrp.rec.advdat"
style="width: 100%"
placeholder="请选择付款通知日期"
disabled
></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="远期单据到期日" prop="brdgrp.rec.matdat">
<c-date-picker
type="date"
v-model="model.brdgrp.rec.matdat"
style="width: 100%"
placeholder="请选择到单日期"
disabled
></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item
label="开始日期"
prop="brdgrp.rec.stadat"
label-width="120px"
>
<c-date-picker
type="date"
v-model="model.brdgrp.rec.stadat"
style="width: 100%"
placeholder="请选择开始日期"
disabled
></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="单据类型" prop="brdgrp.rec.docflg">
<c-select
v-model="model.brdgrp.rec.docflg"
style="width: 100%"
placeholder="请选择单据类型"
:code="codes.docflg"
disabled
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item
label="远期最大期限"
prop="brdgrp.rec.tenmaxday"
label-width="120px"
>
<c-input
v-model.number="model.brdgrp.rec.tenmaxday"
placeholder="请输入天数"
disabled
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="单据状态" prop="brdgrp.rec.docsta">
<c-select
v-model="model.brdgrp.rec.docsta"
style="width: 100%"
placeholder="请选择单据状态"
:code="codes.docsta1"
disabled
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="待付款单据" style="margin-bottom: 0">
<c-istream-table-noPag
ref="table"
:list="model.liaall.tenstm.rows || []"
:columns="columns"
:showSelection="true"
v-on:multipleSelect="multipleSelect"
prop="liaall.tenstm"
>
</c-istream-table-noPag>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="" label-width="0">
</el-form-item>
</c-col>
<c-col :span="24">
<c-col :span="13">
<el-form-item label="应付金额" prop="setmod.doccur">
<c-input
v-model="model.setmod.doccur"
maxlength="3"
placeholder="请选择币种"
disabled
></c-input>
</el-form-item>
</c-col>
<c-col :span="11">
<el-form-item label="" label-width="5px" prop="setmod.docamt">
<c-input
v-model="model.setmod.docamt"
placeholder="请输入金额"
@keyup.enter.native="$event.target.blur()"
@blur="eventFunction('setmod.docamt')"
></c-input>
</el-form-item>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="13">
<el-form-item label="实付金额" prop="setmod.doccur">
<c-input
v-model="model.setmod.doccur"
maxlength="3"
placeholder="请选择币种"
disabled
></c-input>
</el-form-item>
</c-col>
<c-col :span="11">
<c-fullbox>
<el-form-item label="" label-width="5px" prop="setmod.setamt">
<c-input
v-model="model.setmod.setamt"
placeholder="请输入金额"
disabled
></c-input>
</el-form-item>
</c-fullbox>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="13">
<el-form-item label="单据金额部分" prop="brdgrp.cbs.opn2.cur">
<c-select
v-model="model.brdgrp.cbs.opn2.cur"
style="width: 100%"
placeholder="请选择币种"
:code="codes.cur"
disabled
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="11">
<el-form-item label="" prop="aamset.utlamt" label-width="5px">
<c-input
v-model="model.aamset.utlamt"
placeholder="请输入金额"
disabled
@keyup.enter.native="$event.target.blur()"
@blur="eventFunction('aamset.utlamt')"
></c-input>
</el-form-item>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="13">
<el-form-item label="附加金额部分" prop="brdgrp.cbs.opn2.cur">
<c-select
v-model="model.brdgrp.cbs.opn2.cur"
style="width: 100%"
placeholder="请选择币种"
:code="codes.cur"
disabled
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="11">
<el-form-item label="" prop="aamset.utlamt2" label-width="5px">
<c-input
v-model="model.aamset.utlamt2"
placeholder="请输入金额"
disabled
@change="eventFunction('aamset.utlamt2')"
></c-input>
</el-form-item>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="12">
<el-form-item
label="跨境人民币清算模式"
prop="trnmod.cmtflg"
v-show="model.setmod.doccur == 'CNY'"
>
<c-select
v-model="model.trnmod.cmtflg"
style="width: 100%"
placeholder="请选择跨境人民币清算模式"
:code="this.cmtflg"
:disabled="model.brdgrp.rec.frepayflg == '' ? false : true"
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="12" class="">
<el-form-item
label=" "
prop="mtabut.clsflg"
label-width="120px"
style="float: left"
>
<c-checkbox disabled v-model="model.mtabut.clsflg" true-label="C"
>闭卷标识</c-checkbox
>
<!--:disabled="this.model.trnmod.cmtflg==''" -->
</el-form-item>
</c-col>
</c-col>
<c-col :span="24">
<el-form-item
label="报文类型"
prop="trnmod.swftyp"
v-show="model.trnmod.cmtflg == 'P' ? true : false"
>
<c-select
v-model="model.trnmod.swftyp"
style="width: 100%"
placeholder="请选择报文类型"
:code="codes.swftyp1"
disabled
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="发票号" prop="brdgrp.rec.invref">
<c-input
v-model="model.brdgrp.rec.invref"
maxlength="35"
placeholder="请输入发票号"
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="最迟送达日期" prop="zcsdrq">
<c-date-picker
type="date"
v-model="model.zcsdrq"
style="width: 100%"
placeholder="请选择最迟送达日期"
></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="待偿还账单">
<div class="e-table-wrapper">
<c-table
style="text-align: center"
:list="table1"
:paginationShow="false"
:border="true"
>
<el-table-column
label="编号"
prop="ownref"
width="auto"
></el-table-column>
<el-table-column
label="币种"
prop="opncur"
width="auto"
></el-table-column>
<el-table-column
label="余额"
prop="opnamt"
width="auto"
></el-table-column>
<el-table-column
label="付款"
prop="bckamt"
width="auto"
></el-table-column>
<el-table-column
label="计算"
prop="butcal"
width="auto"
></el-table-column>
</c-table>
</div>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="是否需要检验" prop="brtp.ischktyp">
<c-select
v-model="model.brtp.ischktyp"
style="width: 100%"
placeholder=""
:code="codes.ischktyp"
>
<el-option
v-for="item in codes.ischktyp"
:key="item.label"
:label="item.label"
:value="item.label"
>
</el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="预计核验日期" prop="brtp.prechkdat">
<c-date-picker
type="date"
v-model="model.brtp.prechkdat"
style="width: 100%"
placeholder="请选择预计核验日期"
:disabled="model.brtp.ischktyp != 'Y'"
></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="11" :offset="1">
<c-col :span="12">
<el-form-item label="" prop="trtcre.crefinflg" class="checkbox-left" label-width="0">
<c-checkbox v-model="model.trtcre.crefinflg" :disabled="
model.paypsb != '' || model.brdgrp.rec.frepayflg != ''
? true
: false
">创建融资</c-checkbox>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="" prop="dftcre.dfflag" class="checkbox-left" label-width="0">
<c-checkbox v-model="model.dftcre.dfflag">同业代付</c-checkbox>
</el-form-item>
</c-col>
</c-col>
<c-col :span="11">
<c-col :span="12">
<el-form-item label="" prop="paypsb" class="checkbox-left" label-width="0">
<c-checkbox v-model="model.paypsb" :disabled="model.brdgrp.rec.frepayflg == '' ? false : true">垫款</c-checkbox>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="" prop="brdgrp.rec.frepayflg" class="checkbox-left" label-width="0">
<c-checkbox v-model="model.brdgrp.rec.frepayflg">自由付款标志</c-checkbox>
</el-form-item>
</c-col>
</c-col>
</c-col>
<!-- ====================右边======================= -->
<c-col :span="12" style="padding-left: 20px">
<c-col :span="24">
<c-col :span="13">
<el-form-item label="信用证余额" prop="lidgrp.cbs.opn1.cur">
<c-input
v-model="model.lidgrp.cbs.opn1.cur"
maxlength="3"
placeholder="请输入币种"
disabled
></c-input>
</el-form-item>
</c-col>
<c-col :span="11">
<el-form-item label="" prop="lidgrp.cbs.opn1.amt" label-width="5px">
<c-input
v-model="model.lidgrp.cbs.opn1.amt"
placeholder="请输入金额"
disabled
></c-input>
</el-form-item>
</c-col>
</c-col>
<c-col :span="24">
<el-form-item label="单据简略信息" prop="brdgrp.rec.nam">
<c-input
v-model="model.brdgrp.rec.nam"
maxlength="40"
placeholder="请输入简略信息"
disabled
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="申请人参考号" prop="brdgrp.apl.pts.ref">
<c-input
v-model="model.brdgrp.apl.pts.ref"
maxlength="16"
placeholder="请输入申请人参考号"
disabled
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="申请人名称" prop="brdgrp.apl.pts.nam">
<c-input
v-model="model.brdgrp.apl.pts.nam"
maxlength="40"
placeholder="请输入名称"
disabled
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="受益人参考号" prop="brdgrp.ben.pts.ref">
<c-input
v-model="model.brdgrp.ben.pts.ref"
maxlength="16"
placeholder="请输入受益人"
disabled
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="受益人名称" prop="brdgrp.ben.pts.nam">
<c-input
v-model="model.brdgrp.ben.pts.nam"
maxlength="40"
placeholder="请输入名称"
disabled
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="交单行参考号" prop="brdgrp.prb.pts.ref">
<c-input
v-model="model.brdgrp.prb.pts.ref"
maxlength="16"
placeholder="请输入交单行"
disabled
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="交单行名称" prop="brdgrp.prb.pts.nam">
<c-input
v-model="model.brdgrp.prb.pts.nam"
maxlength="40"
placeholder="请输入名称"
disabled
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<c-col :span="13">
<el-form-item label="减少付汇金额" prop="setmod.doccur">
<c-input
v-model="model.setmod.doccur"
maxlength="3"
placeholder="请输入币种"
disabled
></c-input>
</el-form-item>
</c-col>
<c-col :span="11">
<el-form-item label="" prop="setmod.redamt" label-width="5px">
<c-input
v-model="model.setmod.redamt"
placeholder="请输入金额"
:disabled="model.brdgrp.rec.frepayflg != '' ? true : false"
></c-input>
</el-form-item>
</c-col>
</c-col>
<c-col :span="24">
<el-form-item label="合同号" prop="brdgrp.rec.rptref">
<c-input
v-model="model.brdgrp.rec.rptref"
maxlength="25"
placeholder="请输入合同号"
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="77A字段" prop="nar754">
<c-input
type="textarea"
v-model="model.nar754"
maxlength="700"
show-word-limit
placeholder="请输入77A字段内容"
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="交单人" prop="brdgrp.rec.docprbrol">
<c-select
v-model="model.brdgrp.rec.docprbrol"
style="width: 100%"
placeholder="请选择交单人"
@change="selectOrCheckboxRule('brdgrp.rec.docprbrol')"
:code="codes.docprbrol1"
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="交单人地址编码" prop="brdgrp.prb.pts.extkey">
<c-fullbox>
<c-input
:disabled="this.flag4"
v-model="model.brdgrp.prb.pts.extkey"
maxlength="16"
placeholder="请输入地址编码"
@keyup.enter.native="
showGridPromptDialog('brdgrp.prb.pts.extkey')
"
></c-input>
<template slot="footer">
<c-button
style="margin: 0 10px 0 10px; padding: 0 12px"
size="small"
type="primary"
icon="el-icon-info"
>
<span style="font-family: '宋体'; font-weight: bold"></span>
</c-button>
<c-button
style="margin: 0 0 0 10px; padding: 0 12px"
size="small"
type="primary"
icon="el-icon-info"
>
<span style="font-family: '宋体'; font-weight: bold"></span>
</c-button>
</template>
</c-fullbox>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="名称地址" prop="brdgrp.prb.pts.adrblk">
<c-input
type="textarea"
v-model="model.brdgrp.prb.pts.adrblk"
row="4"
maxlength="140"
show-word-limit
placeholder="请输入名称地址"
:disabled="model.brdgrp.prb.pts.extkey!=''"
></c-input>
</el-form-item>
</c-col>
</c-col>
</c-row>
</div>
</template>
<script>
import event from '../event';
export default {
inject: ["root"],
props: ["model", "codes"],
mixins: [event],
data() {
return {
flag4:true,
flag3: true,
cmtflg: [
{ label: "代理行模式", value: "C" },
{ label: "其他", value: "O" },
{ label: "CIPS系统", value: "P" },
],
table1: [],
columns: [
'1 1 "类型" 80',
'2 2 "债务方" 100',
'3 3 "债券方" 100',
'4 4 "币种" 80',
'5 5 "金额" 85 2 8 1 4',
'6 6 "到期日" 105 4 7 1',
],
};
},
methods: {
commonExecuteRule(ruleName) {
this.executeRule(ruleName).then((res) => {
if (res.respCode == SUCCESS) {
}
});
},
async multipleSelect(selection) {
console.log(selection);
if (selection.length > 1) {
this.$notify({
title: "错误",
message: "您不能选择多个期限",
type: "error",
});
} else {
let chkIds;
if (selection.length === 0) {
chkIds = [];
} else {
chkIds = [selection[0] + 1];
}
//
console.log(this.model.liaall.tensetstm);
let params = { chkDst: "liaall.tenstm", chkIds };
const rtnmsg = await this.executeRule("liaall.tenstm", params);
if (rtnmsg.respCode == SUCCESS) {
this.updateModel(rtnmsg.data);
} else {
this.$notify.error({ title: "错误", message: "服务请求失败!" });
}
}
},
},
created: function () {},
watch: {
"model.brtp.ischktyp": {
immediate: true,
handler(val, oldVal) {
if (this.model.brtp.ischktyp == "N"||this.model.brtp.ischktyp == "") {
this.model.brtp.prechkdat = "";
}
},
},
"model.brdgrp.rec.docprbrol":function(){
if(this.model.brdgrp.rec.docprbrol=='ADV'){
this.flag4=true;
}
else if(this.model.brdgrp.rec.docprbrol=='BEN'){
this.flag4=true;
}
else if(this.model.brdgrp.rec.docprbrol=='PRB'){
this.flag4=false;
}
},
declareParams() {},
"model.trnmod.cmtflg": {
immediate: true,
handler(val, oldVal) {
if (this.model.trnmod.cmtflg == "P") {
this.model.trnmod.swftyp = "CIV";
} else {
this.model.trnmod.swftyp = "";
}
}
},
},
};
</script>
<style>
</style>
<template>
<div class="eibs">
<c-col :span="24" style="margin-top: 20px;">
<c-col :span="12" class="col-left">
<el-form-item label="申报类型" label-width="120px" prop="bopmod.szflg">
<c-select
v-model="model.bopmod.szflg"
style="width: 100%"
placeholder="请选择申报类型"
@change="szflgChange"
>
<el-option
v-for="item in codes.szflg"
:key="item.value"
:label="item.label"
:value="item.value"
></el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="7" :offset="1">
<c-checkbox v-model="model.bopmod.basflg" :disabled="model.bopmod.szflg==='3'||model.bopmod.szflg===''"
@change="changeBasflg">基础数据</c-checkbox>
</c-col>
</c-col>
<c-col :span="12" class="col-left">
<c-col :span="24">
<el-form-item label="款项去向" prop="bopmod.acttyp" label-width="120px">
<c-select
v-model="model.bopmod.acttyp"
style="width: 100%"
placeholder="请选择"
:disabled="model.bopmod.szflg==='3' || model.bopmod.szflg==='2' ||model.bopmod.szflg===''"
@change="acttypChange"
>
<el-option
v-for="item in codes.acttyp"
:key="item.value"
:label="item.label"
:value="item.value"
></el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="地区机构号" prop="bopmod.ownextkey" label-width="120px">
<c-select
v-model="model.bopmod.ownextkey"
style="width: 100%"
placeholder="请选择"
:disabled="model.bopmod.szflg==='3' ||model.bopmod.szflg===''"
@change="ownextkeyChange"
>
<el-option
v-for="item in codesOwnextkey"
:key="item.value"
:label="item.label"
:value="item.value"
></el-option>
</c-select>
</el-form-item>
</c-col>
</c-col>
</div>
</template>
<script>
import event from '../event';
export default {
inject: ['root'],
props:["model","codes"],
mixins: [event],
data(){
return {
temp:'不申报',
options: [
{
value: "1",
label: "申报",
},
{
value: "2",
label: "不申报",
},
],
codesOwnextkey:[
{
value: "",
label: "",
}
],
};
},
methods: {
async szflgChange(){
let rtnmsg = await this.executeRule("bopmod.szflg")
if(rtnmsg.respCode == SUCCESS){
this.model.bopmod.ownextkey = rtnmsg.data.bopmod_ownextkey
}
if(this.model.bopmod.szflg==='2'){
this.model.bopmod.acttyp = '';
}
if(this.model.bopmod.szflg==='3'){
this.model.bopmod.ownextkey = '';
this.model.bopmod.acttyp = '';
this.model.bopmod.basflg='';
}
},
async changeBasflg(){//基础数据单选框点击触发执行默认方法
// 执行默认方法新写法:executeNotify()不用传参
this.executeNotify().then(res => {
if (res.respCode == SUCCESS){
this.copyValueFromVO(res.data);
}
});
this.$nextTick(()=>{
this.tabClick()
});
},
async ownextkeyChange(){//地区机构号改变触发
this.tabClick()
},
async acttypChange(){
this.tabClick()
},
//Ui页面整合后,申报信息页中的三个小页面漏掉的切换标签页面事件
tabClick(){
if(this.model.bopmod.basflg=="X"){//勾选基础信息,显示出对外/对内付款标签页
switch (this.model.bopmod.szflg) {
case "1"://申报类型选跨境收支
this.eventFunction("bopmod.dbcp.basp")//触发td上的点击切换到对外付款标签页事件
break;
case "2"://申报类型选境内收支
this.eventFunction("bopmod.dbfp.basp")//触发td上的点击切换到境内付款标签页事件
break;
}
// this.executeRule("boppay.dbfp.basp").then((res) => {
// if (res.respCode == SUCCESS) {
// this.copyValueFromVO(res.data);
// }
// });
}
}
},
created: function () {
//给人民币申报赋值
this.model.cnybop.cnyflg="2";
this.model.cnybop.traflg="2";
this.model.cnybop.libflg="2";
this.model.cnybop.vouflg="2";
},
watch: {
"model.bopmod.ownextkey": function(){
if(this.model.bopmod.ownextkey != ''){
var instName = window.sessionStorage.instName || "北京分行";
this.codesOwnextkey[0].value = this.model.bopmod.ownextkey;
this.codesOwnextkey[0].label = this.model.bopmod.ownextkey + instName;
}else{
this.codesOwnextkey[0].value = '';
this.codesOwnextkey[0].label = '';
}
}
},
}
</script>
<style>
</style>
<template>
<div class="eContainer">
<c-page title="进口信用证单据进口付汇">
<!--
<div class="fast-button">
<el-button size="small">备忘录</el-button>
<el-button size="small" @click="setDraggableContent('cms', '影像信息')">影像信息</el-button>
<el-button size="small">制裁信息</el-button>
<el-button size="small">智能提示</el-button>
/div>
-->
<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="tabClick"
>
<!--PD000001 -->
<el-tab-pane label="业务信息" name="ovwp">
<c-content>
<m-ovwp :model="model" :codes="codes" />
</c-content>
</el-tab-pane>
<!--PD000001 -->
<el-tab-pane label="保证金" name="ccvpan">
<c-content>
<m-ccvpan :model="model" :codes="codes" :buildLiaccv="buildLiaccv" />
</c-content>
</el-tab-pane>
<!--PD000001 -->
<el-tab-pane label="统一授信" name="limitbody">
<c-content>
<m-limitbody :model="model" :codes="codes" />
</c-content>
</el-tab-pane>
<!--PD000027 -->
<el-tab-pane label="费用/账务" name="setmod">
<c-content>
<m-setmod
:model="model"
:codes="codes"
@changeSetmodModel="changeSetmodModel"
/>
</c-content>
</el-tab-pane>
<!--PD000510 -->
<el-tab-pane label="备查/附言" name="addbcb">
<c-content>
<div class="eibs-tab">
<m-addbcb :model="model" :codes="codes" />
</div>
</c-content>
</el-tab-pane>
<!--PD000002 -->
<el-tab-pane label="申报信息" name="cnyp">
<c-content>
<m-cnyp :model="model" :codes="codes" />
</c-content>
</el-tab-pane>
<!--PD000529 -->
<el-tab-pane label="报文/面函" name="docpan">
<c-content>
<m-docpan :model="model" :codes="codes" />
</c-content>
</el-tab-pane>
<!--PD000546 -->
<el-tab-pane label="附件信息" name="doctre">
<c-content>
<m-doctre :model="model" :codes="codes" />
</c-content>
</el-tab-pane>
</c-tabs>
</el-form>
<!-- <c-bus-button :$pntvm="this"></c-bus-button> -->
<c-function-btn
:handleSubmit="handleSubmit"
:handleCheck="handleCheck"
:handleStash="handleStash"
>
</c-function-btn>
<c-grid-ety-prompt-dialog
ref="etyDialog"
:promptData="promptData"
></c-grid-ety-prompt-dialog>
</c-page>
</div>
</template>
<script>
import event from '../event';
import Brtset from "~/model/Brtset";
import commonFuncs from "~/mixin/commonFuncs";
import Utlp from "./Utlp";
import formRules from '../model/check'
import CodeTable from "~/config/CodeTable";
import Engp from "~/components/business/engp/views";
import Ccvpan from "~/components/business/ccvpan/views";
import Docpan from "~/components/business/docpan/views";
import Doctre from "~/components/business/doctre/views";
import Limitbody from "~/components/business/limitbody/views";
import Setmod from "~/components/business/setmod/views";
import Wg from "./Wg";
import Cfactlp from "./Cfactlp";
import Cnyp from "./Cnyp";
import Shisuan from "./Shisuan";
import Namp from "./Namp";
import Basp from "./Basp";
import Basp1 from "./Basp1";
import Sbxx from "~/views/Public/Sbxx";
import Det756 from "./Det756";
import Det202cv from "./Det202cv";
import Outp from "./Outp";
import Cips from "./Cips";
import Cips2 from "./Cips2";
import Trtcrep from "./Trtcrep";
import Dinpan from "./Dinpan";
import Ovwp from "./Ovwp";
import Addbcb from "./Addbcb";
export default {
name: "Brtset",
components: {
"m-utlp": Utlp,
"m-engp": Engp,
"m-ccvpan": Ccvpan,
"m-docpan": Docpan,
"m-doctre": Doctre,
"m-wg": Wg,
"m-cfactlp": Cfactlp,
"m-cnyp": Cnyp,
"m-shisuan": Shisuan,
"m-namp": Namp,
"m-limitbody": Limitbody,
"m-sbxx": Sbxx,
"m-basp": Basp,
"m-basp1": Basp1,
"m-det756": Det756,
"m-det202cv": Det202cv,
"m-outp": Outp,
"m-cips": Cips,
"m-cips2": Cips2,
"m-trtcrep": Trtcrep,
"m-dinpan": Dinpan,
"m-ovwp": Ovwp,
"m-addbcb": Addbcb,
"m-setmod": Setmod,
},
provide() {
return {
root: this,
};
},
mixins: [event, commonFuncs], // 里面包含了Default、Check等的公共处理
computed: {},
data() {
return {
det202cvName: "头寸调拨(MT202)",
det756Name: "通知付款(MT756)",
tabVal: "ovwp",
trnName: "brtset",
model: new Brtset().data,
rules: formRules,
codes: {
...CodeTable,
},
fyzw: ['engp'],
promptData: {
title: 'Select a Party',
columns: [
{
prop: 'ptyInr',
label: 'Party Number'
},
{
prop: 'inr',
label: 'Address Number'
},
{
prop: 'branch',
label: 'Branch Code'
},
{
prop: 'bchName',
label: 'Branch Name'
},
{
prop: 'adrName',
label: 'Address Name'
},
{
prop: 'adr1',
label: 'Address1'
},
{
prop: 'locCty',
label: 'City'
},
{
prop: 'locZip',
label: 'Zip'
},
{
prop: 'bicCode',
label: 'BIC'
}
],
data: []
}
};
},
methods: {},
watch: {
"model.setmod.doccur": {
immediate: true,
handler() {
let cur = this.model.setmod.doccur;
let amt = this.model.setmod.docamt;
let doc = this.model.brdgrp.rec.docprbrol;
this.det202cvName = "Payment 202 " + doc + " " + cur + " " + amt;
this.det756Name = "Payment 756 " + doc + " " + cur + " " + amt;
},
},
"model.mtabut.clsflg": {
immediate: true,
handler() {
let cur = this.model.setmod.doccur;
let amt = this.model.setmod.docamt;
let doc = this.model.brdgrp.rec.docprbrol;
this.det202cvName = "Payment 202 " + doc + " " + cur + " " + amt;
this.det756Name = "Payment 756 " + doc + " " + cur + " " + amt;
},
},
},
};
</script>
<style>
</style>
...@@ -29,5 +29,7 @@ const Business = [ ...@@ -29,5 +29,7 @@ const Business = [
{ path: 'brtlat', component: () => import('~/business/brtlat/views'), name: 'brtlat', meta: { title: '进口信用证单据偿还垫款' } }, { path: 'brtlat', component: () => import('~/business/brtlat/views'), name: 'brtlat', meta: { title: '进口信用证单据偿还垫款' } },
{ path: 'brtacp', component: () => import('~/business/brtacp/views'), name: 'brtacp', meta: { title: '进口信用证单据接受不符点' } }, { path: 'brtacp', component: () => import('~/business/brtacp/views'), name: 'brtacp', meta: { title: '进口信用证单据接受不符点' } },
{ path: 'litsel', component: () => import('~/business/litsel/views'), name: 'litsel', meta: { title: '进口信用证入口交易' } }, { path: 'litsel', component: () => import('~/business/litsel/views'), name: 'litsel', meta: { title: '进口信用证入口交易' } },
{ path: 'brtset', component: () => import('~/business/brtset/views'), name: 'brtset', meta: { title: '进口信用证单据进口付汇' } },
] ]
export default Business export default Business
\ No newline at end of file
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