fix 解决任务进去场景列表里都变成失效了,打开保存后重新进去也还是失效bug
This commit is contained in:
@@ -448,7 +448,7 @@ public class UiSceneStepsServiceImpl implements IUiSceneStepsService {
|
||||
// 4. 错误处理
|
||||
report.setLogInfo(e.toString());
|
||||
report.setExecutionFlag("2");
|
||||
// 根据错误处理设置决定是否继续
|
||||
// 根据错误处理设置决定是否继续哦了
|
||||
if ("1".equals(errorSetting.getErrorHandling())) {
|
||||
continueExecution = false; // 不继续执行后续步骤
|
||||
}
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
<el-table-column prop="name" label="场景名称" />
|
||||
<el-table-column prop="status" label="Enable/Disable">
|
||||
<template slot-scope="scope">
|
||||
<el-switch v-model="scope.row.status" active-value="1" inactive-value="0"></el-switch>
|
||||
<el-switch v-model="scope.row.status" :active-value="1" :inactive-value="0"></el-switch>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="action" label="操作">
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
<el-table-column prop="testCaseName" label="场景名称" />
|
||||
<el-table-column prop="status" label="Enable/Disable">
|
||||
<template slot-scope="scope">
|
||||
<el-switch v-model="scope.row.status" active-value="1" inactive-value="0"></el-switch>
|
||||
<el-switch v-model="scope.row.status" :active-value="1" :inactive-value="0"></el-switch>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="action" label="操作">
|
||||
|
||||
Reference in New Issue
Block a user