瀏覽代碼

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

xieyong 2 天之前
父節點
當前提交
22a0ab6d4b
共有 1 個文件被更改,包括 1 次插入1 次删除
  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);
           });
         });
       },