Explorar o código

fix(addInvoice): 修复选择行逻辑,确保在打开时不自动选择行

xieyong hai 2 días
pai
achega
22a0ab6d4b
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/views/entrust/components/addInvoice.vue

+ 1 - 1
src/views/entrust/components/addInvoice.vue

@@ -189,7 +189,7 @@
         this.allSelection = list || [];
         this.$nextTick(() => {
           this.allSelection.forEach((item) => {
-            this.$refs.entrustCreateTable.toggleRowSelection(item, true);
+            this.$refs.entrustCreateTable.toggleRowSelection(item, false);
           });
         });
       },