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();
},