|
@@ -1012,15 +1012,16 @@ function beforeSubmit(from){
|
|
|
// 如果在反爬白名单,则空搜索刷新搜索结果(即允许空搜索)
|
|
|
// 不在,则不允许空搜索(此处空搜索指的是主搜索框是否为空)
|
|
|
if (!onAntiSpiderWhitelist) {
|
|
|
+ var hasOneKey = (searchInnerVue.buyerTags.length || searchInnerVue.winnerTags.length || searchInnerVue.proxyTags.length) > 0
|
|
|
+
|
|
|
// 切换三种筛选类型时候判断(切换tab时不弹窗)
|
|
|
- if (!searchKeywords) {
|
|
|
+ if (!searchKeywords && !hasOneKey) {
|
|
|
if (from.indexOf('tab-') !== -1) {
|
|
|
return false
|
|
|
}
|
|
|
}
|
|
|
// 关键词去两边空格后为空
|
|
|
if (!searchKeywords && searchInnerVue.keywordTags.length === 0) {
|
|
|
- var hasOneKey = (searchInnerVue.buyerTags.length || searchInnerVue.winnerTags.length || searchInnerVue.proxyTags.length) > 0
|
|
|
if (!hasOneKey) {
|
|
|
showToast('请先输入关键词')
|
|
|
return false
|