fix(tradeDetails): 修复账户类型下拉框法宝券文案展示不正常问题 bug-71
This commit is contained in:
parent
15ba87852f
commit
502b7d897b
|
@ -30,7 +30,7 @@
|
||||||
<el-option
|
<el-option
|
||||||
v-for="(item, index) in pkAccountList"
|
v-for="(item, index) in pkAccountList"
|
||||||
:key="index"
|
:key="index"
|
||||||
:label="item.pkTransactionKeyVal"
|
:label="item.pkTransactionKeyVal || item.accountName"
|
||||||
:value="item.pkId"
|
:value="item.pkId"
|
||||||
></el-option>
|
></el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
|
@ -188,6 +188,7 @@ export default {
|
||||||
},
|
},
|
||||||
getEnumsAccountList() {
|
getEnumsAccountList() {
|
||||||
getEnumsAccountList().then((res) => {
|
getEnumsAccountList().then((res) => {
|
||||||
|
console.log(res, "res......交易类型");
|
||||||
this.pkAccountList = res.data;
|
this.pkAccountList = res.data;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue