|
@@ -2223,8 +2223,10 @@ export default {
|
|
|
vSwitch: this.vSwitch,
|
|
|
match_way: wordsMode
|
|
|
}
|
|
|
+ const loading = this.$toast.loading({ duration: 0 })
|
|
|
try {
|
|
|
const { flag } = await setUserSubInfo(params)
|
|
|
+ loading.clear()
|
|
|
if (flag === 'y') {
|
|
|
this.saveState()
|
|
|
openAppOrWxPage(LINKS.关键词列表)
|
|
@@ -2474,12 +2476,8 @@ export default {
|
|
|
* */
|
|
|
let labelList = formattedList
|
|
|
.filter((v) => {
|
|
|
- if (v.label === '搜索范围:') {
|
|
|
- v.text = v.text.replace(/搜索/g, '')
|
|
|
- }
|
|
|
if (v.label === '信息类型:') {
|
|
|
const isChecked = deepCompareInfoType(v.text)
|
|
|
- // console.log(isChecked, '是否全选')
|
|
|
v.text = isChecked ? '' : v.text
|
|
|
}
|
|
|
if (this.topSearch.input) {
|
|
@@ -2494,7 +2492,11 @@ export default {
|
|
|
if (searchModeText && this.topSearch.input) {
|
|
|
labelList = [searchModeText].concat(labelList)
|
|
|
}
|
|
|
- if (searchGroup > 0) {
|
|
|
+ const isHaveInfoType = formattedList.some((v) =>
|
|
|
+ v.label.includes('信息类型')
|
|
|
+ )
|
|
|
+ // console.log(isHaveInfoType, 'isHaveInfoType')
|
|
|
+ if (searchGroup > 0 && !isHaveInfoType) {
|
|
|
labelList = labelList.concat(this.activeSearchGroupInfo.title)
|
|
|
}
|
|
|
let label = ''
|
|
@@ -3299,4 +3301,7 @@ export default {
|
|
|
left: 12px;
|
|
|
right: 12px;
|
|
|
}
|
|
|
+.customer-corner {
|
|
|
+ z-index: 10;
|
|
|
+}
|
|
|
</style>
|