From 762d0b5bcbe24ad807d74d59aff8980f8b3e5dc2 Mon Sep 17 00:00:00 2001 From: mk <2403457699@qq.com> Date: Fri, 14 Jun 2024 18:20:43 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A6=96=E6=AC=A1=E5=8A=A0=E8=BD=BD=E5=AE=8C?= =?UTF-8?q?=E6=AF=95=E5=88=87=E6=8D=A2=E4=B8=8D=E5=86=8D=E8=B0=83=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/shequ/chaxun.vue | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/src/views/modules/shequ/chaxun.vue b/src/views/modules/shequ/chaxun.vue index e677811c9..d794ff48d 100644 --- a/src/views/modules/shequ/chaxun.vue +++ b/src/views/modules/shequ/chaxun.vue @@ -44,9 +44,18 @@ {{ smatrFlag ? "关闭智能查询" : "智能查询" }} --> -
+
+ {{ item.label }}({{item.count}}) + +
+
+ @@ -59,8 +68,6 @@ >请点击此处调整

- -
@@ -482,7 +489,8 @@ export default { childrenRulesData: [], - hotTagList:[], + hotTagListResi:[], + hotTagListHouse:[], }; }, computed: { @@ -503,6 +511,7 @@ export default { activated() { this.firstSearch(); this.getHotResidentSearch() + this.getHotHouseSearch() }, methods: { async handleExport() { @@ -545,7 +554,7 @@ export default { let url = '/actual/base/residentBaseInfo/hotResidentSearch' let {code,data,msg} = await requestPost(url) if(code === 0){ - this.hotTagList = data + this.hotTagListResi = data }else{ console.log(msg); } @@ -554,7 +563,7 @@ export default { let url = '/actual/base/communityHouse/hotHouseSearch' let {code,data,msg} = await requestPost(url) if(code === 0){ - this.hotTagList = data + this.hotTagListHouse = data }else{ console.log(msg); } @@ -788,11 +797,6 @@ export default { this.getRulesList(); }, handelClickTab(type) { - if(type === 'jumin'){ - this.getHotResidentSearch() - }else{ - this.getHotHouseSearch() - } this.searchData.type = type; this.handleClickSearchBtn(); },