Commit 581bbf47 by wangyanjiao

bdtdck 新增event

parent 2a1cbcf6
...@@ -2,137 +2,128 @@ import Api from "~/service/Api" ...@@ -2,137 +2,128 @@ import Api from "~/service/Api"
import Utils from "~/utils" import Utils from "~/utils"
export default { export default {
async onOthpDet(){ async onOthpDet() {
let rtnmsg = await this.executeRule("othp.det") let rtnmsg = await this.executeRule("othp.det")
if(rtnmsg.respCode == SUCCESS) if (rtnmsg.respCode == SUCCESS) {
{ //TODO 处理数据逻辑
//TODO 处理数据逻辑
}
} else {
else this.$notify.error({ title: '错误', message: '服务请求失败!' });
{ }
this.$notify.error({title: '错误',message: '服务请求失败!'}); },
} async onDocdisButtxmsel() {
}, let rtnmsg = await this.executeRule("docdis.buttxmsel")
async onDocdisButtxmsel(){ if (rtnmsg.respCode == SUCCESS) {
let rtnmsg = await this.executeRule("docdis.buttxmsel") //TODO 处理数据逻辑
if(rtnmsg.respCode == SUCCESS)
{ }
//TODO 处理数据逻辑 else {
this.$notify.error({ title: '错误', message: '服务请求失败!' });
} }
else },
{ async onLiaallButmisamt() {
this.$notify.error({title: '错误',message: '服务请求失败!'}); let rtnmsg = await this.executeRule("liaall.butmisamt")
} if (rtnmsg.respCode == SUCCESS) {
}, //TODO 处理数据逻辑
async onLiaallButmisamt(){
let rtnmsg = await this.executeRule("liaall.butmisamt") }
if(rtnmsg.respCode == SUCCESS) else {
{ this.$notify.error({ title: '错误', message: '服务请求失败!' });
//TODO 处理数据逻辑 }
},
} async onLiaallButmissig() {
else let rtnmsg = await this.executeRule("liaall.butmissig")
{ if (rtnmsg.respCode == SUCCESS) {
this.$notify.error({title: '错误',message: '服务请求失败!'}); //TODO 处理数据逻辑
}
}, }
async onLiaallButmissig(){ else {
let rtnmsg = await this.executeRule("liaall.butmissig") this.$notify.error({ title: '错误', message: '服务请求失败!' });
if(rtnmsg.respCode == SUCCESS) }
{ },
//TODO 处理数据逻辑 async onSetmodDet() {
let rtnmsg = await this.executeRule("setmod.det")
} if (rtnmsg.respCode == SUCCESS) {
else //TODO 处理数据逻辑
{
this.$notify.error({title: '错误',message: '服务请求失败!'}); }
} else {
}, this.$notify.error({ title: '错误', message: '服务请求失败!' });
async onSetmodDet(){ }
let rtnmsg = await this.executeRule("setmod.det") },
if(rtnmsg.respCode == SUCCESS) async onWrkpDet() {
{ let rtnmsg = await this.executeRule("wrkp.det")
//TODO 处理数据逻辑 if (rtnmsg.respCode == SUCCESS) {
//TODO 处理数据逻辑
}
else }
{ else {
this.$notify.error({title: '错误',message: '服务请求失败!'}); this.$notify.error({ title: '错误', message: '服务请求失败!' });
} }
}, },
async onWrkpDet(){ async onOthp1Det() {
let rtnmsg = await this.executeRule("wrkp.det") let rtnmsg = await this.executeRule("othp1.det")
if(rtnmsg.respCode == SUCCESS) if (rtnmsg.respCode == SUCCESS) {
{ //TODO 处理数据逻辑
//TODO 处理数据逻辑
}
} else {
else this.$notify.error({ title: '错误', message: '服务请求失败!' });
{ }
this.$notify.error({title: '错误',message: '服务请求失败!'}); },
} async onLimptsGet1() {
}, let rtnmsg = await this.executeRule("limpts.get1")
async onOthp1Det(){ if (rtnmsg.respCode == SUCCESS) {
let rtnmsg = await this.executeRule("othp1.det") //TODO 处理数据逻辑
if(rtnmsg.respCode == SUCCESS)
{ }
//TODO 处理数据逻辑 else {
this.$notify.error({ title: '错误', message: '服务请求失败!' });
} }
else },
{ async onLimptsGet2() {
this.$notify.error({title: '错误',message: '服务请求失败!'}); let rtnmsg = await this.executeRule("limpts.get2")
} if (rtnmsg.respCode == SUCCESS) {
}, //TODO 处理数据逻辑
async onLimptsGet1(){
let rtnmsg = await this.executeRule("limpts.get1") }
if(rtnmsg.respCode == SUCCESS) else {
{ this.$notify.error({ title: '错误', message: '服务请求失败!' });
//TODO 处理数据逻辑 }
},
} async onLimmodTrycal() {
else let rtnmsg = await this.executeRule("limmod.trycal")
{ if (rtnmsg.respCode == SUCCESS) {
this.$notify.error({title: '错误',message: '服务请求失败!'}); //TODO 处理数据逻辑
}
}, }
async onLimptsGet2(){ else {
let rtnmsg = await this.executeRule("limpts.get2") this.$notify.error({ title: '错误', message: '服务请求失败!' });
if(rtnmsg.respCode == SUCCESS) }
{ },
//TODO 处理数据逻辑 async bocprbrol() {
let rtnmsg = await this.executeRule("bddgrp.rec.docprbrol")
} if (rtnmsg.respCode == SUCCESS) {
else //TODO 处理数据逻辑
{
this.$notify.error({title: '错误',message: '服务请求失败!'}); this.updateModel(rtnmsg.data);
} }
}, else {
async onLimmodTrycal(){ this.$notify.error({ title: '错误', message: '服务请求失败!' });
let rtnmsg = await this.executeRule("limmod.trycal") }
if(rtnmsg.respCode == SUCCESS) },
{ onSeainf() {
//TODO 处理数据逻辑
},
} onBenpDet() {
else
{ },
this.$notify.error({title: '错误',message: '服务请求失败!'}); onAplpDet() {
}
}, },
onSeainf(){
onSndpDet() {
},
onBenpDet(){ },
},
onAplpDet(){
},
onSndpDet(){
},
} }
\ No newline at end of file
...@@ -154,7 +154,7 @@ export default { ...@@ -154,7 +154,7 @@ export default {
{max: 3,message:"长度不能超过3"} {max: 3,message:"长度不能超过3"}
], ],
"mhtyp":[ "mhtyp":[
{type:"string ", required:true,message:"请选择交易类别"} {type:"string", required:true,message:"请选择交易类别"}
], ],
"tzdat":[ "tzdat":[
......
<template> <template>
<c-content> <c-content>
<c-row> <c-row>
<!-- ====================左边======================= --> <!-- ====================左边======================= -->
<c-col :span="11"> <c-col :span="11">
<c-col :span="23"> <c-col :span="23">
<el-form-item <el-form-item label="信用证参考号" prop="didgrp.rec.ownref" style="width: 100%">
label="信用证参考号" <c-input v-model="model.didgrp.rec.ownref" maxlength="16" placeholder="请输入信用证参考号"
prop="didgrp.rec.ownref" style="width: 95%" disabled></c-input>
style="width: 100%" </el-form-item>
> </c-col>
<c-input
v-model="model.didgrp.rec.ownref" <c-col :span="1">
maxlength="16" <c-button style="margin:0 10px 0 0;padding: 0 10px;" size="small" type="primary"
placeholder="请输入信用证参考号" icon="el-icon-search" @click="onSeainf"></c-button>
style="width: 95%" </c-col>
disabled
></c-input> <c-col :span="24">
</el-form-item> <el-form-item label="有效日期" prop="didgrp.rec.expdat">
</c-col> <c-date-picker type="date" v-model="model.didgrp.rec.expdat" style="width: 100%"
placeholder="请选择Date of Expiry" disabled></c-date-picker>
<c-col :span="1"> </el-form-item>
<c-button </c-col>
style="margin:0 10px 0 0;padding: 0 10px;"
size="small"
type="primary" <!-- <c-col :span="23">
icon="el-icon-search"
@click="onSeainf"
></c-button>
</c-col>
<c-col :span="24" >
<el-form-item label="有效日期" prop="didgrp.rec.expdat">
<c-date-picker
type="date"
v-model="model.didgrp.rec.expdat"
style="width: 100%"
placeholder="请选择Date of Expiry"
disabled
></c-date-picker>
</el-form-item>
</c-col>
<!-- <c-col :span="23">
<el-form-item <el-form-item
label="信用证号码" label="信用证号码"
prop="didgrp.rec.ownref" prop="didgrp.rec.ownref"
...@@ -58,7 +38,7 @@ ...@@ -58,7 +38,7 @@
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> --> </c-col> -->
<!-- <c-col :span="1"> <!-- <c-col :span="1">
<c-button <c-button
style="margin:0 10px 0 0;padding: 0 10px;" style="margin:0 10px 0 0;padding: 0 10px;"
size="small" size="small"
...@@ -68,371 +48,261 @@ ...@@ -68,371 +48,261 @@
></c-button> ></c-button>
</c-col> --> </c-col> -->
<c-col :span="23"> <c-col :span="23">
<el-form-item <el-form-item label="单据参考号" prop="bddgrp.rec.ownref" style="width: 100%">
label="单据参考号" <c-input v-model="model.bddgrp.rec.ownref" maxlength="16" placeholder="请输入单据参考号"
prop="bddgrp.rec.ownref" style="width: 95%" disabled></c-input>
style="width: 100%" </el-form-item>
> </c-col>
<c-input <c-col :span="1">
v-model="model.bddgrp.rec.ownref" <c-button style="margin:0 10px 0 0;padding: 0 10px;" size="small" type="primary"
maxlength="16" icon="el-icon-search" @click="onSeainf"></c-button>
placeholder="请输入单据参考号" </c-col>
style="width: 95%"
disabled <c-col :span="11">
></c-input> <el-form-item label="单据金额" prop="bddgrp.cbs.max.cur">
</el-form-item> <c-select v-model="model.bddgrp.cbs.max.cur" placeholder="币种" style="width: 95%" disabled>
</c-col> </c-select>
<c-col :span="1"> </el-form-item>
<c-button </c-col>
style="margin:0 10px 0 0;padding: 0 10px;" <c-col :span="13">
size="small" <el-form-item label-width="0" prop="bddgrp.cbs.max.amt">
type="primary" <c-input :disabled="model.mhtyp == 'R'" v-model="model.bddgrp.cbs.max.amt" maxlength="3"
icon="el-icon-search" placeholder="请输入单据金额"></c-input>
@click="onSeainf" </el-form-item>
></c-button> </c-col>
</c-col>
<c-col :span="11">
<c-col :span="11"> <el-form-item label="单据余额" prop="bddgrp.cbs.opn1.cur">
<el-form-item label="单据金额" prop="bddgrp.cbs.max.cur"> <c-select v-model="model.bddgrp.cbs.opn1.cur" placeholder="币种" style="width: 95%" disabled>
<c-select </c-select>
v-model="model.bddgrp.cbs.max.cur" </el-form-item>
placeholder="币种" </c-col>
style="width: 95%" <c-col :span="13">
disabled <el-form-item label-width="0" prop="bddgrp.cbs.opn1.amt">
> <c-input v-model="model.bddgrp.cbs.opn1.amt" maxlength="3" placeholder="请输入单据余额" disabled>
</c-select> </c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="13">
<el-form-item label-width="0" prop="bddgrp.cbs.max.amt" > <c-col :span="12">
<c-input :disabled="model.mhty=='R'" <el-form-item label="到单日期" prop="bddgrp.rec.rcvdat">
v-model="model.bddgrp.cbs.max.amt" <c-date-picker type="date" v-model="model.bddgrp.rec.rcvdat" style="width: 100%"
maxlength="3" placeholder="请选择到单日期" disabled></c-date-picker>
placeholder="请输入单据金额" </el-form-item>
></c-input> </c-col>
</el-form-item>
</c-col> <c-col :span="12">
<el-form-item label="远期起算日" prop="bddgrp.rec.stadat">
<c-col :span="11"> <c-date-picker type="date" v-model="model.bddgrp.rec.stadat" style="width: 100%"
<el-form-item label="单据余额" prop="bddgrp.cbs.opn1.cur"> placeholder="请选择Start Date" disabled></c-date-picker>
<c-select </el-form-item>
v-model="model.bddgrp.cbs.opn1.cur" </c-col>
placeholder="币种"
style="width: 95%" <c-col :span="12">
disabled <span v-text="model.bdtp.matp.mattxtlab" data-path=".bdtp.matp.mattxtlab">
> </span>
</c-select> </c-col>
</el-form-item>
</c-col> <c-col :span="12">
<c-col :span="13"> <el-form-item label="单据到期日" prop="bddgrp.rec.matdat">
<el-form-item label-width="0" prop="bddgrp.cbs.opn1.amt"> <c-date-picker type="date" v-model="model.bddgrp.rec.matdat" style="width: 100%"
<c-input placeholder="单据到期日" disabled></c-date-picker>
v-model="model.bddgrp.cbs.opn1.amt" </el-form-item>
maxlength="3" </c-col>
placeholder="请输入单据余额"
disabled <c-col :span="12">
></c-input> <el-form-item label="远期期限" prop="bddgrp.rec.tenmaxday">
</el-form-item> <c-date-picker type="date" v-model="model.bddgrp.rec.tenmaxday" style="width: 100%"
</c-col> placeholder="远期期限" disabled></c-date-picker>
</el-form-item>
<c-col :span="12"> </c-col>
<el-form-item label="到单日期" prop="bddgrp.rec.rcvdat">
<c-date-picker <c-col :span="24">
type="date" <el-form-item label="单据类型" prop="bddgrp.rec.docflg">
v-model="model.bddgrp.rec.rcvdat" <c-select v-model="model.bddgrp.rec.docflg" style="width:100%" placeholder="请选择单据类型"
style="width: 100%" :code="codes.brdtyp" disabled>
placeholder="请选择到单日期" </c-select>
disabled </el-form-item>
></c-date-picker> </c-col>
</el-form-item>
</c-col> <c-col :span="24">
<el-form-item label="单据状态" prop="bddgrp.rec.docsta">
<c-col :span="12"> <c-select v-model="model.bddgrp.rec.docsta" style="width:100%" placeholder="请选择单据状态"
<el-form-item label="远期起算日" prop="bddgrp.rec.stadat"> :code="codes.docsta" disabled>
<c-date-picker
type="date" </c-select>
v-model="model.bddgrp.rec.stadat" </el-form-item>
style="width: 100%" </c-col>
placeholder="请选择Start Date"
disabled <c-col :span="24">
></c-date-picker> <el-form-item label="单据类型" prop="bddgrp.rec.docflg">
</el-form-item> <c-select v-model="model.bddgrp.rec.docflg" style="width:100%" placeholder="请选择单据类型"
</c-col> :code="codes.brdtyp" disabled>
<c-col :span="12"> </c-select>
<span v-text="model.bdtp.matp.mattxtlab" data-path=".bdtp.matp.mattxtlab"> </el-form-item>
</span> </c-col>
</c-col>
<c-col :span="12"> <c-col :span="11">
<el-form-item label="单据到期日" prop="bddgrp.rec.matdat"> <el-form-item label="单据金额" prop="bddgrp.cbs.max.cur">
<c-date-picker <c-select v-model="model.bddgrp.cbs.max.cur" placeholder="币种" style="width: 95%" disabled>
type="date" </c-select>
v-model="model.bddgrp.rec.matdat" </el-form-item>
style="width: 100%" </c-col>
placeholder="单据到期日" <c-col :span="13">
disabled <el-form-item label-width="0" prop="bddgrp.cbs.max.amt">
></c-date-picker> <c-input v-model="model.bddgrp.cbs.max.amt" maxlength="3" placeholder="请输入单据金额"
</el-form-item> :disabled="model.mhtyp == 'R'"></c-input>
</c-col> </el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="远期期限" prop="bddgrp.rec.tenmaxday"> <c-col :span="24">
<c-date-picker <el-form-item label="原报文标识号" prop="trnmod.swiadd.orimsgid">
type="date" <c-input v-model="model.trnmod.swiadd.orimsgid" maxlength="35" placeholder="请输入原报文标识号" disabled>
v-model="model.bddgrp.rec.tenmaxday" </c-input>
style="width: 100%" </el-form-item>
placeholder="远期期限" </c-col>
disabled
></c-date-picker> <c-col :span="24">
</el-form-item> <el-form-item label="原发起直接参与机构" prop="trnmod.swiadd.oriinstgagt">
</c-col> <c-input v-model="model.trnmod.swiadd.oriinstgagt" maxlength="20" placeholder="请输入原发起直接参与机构"
disabled></c-input>
<c-col :span="24"> </el-form-item>
<el-form-item label="单据类型" prop="bddgrp.rec.docflg"> </c-col>
<c-select
v-model="model.bddgrp.rec.docflg" <c-col :span="24">
style="width:100%" <el-form-item label="原报文类型" prop="trnmod.swiadd.orimsgtyp">
placeholder="请选择单据类型" <c-select v-model="model.trnmod.swiadd.orimsgtyp" style="width:100%" placeholder="请选择原报文类型"
:code="codes.brdtyp" disabled>
disabled </c-select>
> </el-form-item>
</c-select> </c-col>
</el-form-item>
</c-col>
<c-col :span="24"> <c-col :span="12">
<el-form-item label="单据状态" prop="bddgrp.rec.docsta"> <el-form-item label="交单日期" prop="bddgrp.rec.predat">
<c-select <c-date-picker type="date" v-model="model.bddgrp.rec.predat" style="width: 100%"
v-model="model.bddgrp.rec.docsta" placeholder="请选择交单日期"></c-date-picker>
style="width:100%" </el-form-item>
placeholder="请选择单据状态" </c-col>
:code="codes.docsta"
disabled> <c-col :span="12">
<el-form-item label="到单日期" prop="bddgrp.rec.rcvdat">
</c-select> <c-date-picker type="date" v-model="model.bddgrp.rec.rcvdat" style="width:100%"
</el-form-item> placeholder="请选择到单日期">
</c-col> </c-date-picker>
</el-form-item>
<c-col :span="24"> </c-col>
<el-form-item label="单据类型" prop="bddgrp.rec.docflg">
<c-select <c-col :span="12">
v-model="model.bddgrp.rec.docflg" <el-form-item label="单据到期日" prop="bddgrp.rec.matdat">
style="width:100%" <c-date-picker type="date" v-model="model.bddgrp.rec.matdat" style="width:100%"
placeholder="请选择单据类型" placeholder="请选择单据到期日" disabled></c-date-picker>
:code="codes.brdtyp" </el-form-item>
disabled> </c-col>
</c-select>
</el-form-item>
</c-col> <c-col :span="12">
<el-form-item label="最迟货物装运日" prop="bddgrp.rec.shpdat">
<c-date-picker type="date" v-model="model.bddgrp.rec.shpdat" style="width:100%"
<c-col :span="11"> placeholder="请选择最迟货物装运日"></c-date-picker>
<el-form-item label="单据金额" prop="bddgrp.cbs.max.cur"> </el-form-item>
<c-select </c-col>
v-model="model.bddgrp.cbs.max.cur"
placeholder="币种" <c-col :span="24">
style="width: 95%" <el-form-item label="交易类别" prop="mhtyp">
disabled <c-select v-model="model.mhtyp" style="width:100%" placeholder="请选择交易类别" :code="codes.mhtyp">
> </c-select>
</c-select> </el-form-item>
</el-form-item> </c-col>
</c-col>
<c-col :span="13"> <c-col :span="24">
<el-form-item label-width="0" prop="bddgrp.cbs.max.amt"> <el-form-item label="通知日期" prop="tzdat">
<c-input <c-date-picker type="date" v-model="model.tzdat" style="width:100%" placeholder="请选择通知日期">
v-model="model.bddgrp.cbs.max.amt" </c-date-picker>
maxlength="3" </el-form-item>
placeholder="请输入单据金额" </c-col>
:disabled="model.mhty=='R'"
></c-input> <!-- 未知balance -->
</el-form-item> <!-- <c-col :span="12">
</c-col>
<c-col :span="24">
<el-form-item label="原报文标识号" prop="trnmod.swiadd.orimsgid">
<c-input
v-model="model.trnmod.swiadd.orimsgid"
maxlength="35"
placeholder="请输入原报文标识号"
disabled>
</c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="原发起直接参与机构" prop="trnmod.swiadd.oriinstgagt">
<c-input
v-model="model.trnmod.swiadd.oriinstgagt"
maxlength="20"
placeholder="请输入原发起直接参与机构"
disabled></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="原报文类型" prop="trnmod.swiadd.orimsgtyp">
<c-select
v-model="model.trnmod.swiadd.orimsgtyp"
style="width:100%"
placeholder="请选择原报文类型"
disabled>
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="交单日期" prop="bddgrp.rec.predat">
<c-date-picker
type="date"
v-model="model.bddgrp.rec.predat"
style="width: 100%"
placeholder="请选择交单日期"
></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="到单日期" prop="bddgrp.rec.rcvdat">
<c-date-picker
type="date"
v-model="model.bddgrp.rec.rcvdat"
style="width:100%"
placeholder="请选择到单日期">
</c-date-picker>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="单据到期日" prop="bddgrp.rec.matdat">
<c-date-picker type="date"
v-model="model.bddgrp.rec.matdat"
style="width:100%"
placeholder="请选择单据到期日"
disabled></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="最迟货物装运日" prop="bddgrp.rec.shpdat">
<c-date-picker
type="date"
v-model="model.bddgrp.rec.shpdat"
style="width:100%"
placeholder="请选择最迟货物装运日"></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="交易类别" prop="mhtyp">
<c-select v-model="model.mhtyp" style="width:100%" placeholder="请选择交易类别" :code="codes.mhtyp">
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="通知日期" prop="tzdat">
<c-date-picker type="date"
v-model="model.tzdat" style="width:100%"
placeholder="请选择通知日期">
</c-date-picker>
</el-form-item>
</c-col>
<!-- 未知balance -->
<!-- <c-col :span="12">
<el-form-item label="Balance" prop="oldbddgrp.cbs.max.amt"> <el-form-item label="Balance" prop="oldbddgrp.cbs.max.amt">
<c-input v-model="model.oldbddgrp.cbs.max.amt" placeholder="请输入Balance"></c-input> <c-input v-model="model.oldbddgrp.cbs.max.amt" placeholder="请输入Balance"></c-input>
</el-form-item> </el-form-item>
</c-col> --> </c-col> -->
<c-col :span="24"> <c-col :span="24">
<el-form-item label="收款行行号" prop="bddgrp.skh.pts.bankno"> <el-form-item label="收款行行号" prop="bddgrp.skh.pts.bankno">
<c-input v-model="model.bddgrp.skh.pts.bankno" maxlength="20" placeholder="请输入收款行行号"></c-input> <c-input v-model="model.bddgrp.skh.pts.bankno" maxlength="20" placeholder="请输入收款行行号"></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
<!-- 未知balance --> <!-- 未知balance -->
<!-- <c-col :span="12"> <!-- <c-col :span="12">
<el-form-item label="Balance" prop="oldbddgrp.cbs.max2.amt"> <el-form-item label="Balance" prop="oldbddgrp.cbs.max2.amt">
<c-input v-model="model.oldbddgrp.cbs.max2.amt" placeholder="请输入Balance"></c-input> <c-input v-model="model.oldbddgrp.cbs.max2.amt" placeholder="请输入Balance"></c-input>
</el-form-item> </el-form-item>
</c-col> --> </c-col> -->
<c-col :span="24"> <c-col :span="24">
<el-form-item label="联行名称 电证用" prop="bddgrp.skh.pts.jigomc"> <el-form-item label="联行名称 电证用" prop="bddgrp.skh.pts.jigomc">
<c-input type="textarea" v-model="model.bddgrp.skh.pts.jigomc" maxlength="35" show-word-limit placeholder="请输入收款行名称" ></c-input> <c-input type="textarea" v-model="model.bddgrp.skh.pts.jigomc" maxlength="35" show-word-limit
</el-form-item> placeholder="请输入收款行名称"></c-input>
</c-col> </el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="申请人编号" prop="didgrp.rec.aplref"> <c-col :span="24">
<c-input v-model="model.didgrp.rec.aplref" maxlength="16" placeholder="请输入Applicant Reference"></c-input> <el-form-item label="申请人编号" prop="didgrp.rec.aplref">
</el-form-item> <c-input v-model="model.didgrp.rec.aplref" maxlength="16" placeholder="请输入Applicant Reference">
</c-col> </c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="文档数" prop="didgrp.rec.utlnbr">
<c-input v-model="model.didgrp.rec.utlnbr" placeholder="请输入Count of Received Document Sets" <c-col :span="12">
disabled></c-input> <el-form-item label="文档数" prop="didgrp.rec.utlnbr">
</el-form-item> <c-input v-model="model.didgrp.rec.utlnbr" placeholder="请输入Count of Received Document Sets"
</c-col> disabled></c-input>
</el-form-item>
<c-col :span="12"> </c-col>
<el-form-item label="此信用证下的到单次数" prop="days">
<c-input v-model="model.days" placeholder="请输入此信用证下的到单次数"></c-input> <c-col :span="12">
</el-form-item> <el-form-item label="此信用证下的到单次数" prop="days">
</c-col> <c-input v-model="model.days" placeholder="请输入此信用证下的到单次数"></c-input>
</el-form-item>
<!-- <c-col :span="24" :offset="8"> </c-col>
<!-- <c-col :span="24" :offset="8">
<c-checkbox v-model="model.bdtp.setnowflg">Register to Send and Settle Document</c-checkbox> <c-checkbox v-model="model.bdtp.setnowflg">Register to Send and Settle Document</c-checkbox>
</c-col> --> </c-col> -->
</c-col>
<!-- ====================右边======================= -->
<c-col :span="11" :offset="1">
<c-col :span="11">
<el-form-item label="信用证余额" prop="didgrp.cbs.opn1.cur">
<c-select
v-model="model.didgrp.cbs.opn1.cur"
placeholder="币种"
style="width: 95%"
disabled
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="13">
<el-form-item label-width="0" prop="didgrp.cbs.opn1.amt">
<c-input
v-model="model.didgrp.cbs.opn1.amt"
maxlength="3"
placeholder="请输入信用证余额"
disabled
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="摘要" prop="bddgrp.rec.nam">
<c-input
align="middle"
v-model="model.bddgrp.rec.nam"
maxlength="40"
disabled
placeholder="请输入Name of Bill Contract"
></c-input>
</el-form-item>
</c-col> </c-col>
<!-- <c-col :span="24"> <!-- ====================右边======================= -->
<c-col :span="11" :offset="1">
<c-col :span="11">
<el-form-item label="信用证余额" prop="didgrp.cbs.opn1.cur">
<c-select v-model="model.didgrp.cbs.opn1.cur" placeholder="币种" style="width: 95%" disabled>
</c-select>
</el-form-item>
</c-col>
<c-col :span="13">
<el-form-item label-width="0" prop="didgrp.cbs.opn1.amt">
<c-input v-model="model.didgrp.cbs.opn1.amt" maxlength="3" placeholder="请输入信用证余额" disabled>
</c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="摘要" prop="bddgrp.rec.nam">
<c-input align="middle" v-model="model.bddgrp.rec.nam" maxlength="40" disabled
placeholder="请输入Name of Bill Contract"></c-input>
</el-form-item>
</c-col>
<!-- <c-col :span="24">
<c-ptap <c-ptap
:model="model" :model="model"
:argadr="{ :argadr="{
...@@ -448,31 +318,23 @@ ...@@ -448,31 +318,23 @@
</c-ptap> </c-ptap>
</c-col> --> </c-col> -->
<!-- 申请人编号及名称,绑定model.bddgrp.apl.pts.ref&model.bddgrp.apl.pts.nam--> <!-- 申请人编号及名称,绑定model.bddgrp.apl.pts.ref&model.bddgrp.apl.pts.nam-->
<c-col :span="24"> <c-col :span="24">
<el-form-item label="申请人编号" prop="bddgrp.apl.pts.ref"> <el-form-item label="申请人编号" prop="bddgrp.apl.pts.ref">
<c-input <c-input v-model="model.bddgrp.apl.pts.ref" maxlength="16" disabled placeholder="请输入申请人编号">
v-model="model.bddgrp.apl.pts.ref" </c-input>
maxlength="16" </el-form-item>
disabled </c-col>
placeholder="请输入申请人编号"
></c-input>
</el-form-item>
</c-col>
<c-col :span="24"> <c-col :span="24">
<el-form-item label="申请人名称" prop="bddgrp.apl.pts.nam"> <el-form-item label="申请人名称" prop="bddgrp.apl.pts.nam">
<c-input <c-input v-model="model.bddgrp.apl.pts.nam" maxlength="40" disabled placeholder="申请人名称">
v-model="model.bddgrp.apl.pts.nam" </c-input>
maxlength="40" </el-form-item>
disabled </c-col>
placeholder="申请人名称"
></c-input>
</el-form-item>
</c-col>
<!-- <c-col :span="24"> <!-- <c-col :span="24">
<c-ptap <c-ptap
:model="model" :model="model"
:argadr="{ :argadr="{
...@@ -487,31 +349,23 @@ ...@@ -487,31 +349,23 @@
> >
</c-ptap> </c-ptap>
</c-col> --> </c-col> -->
<!-- 受益人编号及名称,绑定model.bddgrp.ben.pts.nam&model.bddgrp.prb.pts.ref --> <!-- 受益人编号及名称,绑定model.bddgrp.ben.pts.nam&model.bddgrp.prb.pts.ref -->
<c-col :span="24"> <c-col :span="24">
<el-form-item label="受益人编号" prop="bddgrp.ben.pts.ref"> <el-form-item label="受益人编号" prop="bddgrp.ben.pts.ref">
<c-input <c-input v-model="model.bddgrp.ben.pts.ref" maxlength="16" disabled placeholder="请输入受益人编号">
v-model="model.bddgrp.ben.pts.ref" </c-input>
maxlength="16" </el-form-item>
disabled </c-col>
placeholder="请输入受益人编号"
></c-input> <c-col :span="24">
</el-form-item> <el-form-item label="受益人名称" prop="bddgrp.ben.pts.nam">
</c-col> <c-input v-model="model.bddgrp.ben.pts.nam" maxlength="40" disabled placeholder="受益人名称">
</c-input>
<c-col :span="24"> </el-form-item>
<el-form-item label="受益人名称" prop="bddgrp.ben.pts.nam"> </c-col>
<c-input
v-model="model.bddgrp.ben.pts.nam" <!-- <c-col :span="24">
maxlength="40"
disabled
placeholder="受益人名称"
></c-input>
</el-form-item>
</c-col>
<!-- <c-col :span="24">
<c-ptap :model="model" :argadr="{ <c-ptap :model="model" :argadr="{
title: '交单行', title: '交单行',
grp: 'bddgrp', grp: 'bddgrp',
...@@ -519,39 +373,27 @@ ...@@ -519,39 +373,27 @@
}" :noRef="true" :onlySearch="false"> }" :noRef="true" :onlySearch="false">
</c-ptap> </c-ptap>
</c-col> --> </c-col> -->
<c-col :span="24"> <c-col :span="24">
<el-form-item label="交易行编号" prop="bddgrp.prb.pts.ref"> <el-form-item label="交易行编号" prop="bddgrp.prb.pts.ref">
<c-input <c-input v-model="model.bddgrp.prb.pts.ref" maxlength="40" placeholder="请输入交易行编号"></c-input>
v-model="model.bddgrp.prb.pts.ref" </el-form-item>
maxlength="40" </c-col>
placeholder="请输入交易行编号" <c-col :span="24">
></c-input> <el-form-item label="交易行名称" prop="bddgrp.prb.pts.nam">
</el-form-item> <c-input v-model="model.bddgrp.prb.pts.nam" maxlength="40" placeholder="请输入交易行名称" disabled>
</c-col> </c-input>
<c-col :span="24"> </el-form-item>
<el-form-item label="交易行名称" prop="bddgrp.prb.pts.nam"> </c-col>
<c-input
v-model="model.bddgrp.prb.pts.nam" <c-col :span="24">
maxlength="40" <el-form-item label="交单行" prop="bddgrp.rec.docprbrol" >
placeholder="请输入交易行名称" <c-select v-model="model.bddgrp.rec.docprbrol" placeholder="请输入受益人账号" style="width: 100%" @change="bocprbrol"
disabled :code="docprbrol">
></c-input> </c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="24"> <!-- <c-col :span="24">
<el-form-item label="交单行" prop="bddgrp.rec.docprbrol">
<c-select
v-model="model.bddgrp.rec.docprbrol"
placeholder="请输入受益人账号"
style="width: 100%"
:code="codes.docprbrol"
>
</c-select>
</el-form-item>
</c-col>
<!-- <c-col :span="24">
<el-form-item <el-form-item
label="交单行 联行行号" label="交单行 联行行号"
prop="bddgrp.prb.pts.bankno" prop="bddgrp.prb.pts.bankno"
...@@ -588,7 +430,7 @@ ...@@ -588,7 +430,7 @@
</el-form-item> </el-form-item>
</c-col> --> </c-col> -->
<!-- <c-col :span="24"> <!-- <c-col :span="24">
<c-ptsadr :model="model" :argadr="{ <c-ptsadr :model="model" :argadr="{
title: '交单行', title: '交单行',
rol: 'bddgrp.prb.pts.rol', rol: 'bddgrp.prb.pts.rol',
...@@ -597,56 +439,40 @@ ...@@ -597,56 +439,40 @@
:isShowRol="false"> :isShowRol="false">
</c-ptsadr> </c-ptsadr>
</c-col> --> </c-col> -->
<c-col> <c-col>
<el-form-item label="BIC" prop="bddgrp.prb.pts.extkey"> <el-form-item label="BIC" prop="bddgrp.prb.pts.extkey">
<c-input <c-input v-model="model.bddgrp.prb.pts.extkey" maxlength="40" placeholder="请输入BIC"></c-input>
v-model="model.bddgrp.prb.pts.extkey" </el-form-item>
maxlength="40" </c-col>
placeholder="请输入BIC"
></c-input> <c-ptapdome :model="model" :disabledJigomc="true" :argadr="{
</el-form-item> title: '交易行',
</c-col> rol: 'prb',
grp: 'bddgrp'
<c-ptapdome
:model="model"
:disabledJigomc="true"
:argadr="{
title: '交易行',
rol: 'prb',
grp: 'bddgrp'
}"> }">
</c-ptapdome> </c-ptapdome>
<c-col :span="24">
<el-form-item label="付款人" prop="bddgrp.rec.payrol">
<c-select
v-model="model.bddgrp.rec.payrol"
style="width:100%"
placeholder="请选择Payer"
disabled
:code="codes.payrol"
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="20"> <c-col :span="24">
<el-form-item label="External Key of Address" prop="bdtp.oth.pts.extkey"> <el-form-item label="付款人" prop="bddgrp.rec.payrol">
<c-input <c-select v-model="model.bddgrp.rec.payrol" style="width:100%" placeholder="请选择Payer" disabled
v-model="model.bdtp.oth.pts.extkey" :code="codes.payrol">
maxlength="16"
style="width: 95%" </c-select>
placeholder="请输入External Key of Address" </el-form-item>
disabled></c-input> </c-col>
</el-form-item>
</c-col> <c-col :span="20">
<el-form-item label="External Key of Address" prop="bdtp.oth.pts.extkey">
<c-input v-model="model.bdtp.oth.pts.extkey" maxlength="16" style="width: 95%"
placeholder="请输入External Key of Address" disabled></c-input>
</el-form-item>
</c-col>
<!-- 按钮替代 <!-- 按钮替代
<c-col :span="12"> <c-col :span="12">
<el-form-item label="" prop="bdtp.othp.ptsget.sdamod.seainf"> <el-form-item label="" prop="bdtp.othp.ptsget.sdamod.seainf">
<c-input v-model="model.bdtp.othp.ptsget.sdamod.seainf" placeholder="请输入"></c-input> <c-input v-model="model.bdtp.othp.ptsget.sdamod.seainf" placeholder="请输入"></c-input>
...@@ -658,32 +484,20 @@ ...@@ -658,32 +484,20 @@
Details Details
</c-button> </c-button>
</c-col> --> </c-col> -->
<c-col :span="1"> <c-col :span="1">
<!-- <el-form-item label="" label-width="5px"> --> <!-- <el-form-item label="" label-width="5px"> -->
<c-button <c-button style="margin:0 10px 0 0;padding: 0 10px;" class="searchButton" size="small"
style="margin:0 10px 0 0;padding: 0 10px;" type="primary" icon="el-icon-search" @click="onSeainf(`bdtp.oth.pts.extkey`)"></c-button>
class="searchButton" </c-col>
size="small" <c-col :span="3" style="text-align: right">
type="primary" <c-button style="margin:0 0" class="detailsButton" size="small" type="primary">
icon="el-icon-search" 详情
@click="onSeainf(`bdtp.oth.pts.extkey`)" </c-button>
></c-button> <!-- </el-form-item> -->
</c-col> </c-col>
<c-col :span="3" style="text-align: right">
<c-button
style="margin:0 0" <!-- 输入框替代
class="detailsButton"
size="small"
type="primary"
>
详情
</c-button>
<!-- </el-form-item> -->
</c-col>
<!-- 输入框替代
<c-col :span="12"> <c-col :span="12">
<el-form-item label="Address Block" prop="bdtp.oth.pts.adrblk"> <el-form-item label="Address Block" prop="bdtp.oth.pts.adrblk">
<c-input type="textarea" v-model="model.bdtp.oth.pts.adrblk" maxlength="35" show-word-limit placeholder="请输入Address Block" ></c-input> <c-input type="textarea" v-model="model.bdtp.oth.pts.adrblk" maxlength="35" show-word-limit placeholder="请输入Address Block" ></c-input>
...@@ -695,47 +509,26 @@ ...@@ -695,47 +509,26 @@
</el-form-item> </el-form-item>
</c-col> </c-col>
--> -->
<c-col :span="24">
<el-form-item
prop="bdtp.oth.namelc"
:label="`付款人名称`"
:prop="`bdtp.oth.namelc`">
<c-input
type="textarea"
v-model="model.bdtp.oth.namelc"
:placeholder="'请输入付款人名称'"
:rows="2"
maxlength="35"
show-word-limit
disabled
></c-input>
</el-form-item>
</c-col>
<c-col :span="24"> <c-col :span="24">
<el-form-item <el-form-item prop="bdtp.oth.namelc" :label="`付款人名称`" :prop="`bdtp.oth.namelc`">
label="付款人地址" <c-input type="textarea" v-model="model.bdtp.oth.namelc" :placeholder="'请输入付款人名称'" :rows="2"
:prop="`bdtp.oth.pts.adrblk`" maxlength="35" show-word-limit disabled></c-input>
> </el-form-item>
<c-input </c-col>
type="textarea"
:rows="4"
v-model="model.bdtp.oth.pts.adrblk"
maxlength="35"
show-word-limit
placeholder="请输入付款人地址"
disabled
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="付款人地址" :prop="`bdtp.oth.pts.adrblk`">
<c-input type="textarea" :rows="4" v-model="model.bdtp.oth.pts.adrblk" maxlength="35"
show-word-limit placeholder="请输入付款人地址" disabled></c-input>
</el-form-item>
</c-col>
</c-col>
<!--@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@--> </c-col>
<!--
<!--@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@-->
<!--
<div class="eibs-tab"> <div class="eibs-tab">
<c-col :span="12"> <c-col :span="12">
...@@ -1135,24 +928,28 @@ import Ptap from "~/views/Public/Ptap"; ...@@ -1135,24 +928,28 @@ import Ptap from "~/views/Public/Ptap";
import PtapDome from "~/views/Public/PtapDome"; import PtapDome from "~/views/Public/PtapDome";
export default { export default {
components: { components: {
"c-ptap": Ptap , "c-ptap": Ptap,
"c-ptapdome": PtapDome, "c-ptapdome": PtapDome,
}, },
inject: ['root'], inject: ['root'],
props:["model","codes"], props: ["model", "codes"],
mixins: [commonProcess], mixins: [commonProcess],
data(){ data() {
return { return {
docprbrol: [
{ label: "Advising Bank", value: "ADV" },
{ label: "Beneficiary", value: "BEN" },
{ label: "Presenter(PRP)", value: "PRB" },
],
} }
}, },
methods:{...Event}, methods: { ...Event },
created:function(){ created: function () {
} }
} }
</script> </script>
<style> <style>
</style> </style>
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