|
@@ -294,17 +294,16 @@ export default {
|
|
|
watch: {
|
|
|
newSex(nextVal, prevVal) {
|
|
|
this.tmpSex = prevVal;
|
|
|
- this.searchTagList()
|
|
|
+ if (nextVal != prevVal || this.form.region2 == 2 || this.form.region2 == 6 || this.form.region2 == 7 || this.form.region2 == 9) {
|
|
|
+ this.searchTagList()
|
|
|
+ }
|
|
|
},
|
|
|
newType(nextVal, prevVal) {
|
|
|
this.tmpOwn = prevVal;
|
|
|
- if (nextVal != prevVal) {
|
|
|
- // this.searchTagList()
|
|
|
- }
|
|
|
},
|
|
|
newSign(nextVal, prevVal) {
|
|
|
this.tmpType = prevVal;
|
|
|
- if (nextVal != prevVal) {
|
|
|
+ if (nextVal != prevVal || this.form.region2 == 2 || this.form.region2 == 6 || this.form.region2 == 7 || this.form.region2 == 9) {
|
|
|
this.searchTagList()
|
|
|
}
|
|
|
},
|
|
@@ -324,6 +323,7 @@ export default {
|
|
|
})
|
|
|
},
|
|
|
searchTagList() {
|
|
|
+ console.log(999)
|
|
|
let region1 = this.form.region1, region2 = this.form.region2;
|
|
|
let param1 = !!region2 ? api.getGroupParams(region2): {};
|
|
|
let param2 = {
|