Commit 21bf611d authored by chenjianxing's avatar chenjianxing
Browse files

Merge branch 'master' into v1.8

parents 69bbe54d 7ac98d98
Showing with 4 additions and 0 deletions
+4 -0
......@@ -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;
......
......@@ -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()
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment