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(){ async onDocdisButtxmsel() {
let rtnmsg = await this.executeRule("docdis.buttxmsel") let rtnmsg = await this.executeRule("docdis.buttxmsel")
if(rtnmsg.respCode == SUCCESS) if (rtnmsg.respCode == SUCCESS) {
{
//TODO 处理数据逻辑 //TODO 处理数据逻辑
} }
else else {
{ this.$notify.error({ title: '错误', message: '服务请求失败!' });
this.$notify.error({title: '错误',message: '服务请求失败!'});
} }
}, },
async onLiaallButmisamt(){ async onLiaallButmisamt() {
let rtnmsg = await this.executeRule("liaall.butmisamt") let rtnmsg = await this.executeRule("liaall.butmisamt")
if(rtnmsg.respCode == SUCCESS) if (rtnmsg.respCode == SUCCESS) {
{
//TODO 处理数据逻辑 //TODO 处理数据逻辑
} }
else else {
{ this.$notify.error({ title: '错误', message: '服务请求失败!' });
this.$notify.error({title: '错误',message: '服务请求失败!'});
} }
}, },
async onLiaallButmissig(){ async onLiaallButmissig() {
let rtnmsg = await this.executeRule("liaall.butmissig") let rtnmsg = await this.executeRule("liaall.butmissig")
if(rtnmsg.respCode == SUCCESS) if (rtnmsg.respCode == SUCCESS) {
{
//TODO 处理数据逻辑 //TODO 处理数据逻辑
} }
else else {
{ this.$notify.error({ title: '错误', message: '服务请求失败!' });
this.$notify.error({title: '错误',message: '服务请求失败!'});
} }
}, },
async onSetmodDet(){ async onSetmodDet() {
let rtnmsg = await this.executeRule("setmod.det") let rtnmsg = await this.executeRule("setmod.det")
if(rtnmsg.respCode == SUCCESS) if (rtnmsg.respCode == SUCCESS) {
{
//TODO 处理数据逻辑 //TODO 处理数据逻辑
} }
else else {
{ this.$notify.error({ title: '错误', message: '服务请求失败!' });
this.$notify.error({title: '错误',message: '服务请求失败!'});
} }
}, },
async onWrkpDet(){ async onWrkpDet() {
let rtnmsg = await this.executeRule("wrkp.det") let rtnmsg = await this.executeRule("wrkp.det")
if(rtnmsg.respCode == SUCCESS) if (rtnmsg.respCode == SUCCESS) {
{
//TODO 处理数据逻辑 //TODO 处理数据逻辑
} }
else else {
{ this.$notify.error({ title: '错误', message: '服务请求失败!' });
this.$notify.error({title: '错误',message: '服务请求失败!'});
} }
}, },
async onOthp1Det(){ async onOthp1Det() {
let rtnmsg = await this.executeRule("othp1.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(){ async onLimptsGet1() {
let rtnmsg = await this.executeRule("limpts.get1") let rtnmsg = await this.executeRule("limpts.get1")
if(rtnmsg.respCode == SUCCESS) if (rtnmsg.respCode == SUCCESS) {
{
//TODO 处理数据逻辑 //TODO 处理数据逻辑
} }
else else {
{ this.$notify.error({ title: '错误', message: '服务请求失败!' });
this.$notify.error({title: '错误',message: '服务请求失败!'});
} }
}, },
async onLimptsGet2(){ async onLimptsGet2() {
let rtnmsg = await this.executeRule("limpts.get2") let rtnmsg = await this.executeRule("limpts.get2")
if(rtnmsg.respCode == SUCCESS) if (rtnmsg.respCode == SUCCESS) {
{
//TODO 处理数据逻辑 //TODO 处理数据逻辑
} }
else else {
{ this.$notify.error({ title: '错误', message: '服务请求失败!' });
this.$notify.error({title: '错误',message: '服务请求失败!'});
} }
}, },
async onLimmodTrycal(){ async onLimmodTrycal() {
let rtnmsg = await this.executeRule("limmod.trycal") let rtnmsg = await this.executeRule("limmod.trycal")
if(rtnmsg.respCode == SUCCESS) if (rtnmsg.respCode == SUCCESS) {
{
//TODO 处理数据逻辑 //TODO 处理数据逻辑
} }
else else {
{ this.$notify.error({ title: '错误', message: '服务请求失败!' });
this.$notify.error({title: '错误',message: '服务请求失败!'});
} }
}, },
onSeainf(){ async bocprbrol() {
let rtnmsg = await this.executeRule("bddgrp.rec.docprbrol")
if (rtnmsg.respCode == SUCCESS) {
//TODO 处理数据逻辑
this.updateModel(rtnmsg.data);
}
else {
this.$notify.error({ title: '错误', message: '服务请求失败!' });
}
},
onSeainf() {
}, },
onBenpDet(){ onBenpDet() {
}, },
onAplpDet(){ onAplpDet() {
}, },
onSndpDet(){ 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":[
......
...@@ -4,41 +4,21 @@ ...@@ -4,41 +4,21 @@
<!-- ====================左边======================= --> <!-- ====================左边======================= -->
<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%"
>
<c-input
v-model="model.didgrp.rec.ownref"
maxlength="16"
placeholder="请输入信用证参考号"
style="width: 95%"
disabled
></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;" size="small" type="primary"
style="margin:0 10px 0 0;padding: 0 10px;" icon="el-icon-search" @click="onSeainf"></c-button>
size="small"
type="primary"
icon="el-icon-search"
@click="onSeainf"
></c-button>
</c-col> </c-col>
<c-col :span="24" > <c-col :span="24">
<el-form-item label="有效日期" prop="didgrp.rec.expdat"> <el-form-item label="有效日期" prop="didgrp.rec.expdat">
<c-date-picker <c-date-picker type="date" v-model="model.didgrp.rec.expdat" style="width: 100%"
type="date" placeholder="请选择Date of Expiry" disabled></c-date-picker>
v-model="model.didgrp.rec.expdat"
style="width: 100%"
placeholder="请选择Date of Expiry"
disabled
></c-date-picker>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -69,94 +49,53 @@ ...@@ -69,94 +49,53 @@
</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%"
>
<c-input
v-model="model.bddgrp.rec.ownref"
maxlength="16"
placeholder="请输入单据参考号"
style="width: 95%"
disabled
></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;" size="small" type="primary"
style="margin:0 10px 0 0;padding: 0 10px;" icon="el-icon-search" @click="onSeainf"></c-button>
size="small"
type="primary"
icon="el-icon-search"
@click="onSeainf"
></c-button>
</c-col> </c-col>
<c-col :span="11"> <c-col :span="11">
<el-form-item label="单据金额" prop="bddgrp.cbs.max.cur"> <el-form-item label="单据金额" prop="bddgrp.cbs.max.cur">
<c-select <c-select v-model="model.bddgrp.cbs.max.cur" placeholder="币种" style="width: 95%" disabled>
v-model="model.bddgrp.cbs.max.cur"
placeholder="币种"
style="width: 95%"
disabled
>
</c-select> </c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="13"> <c-col :span="13">
<el-form-item label-width="0" prop="bddgrp.cbs.max.amt" > <el-form-item label-width="0" prop="bddgrp.cbs.max.amt">
<c-input :disabled="model.mhty=='R'" <c-input :disabled="model.mhtyp == 'R'" v-model="model.bddgrp.cbs.max.amt" maxlength="3"
v-model="model.bddgrp.cbs.max.amt" placeholder="请输入单据金额"></c-input>
maxlength="3"
placeholder="请输入单据金额"
></c-input>
</el-form-item> </el-form-item>
</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.opn1.cur">
<c-select <c-select v-model="model.bddgrp.cbs.opn1.cur" placeholder="币种" style="width: 95%" disabled>
v-model="model.bddgrp.cbs.opn1.cur"
placeholder="币种"
style="width: 95%"
disabled
>
</c-select> </c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="13"> <c-col :span="13">
<el-form-item label-width="0" prop="bddgrp.cbs.opn1.amt"> <el-form-item label-width="0" prop="bddgrp.cbs.opn1.amt">
<c-input <c-input v-model="model.bddgrp.cbs.opn1.amt" maxlength="3" placeholder="请输入单据余额" disabled>
v-model="model.bddgrp.cbs.opn1.amt" </c-input>
maxlength="3"
placeholder="请输入单据余额"
disabled
></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="12"> <c-col :span="12">
<el-form-item label="到单日期" prop="bddgrp.rec.rcvdat"> <el-form-item label="到单日期" prop="bddgrp.rec.rcvdat">
<c-date-picker <c-date-picker type="date" v-model="model.bddgrp.rec.rcvdat" style="width: 100%"
type="date" placeholder="请选择到单日期" disabled></c-date-picker>
v-model="model.bddgrp.rec.rcvdat"
style="width: 100%"
placeholder="请选择到单日期"
disabled
></c-date-picker>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="12"> <c-col :span="12">
<el-form-item label="远期起算日" prop="bddgrp.rec.stadat"> <el-form-item label="远期起算日" prop="bddgrp.rec.stadat">
<c-date-picker <c-date-picker type="date" v-model="model.bddgrp.rec.stadat" style="width: 100%"
type="date" placeholder="请选择Start Date" disabled></c-date-picker>
v-model="model.bddgrp.rec.stadat"
style="width: 100%"
placeholder="请选择Start Date"
disabled
></c-date-picker>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -167,49 +106,30 @@ ...@@ -167,49 +106,30 @@
<c-col :span="12"> <c-col :span="12">
<el-form-item label="单据到期日" prop="bddgrp.rec.matdat"> <el-form-item label="单据到期日" prop="bddgrp.rec.matdat">
<c-date-picker <c-date-picker type="date" v-model="model.bddgrp.rec.matdat" style="width: 100%"
type="date" placeholder="单据到期日" disabled></c-date-picker>
v-model="model.bddgrp.rec.matdat"
style="width: 100%"
placeholder="单据到期日"
disabled
></c-date-picker>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="12"> <c-col :span="12">
<el-form-item label="远期期限" prop="bddgrp.rec.tenmaxday"> <el-form-item label="远期期限" prop="bddgrp.rec.tenmaxday">
<c-date-picker <c-date-picker type="date" v-model="model.bddgrp.rec.tenmaxday" style="width: 100%"
type="date" placeholder="远期期限" disabled></c-date-picker>
v-model="model.bddgrp.rec.tenmaxday"
style="width: 100%"
placeholder="远期期限"
disabled
></c-date-picker>
</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.docflg"> <el-form-item label="单据类型" prop="bddgrp.rec.docflg">
<c-select <c-select v-model="model.bddgrp.rec.docflg" style="width:100%" placeholder="请选择单据类型"
v-model="model.bddgrp.rec.docflg" :code="codes.brdtyp" disabled>
style="width:100%"
placeholder="请选择单据类型"
:code="codes.brdtyp"
disabled
>
</c-select> </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.docsta"> <el-form-item label="单据状态" prop="bddgrp.rec.docsta">
<c-select <c-select v-model="model.bddgrp.rec.docsta" style="width:100%" placeholder="请选择单据状态"
v-model="model.bddgrp.rec.docsta" :code="codes.docsta" disabled>
style="width:100%"
placeholder="请选择单据状态"
:code="codes.docsta"
disabled>
</c-select> </c-select>
</el-form-item> </el-form-item>
...@@ -217,12 +137,8 @@ ...@@ -217,12 +137,8 @@
<c-col :span="24"> <c-col :span="24">
<el-form-item label="单据类型" prop="bddgrp.rec.docflg"> <el-form-item label="单据类型" prop="bddgrp.rec.docflg">
<c-select <c-select v-model="model.bddgrp.rec.docflg" style="width:100%" placeholder="请选择单据类型"
v-model="model.bddgrp.rec.docflg" :code="codes.brdtyp" disabled>
style="width:100%"
placeholder="请选择单据类型"
:code="codes.brdtyp"
disabled>
</c-select> </c-select>
</el-form-item> </el-form-item>
...@@ -231,53 +147,34 @@ ...@@ -231,53 +147,34 @@
<c-col :span="11"> <c-col :span="11">
<el-form-item label="单据金额" prop="bddgrp.cbs.max.cur"> <el-form-item label="单据金额" prop="bddgrp.cbs.max.cur">
<c-select <c-select v-model="model.bddgrp.cbs.max.cur" placeholder="币种" style="width: 95%" disabled>
v-model="model.bddgrp.cbs.max.cur"
placeholder="币种"
style="width: 95%"
disabled
>
</c-select> </c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="13"> <c-col :span="13">
<el-form-item label-width="0" prop="bddgrp.cbs.max.amt"> <el-form-item label-width="0" prop="bddgrp.cbs.max.amt">
<c-input <c-input v-model="model.bddgrp.cbs.max.amt" maxlength="3" placeholder="请输入单据金额"
v-model="model.bddgrp.cbs.max.amt" :disabled="model.mhtyp == 'R'"></c-input>
maxlength="3"
placeholder="请输入单据金额"
:disabled="model.mhty=='R'"
></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="trnmod.swiadd.orimsgid"> <el-form-item label="原报文标识号" prop="trnmod.swiadd.orimsgid">
<c-input <c-input v-model="model.trnmod.swiadd.orimsgid" maxlength="35" placeholder="请输入原报文标识号" disabled>
v-model="model.trnmod.swiadd.orimsgid"
maxlength="35"
placeholder="请输入原报文标识号"
disabled>
</c-input> </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="trnmod.swiadd.oriinstgagt"> <el-form-item label="原发起直接参与机构" prop="trnmod.swiadd.oriinstgagt">
<c-input <c-input v-model="model.trnmod.swiadd.oriinstgagt" maxlength="20" placeholder="请输入原发起直接参与机构"
v-model="model.trnmod.swiadd.oriinstgagt"
maxlength="20"
placeholder="请输入原发起直接参与机构"
disabled></c-input> disabled></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="trnmod.swiadd.orimsgtyp"> <el-form-item label="原报文类型" prop="trnmod.swiadd.orimsgtyp">
<c-select <c-select v-model="model.trnmod.swiadd.orimsgtyp" style="width:100%" placeholder="请选择原报文类型"
v-model="model.trnmod.swiadd.orimsgtyp"
style="width:100%"
placeholder="请选择原报文类型"
disabled> disabled>
</c-select> </c-select>
</el-form-item> </el-form-item>
...@@ -287,21 +184,14 @@ ...@@ -287,21 +184,14 @@
<c-col :span="12"> <c-col :span="12">
<el-form-item label="交单日期" prop="bddgrp.rec.predat"> <el-form-item label="交单日期" prop="bddgrp.rec.predat">
<c-date-picker <c-date-picker type="date" v-model="model.bddgrp.rec.predat" style="width: 100%"
type="date" placeholder="请选择交单日期"></c-date-picker>
v-model="model.bddgrp.rec.predat"
style="width: 100%"
placeholder="请选择交单日期"
></c-date-picker>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="12"> <c-col :span="12">
<el-form-item label="到单日期" prop="bddgrp.rec.rcvdat"> <el-form-item label="到单日期" prop="bddgrp.rec.rcvdat">
<c-date-picker <c-date-picker type="date" v-model="model.bddgrp.rec.rcvdat" style="width:100%"
type="date"
v-model="model.bddgrp.rec.rcvdat"
style="width:100%"
placeholder="请选择到单日期"> placeholder="请选择到单日期">
</c-date-picker> </c-date-picker>
</el-form-item> </el-form-item>
...@@ -309,11 +199,8 @@ ...@@ -309,11 +199,8 @@
<c-col :span="12"> <c-col :span="12">
<el-form-item label="单据到期日" prop="bddgrp.rec.matdat"> <el-form-item label="单据到期日" prop="bddgrp.rec.matdat">
<c-date-picker type="date" <c-date-picker type="date" v-model="model.bddgrp.rec.matdat" style="width:100%"
v-model="model.bddgrp.rec.matdat" placeholder="请选择单据到期日" disabled></c-date-picker>
style="width:100%"
placeholder="请选择单据到期日"
disabled></c-date-picker>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -321,10 +208,7 @@ ...@@ -321,10 +208,7 @@
<c-col :span="12"> <c-col :span="12">
<el-form-item label="最迟货物装运日" prop="bddgrp.rec.shpdat"> <el-form-item label="最迟货物装运日" prop="bddgrp.rec.shpdat">
<c-date-picker <c-date-picker type="date" v-model="model.bddgrp.rec.shpdat" style="width:100%"
type="date"
v-model="model.bddgrp.rec.shpdat"
style="width:100%"
placeholder="请选择最迟货物装运日"></c-date-picker> placeholder="请选择最迟货物装运日"></c-date-picker>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -338,9 +222,7 @@ ...@@ -338,9 +222,7 @@
<c-col :span="24"> <c-col :span="24">
<el-form-item label="通知日期" prop="tzdat"> <el-form-item label="通知日期" prop="tzdat">
<c-date-picker type="date" <c-date-picker type="date" v-model="model.tzdat" style="width:100%" placeholder="请选择通知日期">
v-model="model.tzdat" style="width:100%"
placeholder="请选择通知日期">
</c-date-picker> </c-date-picker>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -366,13 +248,15 @@ ...@@ -366,13 +248,15 @@
<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
placeholder="请输入收款行名称"></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="didgrp.rec.aplref"> <el-form-item label="申请人编号" prop="didgrp.rec.aplref">
<c-input v-model="model.didgrp.rec.aplref" maxlength="16" placeholder="请输入Applicant Reference"></c-input> <c-input v-model="model.didgrp.rec.aplref" maxlength="16" placeholder="请输入Applicant Reference">
</c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -400,35 +284,21 @@ ...@@ -400,35 +284,21 @@
<c-col :span="11" :offset="1"> <c-col :span="11" :offset="1">
<c-col :span="11"> <c-col :span="11">
<el-form-item label="信用证余额" prop="didgrp.cbs.opn1.cur"> <el-form-item label="信用证余额" prop="didgrp.cbs.opn1.cur">
<c-select <c-select v-model="model.didgrp.cbs.opn1.cur" placeholder="币种" style="width: 95%" disabled>
v-model="model.didgrp.cbs.opn1.cur"
placeholder="币种"
style="width: 95%"
disabled
>
</c-select> </c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="13"> <c-col :span="13">
<el-form-item label-width="0" prop="didgrp.cbs.opn1.amt"> <el-form-item label-width="0" prop="didgrp.cbs.opn1.amt">
<c-input <c-input v-model="model.didgrp.cbs.opn1.amt" maxlength="3" placeholder="请输入信用证余额" disabled>
v-model="model.didgrp.cbs.opn1.amt" </c-input>
maxlength="3"
placeholder="请输入信用证余额"
disabled
></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.rec.nam"> <el-form-item label="摘要" prop="bddgrp.rec.nam">
<c-input <c-input align="middle" v-model="model.bddgrp.rec.nam" maxlength="40" disabled
align="middle" placeholder="请输入Name of Bill Contract"></c-input>
v-model="model.bddgrp.rec.nam"
maxlength="40"
disabled
placeholder="请输入Name of Bill Contract"
></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -452,23 +322,15 @@ ...@@ -452,23 +322,15 @@
<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"
disabled
placeholder="请输入申请人编号"
></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.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"
disabled
placeholder="申请人名称"
></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -491,23 +353,15 @@ ...@@ -491,23 +353,15 @@
<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"
disabled
placeholder="请输入受益人编号"
></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.ben.pts.nam"> <el-form-item label="受益人名称" prop="bddgrp.ben.pts.nam">
<c-input <c-input v-model="model.bddgrp.ben.pts.nam" maxlength="40" disabled placeholder="受益人名称">
v-model="model.bddgrp.ben.pts.nam" </c-input>
maxlength="40"
disabled
placeholder="受益人名称"
></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -521,32 +375,20 @@ ...@@ -521,32 +375,20 @@
</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"
maxlength="40"
placeholder="请输入交易行编号"
></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.prb.pts.nam"> <el-form-item label="交易行名称" prop="bddgrp.prb.pts.nam">
<c-input <c-input v-model="model.bddgrp.prb.pts.nam" maxlength="40" placeholder="请输入交易行名称" disabled>
v-model="model.bddgrp.prb.pts.nam" </c-input>
maxlength="40"
placeholder="请输入交易行名称"
disabled
></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.rec.docprbrol"> <el-form-item label="交单行" prop="bddgrp.rec.docprbrol" >
<c-select <c-select v-model="model.bddgrp.rec.docprbrol" placeholder="请输入受益人账号" style="width: 100%" @change="bocprbrol"
v-model="model.bddgrp.rec.docprbrol" :code="docprbrol">
placeholder="请输入受益人账号"
style="width: 100%"
:code="codes.docprbrol"
>
</c-select> </c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -599,18 +441,11 @@ ...@@ -599,18 +441,11 @@
</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"
maxlength="40"
placeholder="请输入BIC"
></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-ptapdome <c-ptapdome :model="model" :disabledJigomc="true" :argadr="{
:model="model"
:disabledJigomc="true"
:argadr="{
title: '交易行', title: '交易行',
rol: 'prb', rol: 'prb',
grp: 'bddgrp' grp: 'bddgrp'
...@@ -622,13 +457,8 @@ ...@@ -622,13 +457,8 @@
<c-col :span="24"> <c-col :span="24">
<el-form-item label="付款人" prop="bddgrp.rec.payrol"> <el-form-item label="付款人" prop="bddgrp.rec.payrol">
<c-select <c-select v-model="model.bddgrp.rec.payrol" style="width:100%" placeholder="请选择Payer" disabled
v-model="model.bddgrp.rec.payrol" :code="codes.payrol">
style="width:100%"
placeholder="请选择Payer"
disabled
:code="codes.payrol"
>
</c-select> </c-select>
</el-form-item> </el-form-item>
...@@ -636,12 +466,8 @@ ...@@ -636,12 +466,8 @@
<c-col :span="20"> <c-col :span="20">
<el-form-item label="External Key of Address" prop="bdtp.oth.pts.extkey"> <el-form-item label="External Key of Address" prop="bdtp.oth.pts.extkey">
<c-input <c-input v-model="model.bdtp.oth.pts.extkey" maxlength="16" style="width: 95%"
v-model="model.bdtp.oth.pts.extkey" placeholder="请输入External Key of Address" disabled></c-input>
maxlength="16"
style="width: 95%"
placeholder="请输入External Key of Address"
disabled></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -660,23 +486,11 @@ ...@@ -660,23 +486,11 @@
</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"
size="small"
type="primary"
icon="el-icon-search"
@click="onSeainf(`bdtp.oth.pts.extkey`)"
></c-button>
</c-col> </c-col>
<c-col :span="3" style="text-align: right"> <c-col :span="3" style="text-align: right">
<c-button <c-button style="margin:0 0" class="detailsButton" size="small" type="primary">
style="margin:0 0"
class="detailsButton"
size="small"
type="primary"
>
详情 详情
</c-button> </c-button>
<!-- </el-form-item> --> <!-- </el-form-item> -->
...@@ -697,37 +511,16 @@ ...@@ -697,37 +511,16 @@
--> -->
<c-col :span="24"> <c-col :span="24">
<el-form-item <el-form-item prop="bdtp.oth.namelc" :label="`付款人名称`" :prop="`bdtp.oth.namelc`">
prop="bdtp.oth.namelc" <c-input type="textarea" v-model="model.bdtp.oth.namelc" :placeholder="'请输入付款人名称'" :rows="2"
:label="`付款人名称`" maxlength="35" show-word-limit disabled></c-input>
: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> </el-form-item>
</c-col> </c-col>
<c-col :span="24"> <c-col :span="24">
<el-form-item <el-form-item label="付款人地址" :prop="`bdtp.oth.pts.adrblk`">
label="付款人地址" <c-input type="textarea" :rows="4" v-model="model.bdtp.oth.pts.adrblk" maxlength="35"
:prop="`bdtp.oth.pts.adrblk`" show-word-limit placeholder="请输入付款人地址" disabled></c-input>
>
<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> </el-form-item>
</c-col> </c-col>
...@@ -1136,23 +929,27 @@ import PtapDome from "~/views/Public/PtapDome"; ...@@ -1136,23 +929,27 @@ 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