Commit 8a21db06 by liuxin

账务调整

parent a26fba21
......@@ -6308,6 +6308,14 @@ const CodeTable = {
],
payee: [
{ label: "OWN Ourselves", value: "OWN" },
{ label: "Applicant", value:"APPL"},
{ label: "Beneficiary", value:"BENE"},
{ label: "ISS issuing Bank", value: "ISS" }
],
ptydbt1: [
{ label: "Advising Bank", value: "ADV" },
{ label: "Applicant", value:"APPL"},
{ label: "Beneficiary", value:"BENE"},
{ label: "ISS issuing Bank", value: "ISS" }
],
acccur: [
......
......@@ -186,7 +186,7 @@
<el-form :model="dialog" label-width="200px">
<c-col :span="16" >
<el-form-item label="收款人">
<c-select v-model="dialog.payee" style="width: 100%">
<c-select v-model="dialog.ptypay" style="width: 100%">
<el-option
v-for="item in codes.payee"
:key="item.value"
......@@ -205,7 +205,7 @@
<el-form-item label="付款人">
<c-select v-model="dialog.ptydbt" style="width: 100%">
<el-option
v-for="item in codes.ptydbt"
v-for="item in codes.ptydbt1"
:key="item.value"
:label="item.label"
:value="item.value"
......@@ -216,7 +216,7 @@
</c-col>
<c-col :span="16">
<el-form-item label="付款人摘要">
<c-input v-model="dialog.txtdbp" style="width: 100%"/>
<c-input v-model="dialog.txtdbt" style="width: 100%"/>
</el-form-item>
</c-col>
<c-col :span="16">
......@@ -1089,8 +1089,9 @@ export default {
},
// 第二个表格
detail1(index, row) {
this.executeDefault("setfel/det").then(res=>{
this.executeDefault("setfel.det").then(res=>{
this.dialogVisible = true;
console.log(row)
this.dialog = row;
this.index = index;
})
......
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