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