Commit 8a21db06 by liuxin

账务调整

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