浏览代码

fix:修改点检项选择后不可再选

lupeng 3 月之前
父节点
当前提交
3253c4f89b
共有 1 个文件被更改,包括 8 次插入1 次删除
  1. 8 1
      src/views/base/craftManagement/route/components/bottomTable.vue

+ 8 - 1
src/views/base/craftManagement/route/components/bottomTable.vue

@@ -209,10 +209,17 @@ const startCreat = () => {
   } else if (props.tableType === "dianjian") {
     commonTableType.value = "OP_CHECK";
     nextTick(() => {
-      commonTableRef.value?.startSelect();
+      commonTableRef.value?.startSelect({
+        operationId: route.params.id
+      });
       commonTableRef.value?.mergeOption({
         selection: true,
         reserveSelection: true,
+        header: false,
+        selectable: function (row, index) {
+          return row.isSelect;
+
+        },
       });
     });
   } else if (props.tableType === "ESOP") {