例如:后端传来的状态为0,1,2三个值
在<el-table-column
prop="status"
label-"状态"
>
<template slot-scope="scope">
{{statusData[(scope.row.status)].label}}
</template>
</el-table-column>
在data里面的数据这样设计:
statusData:{
'0':{
label:'未处理',
sign:false,
},
'1':{
label:'已派车',
sign:false,
},
'2':{
label:'已结束',
sign:true
}
}
VUE表单处理后端传来的数字变成汉字
最新推荐文章于 2024-07-04 16:51:16 发布