Browse Source

Merge branch 'bug_mk' into feature

dlt_feature_0615
mk 1 year ago
parent
commit
95c3b3f46f
  1. 28
      src/views/modules/shequ/chaxun.vue

28
src/views/modules/shequ/chaxun.vue

@ -44,9 +44,18 @@
{{ smatrFlag ? "关闭智能查询" : "智能查询" }} {{ smatrFlag ? "关闭智能查询" : "智能查询" }}
</div> --> </div> -->
</div> </div>
<div class="rules_box" > <div class="rules_box" v-show="searchData.type === 'jumin'">
<el-tag <el-tag
v-for="item in hotTagList" v-for="item in hotTagListResi"
:key="item.label"
:type="item.label"
effect="plain" @click="handelClickTag(item.label)" style="margin-right: 10px;cursor: pointer;">
{{ item.label }}{{item.count}}
</el-tag>
</div>
<div class="rules_box" v-show="searchData.type === 'fangwu'">
<el-tag
v-for="item in hotTagListHouse"
:key="item.label" :key="item.label"
:type="item.label" :type="item.label"
effect="plain" @click="handelClickTag(item.label)" style="margin-right: 10px;cursor: pointer;"> effect="plain" @click="handelClickTag(item.label)" style="margin-right: 10px;cursor: pointer;">
@ -59,8 +68,6 @@
>请点击此处调整</el-button >请点击此处调整</el-button
> >
</p> </p>
</div> </div>
</div> </div>
@ -482,7 +489,8 @@ export default {
childrenRulesData: [], childrenRulesData: [],
hotTagList:[], hotTagListResi:[],
hotTagListHouse:[],
}; };
}, },
computed: { computed: {
@ -503,6 +511,7 @@ export default {
activated() { activated() {
this.firstSearch(); this.firstSearch();
this.getHotResidentSearch() this.getHotResidentSearch()
this.getHotHouseSearch()
}, },
methods: { methods: {
async handleExport() { async handleExport() {
@ -545,7 +554,7 @@ export default {
let url = '/actual/base/residentBaseInfo/hotResidentSearch' let url = '/actual/base/residentBaseInfo/hotResidentSearch'
let {code,data,msg} = await requestPost(url) let {code,data,msg} = await requestPost(url)
if(code === 0){ if(code === 0){
this.hotTagList = data this.hotTagListResi = data
}else{ }else{
console.log(msg); console.log(msg);
} }
@ -554,7 +563,7 @@ export default {
let url = '/actual/base/communityHouse/hotHouseSearch' let url = '/actual/base/communityHouse/hotHouseSearch'
let {code,data,msg} = await requestPost(url) let {code,data,msg} = await requestPost(url)
if(code === 0){ if(code === 0){
this.hotTagList = data this.hotTagListHouse = data
}else{ }else{
console.log(msg); console.log(msg);
} }
@ -788,11 +797,6 @@ export default {
this.getRulesList(); this.getRulesList();
}, },
handelClickTab(type) { handelClickTab(type) {
if(type === 'jumin'){
this.getHotResidentSearch()
}else{
this.getHotHouseSearch()
}
this.searchData.type = type; this.searchData.type = type;
this.handleClickSearchBtn(); this.handleClickSearchBtn();
}, },

Loading…
Cancel
Save