fix(tradeDetails): 修复账户类型下拉框法宝券文案展示不正常问题 bug-71

This commit is contained in:
woody 2025-05-08 14:24:56 +08:00
parent 15ba87852f
commit 502b7d897b
1 changed files with 2 additions and 1 deletions

View File

@ -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;
}); });
}, },