
vue+elementUI后台数据为数字前台转化成对应的中文填入表格demo
方式一:<el-table-column prop="DataType" label="数据来源"> <template slot-scope="scope"> {{ scope.row.DataType ? DataTypeList[(scope.row.DataType)].label : '未知来源' }} &...