|
@@ -150,6 +150,7 @@
|
|
|
<el-table-column label="操作" slot="cgInfos" align="center">
|
|
|
<template v-slot="scope">
|
|
|
<i
|
|
|
+ v-if="scope.row.nowRunState != '10'"
|
|
|
@click="
|
|
|
viewRow(scope.row.id, scope.row.projectName)
|
|
|
"
|
|
@@ -548,8 +549,8 @@ export default {
|
|
|
|
|
|
for (let index = 0; index < checkedArr.length; index++) {
|
|
|
const row = checkedArr[index];
|
|
|
- if (row.nowRunState != "10") {
|
|
|
- this.$message.error("存在已执行数据,请重新选择");
|
|
|
+ if (row.nowRunState === "20") {
|
|
|
+ this.$message.error("存在执行中的数据,请重新选择");
|
|
|
return;
|
|
|
}
|
|
|
arr.push(row.id);
|