jufubao-base 1.0.289-beta6 → 1.0.289-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
|
@@ -173,7 +173,7 @@
|
|
|
173
173
|
filterTabIcon: [
|
|
174
174
|
{ value: 'area', label: '区域',icon: 'icondizhitubiao', size: 24 },
|
|
175
175
|
{ value: 'brand', label: '品牌',icon: 'iconxia_down', size: 18 },
|
|
176
|
-
{ value: '
|
|
176
|
+
{ value: 'shop_category', label: '门店分类',icon: 'iconxia_down', size: 18 },
|
|
177
177
|
{ value: 'filter', label: '筛选', icon: 'iconshaixuanbiaoji_mian', size: 24 },
|
|
178
178
|
{ value: 'comprehensive', label: '综合', icon: 'iconxia_down', size: 18 },
|
|
179
179
|
{ value: 'sort', label: '排序', icon: 'iconxia_down', size: 18 },
|
|
@@ -414,8 +414,8 @@
|
|
|
414
414
|
this.sort = '';
|
|
415
415
|
if (item.filter_item && item.filter_item.tab_filter) {
|
|
416
416
|
// 综合和排序的显示状态,当选中综合或排序时,下拉菜单取本地数据
|
|
417
|
-
this.showComprehensive = item.filter_item.tab_filter.find(item => item.value === 'comprehensive')
|
|
418
|
-
this.showSort = item.filter_item.tab_filter.find(item => item.value === 'sort')
|
|
417
|
+
this.showComprehensive = item.filter_item.tab_filter.find(item => item.value === 'comprehensive')?true:false;
|
|
418
|
+
this.showSort = item.filter_item.tab_filter.find(item => item.value === 'sort')?true:false;
|
|
419
419
|
let filter_item = item.filter_item.tab_filter.filter(item => {
|
|
420
420
|
return (item.value !== 'comprehensive'&&item.value !== 'sort')
|
|
421
421
|
})
|