代码调整
This commit is contained in:
parent
a69ef7590e
commit
19b90ab854
@ -73,7 +73,10 @@ export default {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: this.$t('trainingManage.labelJson'),
|
title: this.$t('trainingManage.labelJson'),
|
||||||
prop: 'labelJson'
|
prop: 'labelJson',
|
||||||
|
type: 'tagMore',
|
||||||
|
columnValue: (row) => { return this.getLabelJson(row); },
|
||||||
|
tagType: (row) => { return ''; }
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'button',
|
type: 'button',
|
||||||
@ -131,6 +134,10 @@ export default {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
getLabelJson(row) {
|
||||||
|
const label = JSON.parse(row.labelJson);
|
||||||
|
return label;
|
||||||
|
},
|
||||||
covertData(row) {
|
covertData(row) {
|
||||||
const releaseReview = ConstConfig.ConstSelect.trainingType;
|
const releaseReview = ConstConfig.ConstSelect.trainingType;
|
||||||
const lastData = Object.assign({}, row);
|
const lastData = Object.assign({}, row);
|
||||||
|
Loading…
Reference in New Issue
Block a user