From fee01ae875ec383b54535077956277909dd9c7db Mon Sep 17 00:00:00 2001 From: lixuan Date: Thu, 1 Dec 2022 16:06:58 +0800 Subject: [PATCH 1/2] xiugai --- components/sl-filter/filter-view.vue | 16 ++++++++++++---- pages/tabbar/station/stationList.vue | 7 ++++++- 2 files changed, 18 insertions(+), 5 deletions(-) diff --git a/components/sl-filter/filter-view.vue b/components/sl-filter/filter-view.vue index d611d32..13d6fcb 100644 --- a/components/sl-filter/filter-view.vue +++ b/components/sl-filter/filter-view.vue @@ -3,21 +3,27 @@ - + + {{item.detailTitle}} + + + {{detailItem.title}} + + @@ -81,6 +87,7 @@ result: {}, menuIndex: 0, selectDetailList: [], + selectDetailLists: [], independenceObj: {}, selectedKey: '', cacheSelectedObj: {}, @@ -347,6 +354,7 @@ console.log('展开') this.menuIndex = index; this.selectDetailList = this.menuList[index].detailList; + this.selectDetailLists = this.menuList[index].detailLists; this.selectedKey = this.menuList[index].key; // 如果是独立菜单 if (this.independence && !this.menuList[index].isSort) { @@ -475,7 +483,6 @@ }, resetSelected(list, key) { console.log('%c 重置方法第二步resetSelected函数参数↓','color:green;font-size:30px') - console.log(list, key) if (typeof this.result[key] == 'object') { this.result[key] = []; this.selectedTitleObj[key] = list[0].title; @@ -490,6 +497,7 @@ list[i].isSelected = false; } } + console.log(this.result) // #ifdef H5 this.$forceUpdate(); // #endif diff --git a/pages/tabbar/station/stationList.vue b/pages/tabbar/station/stationList.vue index 039d0e9..3b5d6b3 100644 --- a/pages/tabbar/station/stationList.vue +++ b/pages/tabbar/station/stationList.vue @@ -131,6 +131,10 @@ key: 'siteBrand', isSort: true, isMutiple: false, + detailLists:[{ + title: "全部", + value: "" + }], detailList: [{ title: "全部", value: "" @@ -379,7 +383,8 @@ this.productCodeList = uni.getStorageSync('productCodeList') // console.log(this.productCodeList,'新的列表格式') res.data.channelCodes.map(item => { - this.menuList[1].detailList.push({ + // this.menuList[1].detailList.push({ + this.menuList[3].detailLists.push({ title: item.name, value: item.id }) From 386045339f3a71b42b23132ad7821433761a7f62 Mon Sep 17 00:00:00 2001 From: lixuan Date: Tue, 6 Dec 2022 18:12:13 +0800 Subject: [PATCH 2/2] xiugai --- api/account.js | 8 + components/sl-filter/filter-view.vue | 236 +++++++++++++++++++++++---- components/sl-filter/sl-filter.vue | 10 ++ pages/tabbar/station/stationList.vue | 43 +++-- 4 files changed, 256 insertions(+), 41 deletions(-) diff --git a/api/account.js b/api/account.js index 2a5f2b5..7801703 100644 --- a/api/account.js +++ b/api/account.js @@ -10,6 +10,14 @@ export default { data:data }) }, + //查询不可用油卡 + getSyncDeductions (data) { + return request({ + url: `/oil-dict/areaCode/getSyncDeductions`, + method: 'post', + data:data + }) + }, //获取用户油卡账户信息 (个人 / 自营 / 外请) getUserAccount (data) { return request({ diff --git a/components/sl-filter/filter-view.vue b/components/sl-filter/filter-view.vue index d6f01ad..e16553c 100644 --- a/components/sl-filter/filter-view.vue +++ b/components/sl-filter/filter-view.vue @@ -18,15 +18,17 @@ + 渠道 + @tap="itemTaps(idx,selectDetailLists,item.isMutiple,'channelCode',detailItem)"> {{detailItem.title}} + 品牌 + @tap="itemTap(idx,selectDetailList,item.isMutiple,item.key,detailItem,index)"> {{detailItem.title}} @@ -40,9 +42,9 @@ - + - + @@ -64,10 +66,10 @@