Browse Source

事件上报中有网格但是出发验证提示未选中网格

dongming
mk 9 months ago
parent
commit
7cd8855a30
  1. 7
      src/views/modules/shequzhili/eventOld/cpts/event-detail.vue
  2. 2
      src/views/modules/shequzhili/eventOld/cpts/event-info.vue

7
src/views/modules/shequzhili/eventOld/cpts/event-detail.vue

@ -271,7 +271,7 @@ export default {
watch: {
"info.gridId": function (val) {
this.selGridId = val;
this.$emit("changeGridId", val);
this.$emit("handelCLickGridId", val);
this.gridId = this.selGridId;
if (!this.eventDetailData.gridId && this.selGridId) {
this.updateEvent();
@ -294,8 +294,11 @@ export default {
},
mounted() {
this.user = this.$store.state.user;
if (this.eventId) {
if (this.eventId) {//
this.info = JSON.parse(JSON.stringify(this.eventDetailData));
if(this.info.gridId){
this.$emit("handelCLickGridId", this.info.gridId);
}
this.agencyId = this.info.agencyId
}
this.loadGrid();

2
src/views/modules/shequzhili/eventOld/cpts/event-info.vue

@ -510,7 +510,7 @@ export default {
}
},
handelCLickGridId(val){
this.grid = val.value;
this.grid = val;
},
async handelDispose() {
console.log(this.grid,"DSFKDSFJDKS");

Loading…
Cancel
Save