Commit 90a86439 by lianyang

bdtudp页面修改-bug解决

parent 827ca54c
...@@ -131,6 +131,7 @@ ...@@ -131,6 +131,7 @@
maxlength="210" maxlength="210"
show-word-limit show-word-limit
placeholder="名称" placeholder="名称"
disabled
></c-input> ></c-input>
</c-form-item> </c-form-item>
</c-col> </c-col>
...@@ -142,6 +143,7 @@ ...@@ -142,6 +143,7 @@
maxlength="210" maxlength="210"
show-word-limit show-word-limit
placeholder="地址" placeholder="地址"
disabled
></c-input> ></c-input>
</c-form-item> </c-form-item>
</c-col> </c-col>
...@@ -248,6 +250,7 @@ ...@@ -248,6 +250,7 @@
maxlength="210" maxlength="210"
show-word-limit show-word-limit
placeholder="名称" placeholder="名称"
disabled
></c-input> ></c-input>
</c-form-item> </c-form-item>
</c-col> </c-col>
...@@ -259,6 +262,7 @@ ...@@ -259,6 +262,7 @@
maxlength="210" maxlength="210"
show-word-limit show-word-limit
placeholder="地址" placeholder="地址"
disabled
></c-input> ></c-input>
</c-form-item> </c-form-item>
</c-col> </c-col>
......
...@@ -136,42 +136,44 @@ ...@@ -136,42 +136,44 @@
</c-form-item> </c-form-item>
</c-col> </c-col>
<!-- Reimbursing Bank --> <!-- Beneficiary's Bank -->
<c-col :span="24"> <c-col :span="24">
<c-ptap <c-ptap
:model="model" :model="model"
:argadr="{ :argadr="{
title: 'Reimbursing Bank', title: 'Beneficiary`s Bank',
grp: 'bddgrp', grp: 'bddgrp',
rol: 'rmb', rol: 'beb',
}" }"
:noRef="true" :noRef="true"
:onlySearch="true" :onlySearch="true"
:disabledExtkey="true" :disabledExtkey="true"
@onSeainf="onSeainf" @onSeainf="onSeainf"
@onAplpDet="onRmbpDet" @onAplpDet="onBebpDet"
> >
</c-ptap> </c-ptap>
</c-col> </c-col>
<c-col :span="24"> <c-col :span="24">
<c-form-item label="" prop="bddgrp.rmb.namelc"> <c-form-item label="" prop="bddgrp.beb.namelc">
<c-input <c-input
type="textarea" type="textarea"
v-model="model.bddgrp.rmb.namelc" v-model="model.bddgrp.beb.namelc"
maxlength="210" maxlength="210"
show-word-limit show-word-limit
placeholder="名称" placeholder="名称"
disabled
></c-input> ></c-input>
</c-form-item> </c-form-item>
</c-col> </c-col>
<c-col :span="24"> <c-col :span="24">
<c-form-item label="" prop="bddgrp.rmb.adrelc"> <c-form-item label="" prop="bddgrp.beb.adrelc">
<c-input <c-input
type="textarea" type="textarea"
v-model="model.bddgrp.rmb.adrelc" v-model="model.bddgrp.beb.adrelc"
maxlength="210" maxlength="210"
show-word-limit show-word-limit
placeholder="地址" placeholder="地址"
disabled
></c-input> ></c-input>
</c-form-item> </c-form-item>
</c-col> </c-col>
......
...@@ -455,8 +455,14 @@ ...@@ -455,8 +455,14 @@
v-model="model.sftmt" v-model="model.sftmt"
style="width: 100%" style="width: 100%"
placeholder="Which MT" placeholder="Which MT"
:code="codes.paysmt"
> >
<el-option
v-for="item in codeTable"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</c-select> </c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -478,10 +484,10 @@ ...@@ -478,10 +484,10 @@
size="small" size="small"
type="primary" type="primary"
icon="el-icon-search" icon="el-icon-search"
@click="showGridPromptDialog('bdtp.acctag.buttxmsel', null, null,{TXT: 'bddgrp.tag72add'}, {TXT: false},'doxpDialog')" @click="onAcctagButtxmsel"
:disabled="model.sftmt==''" :disabled="model.sftmt==''"
> >
<!-- @click="onAcctagButtxmsel" --> <!-- @click="showGridPromptDialog('bdtp.acctag.buttxmsel', null, null,{TXT: 'bddgrp.tag72add'}, {TXT: false},'doxpDialog')"-->
... ...
</c-button> </c-button>
</template> </template>
...@@ -656,7 +662,11 @@ export default { ...@@ -656,7 +662,11 @@ export default {
props: ['model', 'codes'], props: ['model', 'codes'],
mixins: [commonProcess], mixins: [commonProcess],
data() { data() {
return {} return {
codeTable: [
{ label: "MT x99 Information by Free Message", value: "x99" },
],
}
}, },
methods: { ...Event }, methods: { ...Event },
created: function () {}, created: function () {},
......
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