<el-table :data="data"
<el-table-column
label="币种">
<template slot-scop="scope">
<span v-if="scope.row.currency==='CNY'">
人民币
</span>
</template>
</el>
像这样判断币种,有十几种,有其他的方法解决么
<el-table :data="data"
<el-table-column
label="币种">
<template slot-scop="scope">
<span v-if="scope.row.currency==='CNY'">
人民币
</span>
</template>
</el>
像这样判断币种,有十几种,有其他的方法解决么
利用element table的 formatter
其中调用方法回调传了(row, column, cellValue, index)
函数计算完了返回出来就可以了
<el-table :data="data"
<el-table-column
label="币种" :formatter="fn">
</el-table-column>
<el-table>