|
@@ -509,6 +509,12 @@ export default {
|
|
|
this.$emit('changeActionData', this.rightTagsList, false);
|
|
|
this.getFlagList()
|
|
|
},
|
|
|
+ getTextType(type){
|
|
|
+ if(type == 322 || type == 22 || type == 32 || type == 31 || type == 1 || type == 2){
|
|
|
+ return 1
|
|
|
+ }
|
|
|
+ return type
|
|
|
+ },
|
|
|
searchTagList() {
|
|
|
let notIds = []
|
|
|
let tmpArr = this.rightTagsList.slice();
|
|
@@ -517,9 +523,10 @@ export default {
|
|
|
notIds.push(tmpArr[i].id)
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
let param = {
|
|
|
"tagName": this.searchVal,
|
|
|
- "type": this.type == 3?3:1,
|
|
|
+ "type": this.getTextType(this.type),
|
|
|
"notIds": notIds,
|
|
|
"notTagType": this.type == 3?[3,8,10]:[3,4,8,10]
|
|
|
}
|