baiqiu-cms-decoration2 2.0.10 → 2.0.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -83067,7 +83067,9 @@ let slideLayout_speed = 16.7;
83067
83067
  },
83068
83068
  // 轮播列表
83069
83069
  list() {
83070
- return this.layOutData.list;
83070
+ return this.layOutData.list.filter(item => {
83071
+ return item.displayType !== 0;
83072
+ });
83071
83073
  },
83072
83074
  // 样式type
83073
83075
  styleType() {
@@ -83140,7 +83142,7 @@ let slideLayout_speed = 16.7;
83140
83142
  };
83141
83143
  },
83142
83144
  slideLen() {
83143
- return this.layOutData.list.length;
83145
+ return this.list.length;
83144
83146
  },
83145
83147
  centeredSlides() {
83146
83148
  return this.styleType == 2;
@@ -83076,7 +83076,9 @@ let slideLayout_speed = 16.7;
83076
83076
  },
83077
83077
  // 轮播列表
83078
83078
  list() {
83079
- return this.layOutData.list;
83079
+ return this.layOutData.list.filter(item => {
83080
+ return item.displayType !== 0;
83081
+ });
83080
83082
  },
83081
83083
  // 样式type
83082
83084
  styleType() {
@@ -83149,7 +83151,7 @@ let slideLayout_speed = 16.7;
83149
83151
  };
83150
83152
  },
83151
83153
  slideLen() {
83152
- return this.layOutData.list.length;
83154
+ return this.list.length;
83153
83155
  },
83154
83156
  centeredSlides() {
83155
83157
  return this.styleType == 2;