fix(接口定义): 修复禁用复制的场景-调试时显示STOP状态的缺陷 (#17126)

--bug=1016032 --user=赵勇 【接口测试】场景中复制其他场景-禁用复制的场景-调试时显示STOP状态
https://www.tapd.cn/55049933/s/1227881

Co-authored-by: wxg0103 <727495428@qq.com>
This commit is contained in:
MeterSphere Bot 2022-08-19 15:58:07 +08:00 committed by GitHub
parent 3172fc2928
commit 410baa8d4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 3 deletions

View File

@ -755,7 +755,7 @@ export default {
text-overflow: ellipsis;
vertical-align: middle;
white-space: nowrap;
width: 200px;
max-width: 200px;
}
</style>

View File

@ -109,7 +109,9 @@ export default {
},
watch: {
message() {
this.scenario.run = this.message !== "stop";
if (this.message === 'stop') {
this.scenario.run = false;
}
this.reload();
},
'node.data.isBatchProcess'() {

View File

@ -973,6 +973,6 @@ export default {
text-overflow: ellipsis;
vertical-align: middle;
white-space: nowrap;
width: 200px;
max-width: 200px;
}
</style>