Quellcode durchsuchen

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

lupeng vor 3 Monaten
Ursprung
Commit
3253c4f89b
1 geänderte Dateien mit 8 neuen und 1 gelöschten Zeilen
  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") {