|
@ -174,7 +174,7 @@ |
|
|
<el-dialog title="催办" :visible.sync="dialogVisible" width="650px" top="5vh" class="dialog-h" :before-close="handleClose"> |
|
|
<el-dialog title="催办" :visible.sync="dialogVisible" width="650px" top="5vh" class="dialog-h" :before-close="handleClose"> |
|
|
|
|
|
|
|
|
<Urging ref="ref_form" v-if="dialogVisible" @dialogCancle="addFormCancle" |
|
|
<Urging ref="ref_form" v-if="dialogVisible" @dialogCancle="addFormCancle" |
|
|
@dialogOk="addFormOk"></Urging> |
|
|
@dialogOk="addFormOk" :eventDetailData="eventDetailData"></Urging> |
|
|
<span slot="footer" class="dialog-footer"> |
|
|
<span slot="footer" class="dialog-footer"> |
|
|
<el-button @click="dialogVisible = false">取 消</el-button> |
|
|
<el-button @click="dialogVisible = false">取 消</el-button> |
|
|
<el-button type="primary" @click="dialogVisible = false">确 定</el-button> |
|
|
<el-button type="primary" @click="dialogVisible = false">确 定</el-button> |
|
@ -465,9 +465,7 @@ export default { |
|
|
async handleAdd() { |
|
|
async handleAdd() { |
|
|
this.pageType = "add"; |
|
|
this.pageType = "add"; |
|
|
}, |
|
|
}, |
|
|
|
|
|
async getDetail(row){ |
|
|
async handleWatch(row) { |
|
|
|
|
|
console.log("row",row); |
|
|
|
|
|
this.eventId = row.icEventId; |
|
|
this.eventId = row.icEventId; |
|
|
const url = "/governance/icEvent/detail"; |
|
|
const url = "/governance/icEvent/detail"; |
|
|
const { data, code, msg } = await requestPost(url, { |
|
|
const { data, code, msg } = await requestPost(url, { |
|
@ -475,16 +473,18 @@ export default { |
|
|
}); |
|
|
}); |
|
|
if (code === 0) { |
|
|
if (code === 0) { |
|
|
this.eventDetailData = { ...data }; |
|
|
this.eventDetailData = { ...data }; |
|
|
this.pageType = "info"; |
|
|
|
|
|
} else { |
|
|
} else { |
|
|
this.$message.error(msg); |
|
|
this.$message.error(msg); |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
|
|
|
async handleWatch(row) { |
|
|
|
|
|
await this.getDetail(row) |
|
|
|
|
|
this.pageType = "info"; |
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
async handleDispose(row) { |
|
|
async handleDispose(row) { |
|
|
console.log(row,"row"); |
|
|
await this.getDetail(row) |
|
|
this.dialogVisible=true |
|
|
this.dialogVisible=true; |
|
|
|
|
|
|
|
|
}, |
|
|
}, |
|
|
//下载模版 |
|
|
//下载模版 |
|
|
async handleExportModule() { |
|
|
async handleExportModule() { |
|
|