Commit 187eaee3 authored by 邓春圆's avatar 邓春圆

客户详情账户类型判断bug修复

parent 36991a29
......@@ -125,7 +125,7 @@
<el-table-column label="银行代码" prop="bankCode"></el-table-column>
<el-table-column label="账户类型">
<template v-slot="{row}">
{{row.accountType === 1 ? $t('公账') : $t('私账')}}
{{Number(row.accountType) === 1 ? $t('公账') : $t('私账')}}
</template>
</el-table-column>
<el-table-column label="状态">
......
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