Parcourir la source

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

xieyong il y a 2 jours
Parent
commit
22a0ab6d4b
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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);
           });
         });
       },