<el-table-column label="项目模板名称" align="center" prop="tempName" width="180" :formatter="templFormat" />
:formatter="templFormat"
// 模板名单
optionTempls: [],
// datas value
templFormat(row, column) {
var templName = "";
Object.keys(this.optionTempls).some((key) => {
if (this.optionTempls[key].templId == ("" + row.tempName)) {
templName = this.optionTempls[key].templName
}
})
return templName;
},