jufubao-mall 2.0.16-beta5 → 2.0.16-beta7

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jufubao-mall",
3
- "version": "2.0.16-beta5",
3
+ "version": "2.0.16-beta7",
4
4
  "private": false,
5
5
  "description": "聚福宝商城业务组件插件包",
6
6
  "main": "index.js",
@@ -17,7 +17,7 @@
17
17
  <!-- #endif -->
18
18
  <view class="jfb-mall-new-shop-list__body" >
19
19
  <!--搜索条件-->
20
- <view v-if="showQuery === 'Y' && isFixed" :style="{height:cateFixedHeight + 'rpx'}"></view>
20
+ <view v-if="showQuery === 'Y' && isFixed && searchFilterList.length > 0" :style="{height:cateFixedHeight + 'rpx'}"></view>
21
21
  <view
22
22
  class="query_wrap"
23
23
  :class="{isFixed:isFixed}"
@@ -275,7 +275,7 @@
275
275
  this.serverType = gCPVal(container, 'serverType', [['SELL']]);
276
276
  this.shopType = gCPVal(container, 'shopType', '');
277
277
  this.shopListStyle = gCPVal(container, 'shopListStyle', 'v2');
278
- this.showQuery = 'Y'//gCPVal(container, 'showQuery', 'N');
278
+ this.showQuery = gCPVal(container, 'showQuery', 'N');
279
279
  if(this.showQuery === 'Y') this.filterMode = gCPVal(container, 'filterMode', [['filter']])
280
280
  else this.filterMode = [];
281
281
 
@@ -518,8 +518,6 @@
518
518
  keyword: this.keyword,
519
519
  city_code: this.stateCity.city_code,
520
520
  type:'sell',
521
- filter_item: this.filterMode.filter(item=>item !== 'filter').join(','),
522
-
523
521
  }
524
522
  jfbRootExec("getNewSearchFilterList", {
525
523
  vm: this,
@@ -93,7 +93,7 @@ export default {
93
93
  };
94
94
  },
95
95
  boxListComp(){
96
- let maxHeight = this.$root.layoutInfo['bodyMinHeightRpx'] - 180;
96
+ let maxHeight = this.$root.layoutInfo['bodyMinHeightRpx'] - 400;
97
97
  if(this.$configProject.isPreview) maxHeight = 800;
98
98
  return {
99
99
  backgroundColor: this.filterStyle['filterListColor'] || '#f8f8f8',