表格字典处理
正常表格处理字典:
<el-table-column prop="exam_status" label="审核状态">
<template #default="scope">
<el-tag v-if="scope.row.exam_status" effect="plain">
{ {getDict(dicts.shzt, scope.row.exam_status)}}
</el-tag>
</template>
</el-table-column>
字典:
const dicts = ref({
shzt: [
{label: "待提交", value: "0",},
{label: "待审核", value: "1",}
]
});
表格数据:
const tableData = ref([{
exam_status: "1",
}])
方法:
// 传入字典数组,相对应值
function
原文地址:https://blog.csdn.net/weixin_46631078/article/details/143639686
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!