傅豪杰 преди 7 месеца
родител
ревизия
bf46b059c3
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      src/pages/new/combine.vue

+ 2 - 2
src/pages/new/combine.vue

@@ -87,11 +87,11 @@ export default {
         isAllChecked: {
             // 计算是否全选
             get() {
-                return this.goods.filter((good) => !this.checkDisabled(good)).length === this.checkedGoods.length && this.checkedGoods.length;
+                return this.goods.length === this.checkedGoods.length;
             },
             // 设置全选
             set(value) {
-                this.checkedGoods = value ? this.goods.filter((good) => !this.checkDisabled(good)).map(good => good.id) : [];
+                this.checkedGoods = value ? this.goods.map(good => good.id) : [];
             }
         }
     },