|
|
@@ -228,6 +228,24 @@ |
|
|
|
> |
|
|
|
</el-option> |
|
|
|
</el-select> |
|
|
|
</div> |
|
|
|
<div class="div-labox"> |
|
|
|
<div class="labeltext">违禁标签:</div> |
|
|
|
<el-select |
|
|
|
v-model="searchForm.sensitiveWords" |
|
|
|
clearable |
|
|
|
filterable |
|
|
|
placeholder="请选择" |
|
|
|
class="div-inpbox" |
|
|
|
> |
|
|
|
<el-option |
|
|
|
v-for="item in sensitiveList" |
|
|
|
:key="item.id" |
|
|
|
:label="item.words" |
|
|
|
:value="item.words" |
|
|
|
> |
|
|
|
</el-option> |
|
|
|
</el-select> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="app-topbox"> |
|
|
@@ -497,6 +515,7 @@ export default { |
|
|
|
timeType: "0", |
|
|
|
clientStage: "", |
|
|
|
orderBy:'', |
|
|
|
sensitiveWords:'', |
|
|
|
}, |
|
|
|
clientStagelist: [], |
|
|
|
sensitiveList:[],//违禁词 |
|
|
@@ -577,6 +596,7 @@ export default { |
|
|
|
searchForm: "", |
|
|
|
timeType: "0", |
|
|
|
orderBy:'', |
|
|
|
sensitiveWords:'', |
|
|
|
projectId: |
|
|
|
this.orgType == 3 |
|
|
|
? localStorage.getItem("houseId") |
|
|
@@ -585,13 +605,15 @@ export default { |
|
|
|
this.findbypage(); |
|
|
|
}, |
|
|
|
houseChange() { |
|
|
|
this.searchForm.sensitiveWords='' |
|
|
|
this.searchForm.keywordsId=[] |
|
|
|
this.findbypage(); |
|
|
|
this.findKeywords(); |
|
|
|
// 获取置业顾问列表 |
|
|
|
this.findUserListByHouseId(); |
|
|
|
this.getclientStage(); |
|
|
|
// 获取违禁词 |
|
|
|
// this.sensitivewordsList() |
|
|
|
this.sensitivewordsList() |
|
|
|
}, |
|
|
|
// 违禁词 |
|
|
|
sensitivewordsList(){ |
|
|
@@ -599,6 +621,7 @@ export default { |
|
|
|
houseId: this.searchForm.projectId, |
|
|
|
}; |
|
|
|
this.$api.api.sensitivewordsList(obj).then((res) => { |
|
|
|
console.log(res,'suhju') |
|
|
|
this.sensitiveList = res.data; |
|
|
|
}); |
|
|
|
}, |
|
|
|