代码调整

This commit is contained in:
dong 2022-11-28 13:31:06 +08:00
parent a69ef7590e
commit 19b90ab854

View File

@ -73,7 +73,10 @@ export default {
},
{
title: this.$t('trainingManage.labelJson'),
prop: 'labelJson'
prop: 'labelJson',
type: 'tagMore',
columnValue: (row) => { return this.getLabelJson(row); },
tagType: (row) => { return ''; }
},
{
type: 'button',
@ -131,6 +134,10 @@ export default {
});
}
},
getLabelJson(row) {
const label = JSON.parse(row.labelJson);
return label;
},
covertData(row) {
const releaseReview = ConstConfig.ConstSelect.trainingType;
const lastData = Object.assign({}, row);