Commit 4fdcf63b by SunJie

setpan

parent fdd133cd
...@@ -5778,7 +5778,18 @@ const CodeTable = { ...@@ -5778,7 +5778,18 @@ const CodeTable = {
payee: [ payee: [
{ label: "OWN Ourselves", value: "OWN" }, { label: "OWN Ourselves", value: "OWN" },
{ label: "ISS issuing Bank", value: "ISS" } { label: "ISS issuing Bank", value: "ISS" }
] ],
acccur:[
{ label: `CNY-人民币`, value: `CNY` },
{ label: `USD-美元`, value: `USD` },
{ label: `HKD-港币`, value: `HKD` },
{ label: `GBP-英镑`, value: `GBP` },
{ label: `EUR-欧元`, value: `EUR` },
{ label: `CAD-加元`, value: `CAD` },
{ label: `JPY-日元`, value: `JPY` },
{ label: `AUD-澳元`, value: `AUD` },
{ label: `CHF-瑞朗`, value: `CHF` },
],
} }
export default CodeTable; export default CodeTable;
\ No newline at end of file
...@@ -310,9 +310,9 @@ ...@@ -310,9 +310,9 @@
</el-table-column> </el-table-column>
<el-table-column label="in" prop="acccur" width="auto"> <el-table-column label="in" prop="acccur" width="auto">
<template slot-scope="scope"> <template slot-scope="scope">
<el-select v-model="scope.acccur"> <el-select v-model="scope.row.acccur">
<el-option <el-option
v-for="item in scope.acccur" v-for="item in codes.acccur"
:key="item.value" :key="item.value"
:label="item.label" :label="item.label"
:value="item.value" :value="item.value"
...@@ -342,7 +342,7 @@ ...@@ -342,7 +342,7 @@
</el-table-column> </el-table-column>
<el-table-column label="Account" prop="act" width="auto"> <el-table-column label="Account" prop="act" width="auto">
<template slot-scope="scope"> <template slot-scope="scope">
<el-select v-model="scope.act"> <el-select v-model="scope.row.act">
<el-option <el-option
v-for="item in scope.act" v-for="item in scope.act"
:key="item.value" :key="item.value"
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
</el-col> </el-col>
<el-col :span="12"> <el-col :span="12">
{{ item[1] }} {{ item[1] }}
</el-col> <el-divider></el-divider> </el-col>
</el-col> </el-col>
</el-row> </el-row>
......
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