根据字典值匹配 列的值 优点就是可维护性强 改完字典就会生效 如果写死需求变更难以维护
javascript
<el-table v-loading="loading" :data="processList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<!--类型匹配转换-->
<el-table-column label="类型" align="center" prop="type">
<template slot-scope="scope">
{{getChangeType(scope.row.type)}}<!--调用getChangeType方法-->
</template>
</el-table-column>
</el-table>
javascript
getChangeType(e) {
for (var i = 0; i < this.typeList.length; i++) {
if (this.typeList[i].value == e) { //value,label保持和上面定义一致
return this.typeList[i].label;
}
}
},
typeList是你从字典getdict获取的数组 根据对应的value 匹配对应的label