Browse Source

Merge branch 'feature' of http://120.46.222.128:10021/elink-star/epmet-work-pc-chengyang into xiaowang-featrue

dev
是小王呀\24601 10 months ago
parent
commit
701ca21c8a
  1. 9
      src/views/modules/shequzhili/eventOld/eventList.vue
  2. 1004
      src/views/modules/shequzhili/eventOld/eventOverPeriodList.vue

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

@ -125,7 +125,7 @@
</el-dropdown-menu> </el-dropdown-menu>
</el-dropdown> </el-dropdown>
<el-button @click="handleCancalDiffcult" class="diy-button--white" size="small">取消标记</el-button> <el-button @click="handleCancalDiffcult" class="diy-button--white" size="small">取消标记</el-button>
<el-button @click="handleSuperviseEvent" class="diy-button--white" size="small">督办催办</el-button> <el-button @click="handleSuperviseEvent" class="diy-button--white" size="small">批量催办</el-button>
</div> </div>
<el-table :data="tableData" border class="m-table-item" style="width: 100%" <el-table :data="tableData" border class="m-table-item" style="width: 100%"
@ -268,7 +268,7 @@
<el-button size="small" @click="showVoice = false">取消</el-button> <el-button size="small" @click="showVoice = false">取消</el-button>
</div> </div>
</el-dialog> </el-dialog>
<el-dialog :title="'督办催办'" :visible.sync="showSupervise" width="40%" top="5vh" append-to-body class="dialog-h" <el-dialog :title="'催办'" :visible.sync="showSupervise" width="40%" top="5vh" append-to-body class="dialog-h"
:close-on-click-modal="false"> :close-on-click-modal="false">
<el-form :model="superviseFrom" ref="superviseFrom"> <el-form :model="superviseFrom" ref="superviseFrom">
<el-form-item label="催办说明" prop="content"> <el-form-item label="催办说明" prop="content">
@ -596,16 +596,17 @@ export default {
async doSuperviseEvent() { async doSuperviseEvent() {
const url = "/governance/icEventOld/doSuperviseEvent"; const url = "/governance/icEventOld/doSuperviseEvent";
if (this.multipleSelection.length == 0) { if (this.multipleSelection.length == 0) {
this.$message.warning('请选择督办催办的事件') this.$message.warning('请选择催办的事件')
return return
} }
let params = { let params = {
icEventIdList: this.multipleSelection, icEventIdList: this.multipleSelection,
content: this.superviseFrom.content, content: this.superviseFrom.content,
operationType:21 // 21:
}; };
const { data, code, msg } = await requestPost(url, params); const { data, code, msg } = await requestPost(url, params);
if (code === 0) { if (code === 0) {
this.$message.success("督办催办成功"); this.$message.success("催办成功");
this.getTableData(); this.getTableData();
} else { } else {
this.$message.error(msg); this.$message.error(msg);

1004
src/views/modules/shequzhili/eventOld/eventOverPeriodList.vue

File diff suppressed because it is too large
Loading…
Cancel
Save