fix (测试跟踪): 勾选掉资源池仍执行问题修复
This commit is contained in:
parent
fdee19561e
commit
7069b604d9
|
@ -76,6 +76,19 @@ export default {
|
|||
},
|
||||
};
|
||||
},
|
||||
watch:{
|
||||
'runConfig.runWithinResourcePool'(){
|
||||
if(!this.runConfig.runWithinResourcePool){
|
||||
this.runConfig = {
|
||||
mode: this.runConfig.mode,
|
||||
reportType: "iddReport",
|
||||
reportName: "",
|
||||
runWithinResourcePool: false,
|
||||
resourcePoolId: null,
|
||||
};
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
open() {
|
||||
this.runModeVisible = true;
|
||||
|
|
|
@ -86,6 +86,19 @@ export default {
|
|||
},
|
||||
};
|
||||
},
|
||||
watch:{
|
||||
'runConfig.runWithinResourcePool'(){
|
||||
if(!this.runConfig.runWithinResourcePool){
|
||||
this.runConfig = {
|
||||
mode: this.runConfig.mode,
|
||||
reportType: "iddReport",
|
||||
reportName: "",
|
||||
runWithinResourcePool: false,
|
||||
resourcePoolId: null,
|
||||
};
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
open(testType) {
|
||||
this.runModeVisible = true;
|
||||
|
|
Loading…
Reference in New Issue