From 62a5e39390d2bcfa9aa3e9b1ec92cc76d80a97c1 Mon Sep 17 00:00:00 2001 From: xiaozhiyong Date: Thu, 4 May 2023 11:25:28 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/sl-filter/filter-view.vue | 33 ++++++++++++++++++---------- 1 file changed, 22 insertions(+), 11 deletions(-) diff --git a/components/sl-filter/filter-view.vue b/components/sl-filter/filter-view.vue index 3015b72..1e46230 100644 --- a/components/sl-filter/filter-view.vue +++ b/components/sl-filter/filter-view.vue @@ -48,17 +48,21 @@ - {{ item.areaName }} + + {{ JSON.stringify(item.areaName) }} + {{item.areaName}} + {{ JSON.stringify(item.areaName) }} {{ item.areaName }} + {{ JSON.stringify(item.areaName) }} {{ item.areaName }} @@ -165,7 +169,7 @@ } // this.areaCodeList = this.areaCodeList1 console.log(this.areaCodeList,this.areaCodeList1,'11111111111111') - this.areaCodeList.unshift({areaName:'全部'}) + this.areaCodeList.unshift({areaName:'全部',childList:[{areaName:'',childList:[{areaName:''}]}]}) },3000) console.log('%c 子组件参数↓','font-size:30px;color:red') }, @@ -213,17 +217,24 @@ } if(!ccc){ // 数组push‘全部’ - if(this.areaCodeList[val[0]].childList[0].areaName != '全部'){ - this.areaCodeList[val[0]].childList.unshift({areaName:'全部'}) - } - if(this.areaIndex[1]!=0){ - if(this.areaCodeList[val[0]].childList[val[1]].childList[0].areaName != '全部'){ - this.areaCodeList[val[0]].childList[val[1]].childList.unshift({areaName:'全部'}) + if(val[0] != 0) { + if(this.areaCodeList[val[0]].childList[0].areaName != '全部'){ + this.areaCodeList[val[0]].childList.unshift({areaName:'全部'}) + } + if(this.areaIndex[1]!=0){ + if(this.areaCodeList[val[0]].childList[val[1]].childList[0].areaName != '全部'){ + this.areaCodeList[val[0]].childList[val[1]].childList.unshift({areaName:'全部'}) + } } + this.provinceCode = this.areaCodeList[this.areaIndex[0]].id + this.cityCode = this.areaCodeList[this.areaIndex[0]].childList[this.areaIndex[1]].id + this.areaCode = this.areaCodeList[this.areaIndex[0]].childList[this.areaIndex[1]].childList[this.areaIndex[2]].id + }else { + this.provinceCode = this.cityCode =this.areaCode = '' + this.areaIndex = [0,0,0] } - this.provinceCode = this.areaCodeList[this.areaIndex[0]].id - this.cityCode = this.areaCodeList[this.areaIndex[0]].childList[this.areaIndex[1]].id - this.areaCode = this.areaCodeList[this.areaIndex[0]].childList[this.areaIndex[1]].childList[this.areaIndex[2]].id + + } this.$emit('changeArea',e)