Merge branch 'master' into v1.8

This commit is contained in:
chenjianxing 2021-03-25 14:06:20 +08:00
commit 21bf611d2a
2 changed files with 4 additions and 0 deletions

View File

@ -640,6 +640,7 @@ export default {
if (tmp.steps == null) {
tmp.steps = []
}
tmp.tags = JSON.parse(tmp.tags);
Object.assign(this.form, tmp);
console.log(this.form.selected)
this.form.module = testCase.nodeId;

View File

@ -395,6 +395,9 @@ export default {
item.tags = JSON.parse(item.tags);
}
})*/
this.tableData.forEach((item) => {
item.tags = JSON.parse(item.tags);
})
if (this.$refs.table) {
this.$refs.table.doLayout()
}