|
@@ -4897,7 +4897,10 @@ function checkTagDisabled () {
|
|
|
// 保存前校验 筛选条件
|
|
|
onSaveFilter: function () {
|
|
|
var _this = this
|
|
|
- var obj = this.$refs.areaCityCountry.getState()
|
|
|
+ var obj
|
|
|
+ if(!searchInnerVue.inBIPropertyiframe) {
|
|
|
+ obj = this.$refs.areaCityCountry.getState()
|
|
|
+ }
|
|
|
var val = $("#zbSeatchT [name='keywords']").val().trim()
|
|
|
var params = {
|
|
|
searchvalue: $("#zbSeatchT [name='keywords']").val(),
|
|
@@ -4973,7 +4976,10 @@ function checkTagDisabled () {
|
|
|
},
|
|
|
getFilterState: function() {
|
|
|
var _this = this
|
|
|
- var obj = this.$refs.areaCityCountry.getState()
|
|
|
+ var obj
|
|
|
+ if(!searchInnerVue.inBIPropertyiframe) {
|
|
|
+ obj = this.$refs.areaCityCountry.getState()
|
|
|
+ }
|
|
|
const p = {
|
|
|
searchvalue: $("#zbSeatchT [name='keywords']").val(),
|
|
|
selectType: $("#zbSeatchT [name='selectType']").val(),
|
|
@@ -4997,7 +5003,7 @@ function checkTagDisabled () {
|
|
|
searchMode: this.keywordSearchType, // p260增加 搜索模式:0:精准搜索;1:模糊搜索
|
|
|
wordsMode: this.keywordRadio, // p260增加 搜索关键词模式;默认0:包含所有,1:包含任意
|
|
|
additionalWords: this.keywordTags.toString(), // p260增加 关键词:附加关键词(副:五组,每组最多15个字符)
|
|
|
- regionMap: obj.regionMap
|
|
|
+ regionMap: obj?.regionMap
|
|
|
}
|
|
|
return p
|
|
|
},
|