element官方数据是字符串,我这边是根据0、1、2状态来判断数据是通过未通过...的,请教一下这种怎么筛选
<el-table-column prop="iwaAuditStatus" column-key="status" label="状态" :filters="[{ text: '通过', value: '通过' }, { text: '未通过', value: '未通过' },{ text: '审核中', value: '审核中' }]" :filter-method="filterTag" filter-placement="bottom-end">
<template slot-scope="scope">
<el-tag type="success" v-if="scope.row.iwaAuditStatus == 1">通过</el-tag>
<el-tag v-else-if="scope.row.iwaAuditStatus == 0">审核中</el-tag>
<el-tag type="danger" v-else-if="scope.row.iwaAuditStatus == 2">未通过</el-tag>
</template>
</el-table-column>
添加回答
举报
0/150
提交
取消