fix:修复编辑用例js报错
This commit is contained in:
parent
e903441002
commit
deaf05dd5f
|
@ -1,2 +0,0 @@
|
||||||
-- api_scenario_report modify column length
|
|
||||||
ALTER TABLE api_scenario_report MODIFY COLUMN name VARCHAR(300);
|
|
|
@ -631,8 +631,11 @@ export default {
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
async setFormData(testCase) {
|
async setFormData(testCase) {
|
||||||
//testCase.tags = JSON.parse(testCase.tags);
|
try {
|
||||||
testCase.selected = JSON.parse(testCase.testId);
|
testCase.selected = JSON.parse(testCase.testId);
|
||||||
|
} catch (error) {
|
||||||
|
testCase.selected = testCase.testId
|
||||||
|
}
|
||||||
let tmp = {};
|
let tmp = {};
|
||||||
Object.assign(tmp, testCase);
|
Object.assign(tmp, testCase);
|
||||||
tmp.steps = JSON.parse(testCase.steps);
|
tmp.steps = JSON.parse(testCase.steps);
|
||||||
|
@ -643,9 +646,8 @@ export default {
|
||||||
Object.assign(this.form, tmp);
|
Object.assign(this.form, tmp);
|
||||||
this.form.module = testCase.nodeId;
|
this.form.module = testCase.nodeId;
|
||||||
this.getFileMetaData(testCase);
|
this.getFileMetaData(testCase);
|
||||||
/* testCase.selected = JSON.parse(testCase.testId);
|
|
||||||
this.form.selected= testCase.selected*/
|
|
||||||
await this.loadOptions(this.sysList)
|
await this.loadOptions(this.sysList)
|
||||||
|
|
||||||
},
|
},
|
||||||
setTestCaseExtInfo(testCase) {
|
setTestCaseExtInfo(testCase) {
|
||||||
this.testCase = {};
|
this.testCase = {};
|
||||||
|
|
Loading…
Reference in New Issue