statusName(row) {
const list = this.cerTypeOption;
const chioseItem = list.find((item) => {
return item.id == row.cerType;
});
if (chioseItem) {
return chioseItem.name;
} else {
return "未知状态";
}
},