|
@@ -39,6 +39,7 @@
|
|
v-model="form.cityId"
|
|
v-model="form.cityId"
|
|
:options="cityList"
|
|
:options="cityList"
|
|
style="width: 400px;"
|
|
style="width: 400px;"
|
|
|
|
+ :disabled="isFlag"
|
|
:props="{
|
|
:props="{
|
|
children: 'child',
|
|
children: 'child',
|
|
label: 'name',
|
|
label: 'name',
|
|
@@ -221,7 +222,8 @@ export default {
|
|
seatTypeId: null,
|
|
seatTypeId: null,
|
|
calendarId: null,
|
|
calendarId: null,
|
|
|
|
|
|
- cityList: []
|
|
|
|
|
|
+ cityList: [],
|
|
|
|
+ isFlag: false,
|
|
};
|
|
};
|
|
},
|
|
},
|
|
created() {
|
|
created() {
|
|
@@ -243,6 +245,9 @@ export default {
|
|
...obj,
|
|
...obj,
|
|
category: obj.category?obj.category.toString():obj.category
|
|
category: obj.category?obj.category.toString():obj.category
|
|
}))
|
|
}))
|
|
|
|
+ if(this.form.cityId) {
|
|
|
|
+ this.isFlag = true
|
|
|
|
+ }
|
|
|
|
|
|
await this.getPushListFun(obj,type)
|
|
await this.getPushListFun(obj,type)
|
|
|
|
|
|
@@ -403,6 +408,7 @@ export default {
|
|
cancel() {
|
|
cancel() {
|
|
this.reset();
|
|
this.reset();
|
|
this.open = false;
|
|
this.open = false;
|
|
|
|
+ this.isFlag = false;
|
|
},
|
|
},
|
|
isCheck(row){
|
|
isCheck(row){
|
|
let flog = false
|
|
let flog = false
|