Browse Source

居民事件上报标记功能恢复

dongming
mk 9 months ago
parent
commit
b36c82823d
  1. 2
      src/views/modules/shequzhili/eventOld/cpts/event-detail.vue
  2. 11
      src/views/modules/shequzhili/eventOld/eventList.vue

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

@ -294,7 +294,7 @@ 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);

11
src/views/modules/shequzhili/eventOld/eventList.vue

@ -125,7 +125,16 @@
<div class="m-table">
<div class="div_btn">
<el-button size="small" type="primary " @click="handleAdd">新增</el-button>
<el-dropdown size="small" split-button type="primary" style="margin: 0 10px; height: 30px"
@command="(command) => handleMarkDiffcult(command)">
标记
<el-dropdown-menu slot="dropdown">
<el-dropdown-item command="1">标记为难点堵点</el-dropdown-item>
<el-dropdown-item command="2">标记为矛盾纠纷</el-dropdown-item>
<el-dropdown-item command="3">标记为自身问题</el-dropdown-item>
<el-dropdown-item command="4">标记为超出服务范围</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
<el-button @click="handleExport" class="diy-button--white" size="small">导出</el-button>
<el-button @click="handleSuperviseEvent" class="diy-button--white" size="small">批量催办</el-button>
</div>

Loading…
Cancel
Save