fix(接口测试): 修复单场景步骤调试停止按钮未同步更新问题
--bug=1020048 --user=赵勇 【接口测试】场景A导入一个复制/引用的场景B,单独调试场景B,“停止”按钮不更新 https://www.tapd.cn/55049933/s/1300956
This commit is contained in:
parent
6db72d197a
commit
7eb1726940
|
@ -137,7 +137,7 @@ export default {
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
message() {
|
message() {
|
||||||
if (this.message === 'STOPPED') {
|
if (['STOPPED', 'STOP'].includes(this.message.toUpperCase())) {
|
||||||
this.scenario.run = false;
|
this.scenario.run = false;
|
||||||
}
|
}
|
||||||
this.reload();
|
this.reload();
|
||||||
|
|
Loading…
Reference in New Issue