|
|
@ -1,9 +1,9 @@ |
|
|
|
<template> |
|
|
|
<Dialog title="事件详情" @close="handleClose"> |
|
|
|
<template> |
|
|
|
<div class="eventWrap" v-loading="loading" element-loading-text="加载中" element-loading-spinner="el-icon-loading" element-loading-background="rgba(0, 21, 64, 0.3)"> |
|
|
|
<div class="eventWrap"> |
|
|
|
<el-row :gutter="32"> |
|
|
|
<el-col :span="13" style="padding-left: 40px"> |
|
|
|
<el-col :span="13" style="padding-left: 40px" v-loading="loading" element-loading-text="加载中" element-loading-spinner="el-icon-loading" element-loading-background="rgba(0, 21, 64, 0.3)"> |
|
|
|
<div class="leftEvent"> |
|
|
|
<div class="eventDetails">事件详情</div> |
|
|
|
<div class="eventItem"> |
|
|
@ -54,7 +54,7 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</el-col> |
|
|
|
<el-col :span="11"> |
|
|
|
<el-col :span="11" v-loading="loading1" element-loading-text="加载中" element-loading-spinner="el-icon-loading" element-loading-background="rgba(0, 21, 64, 0.3)"> |
|
|
|
<div class="rightEvent m-info"> |
|
|
|
<div class="eventDetails">办理进展</div> |
|
|
|
<!-- <el-timeline class="timeline" :reverse="true"> |
|
|
@ -157,6 +157,7 @@ export default { |
|
|
|
return { |
|
|
|
item: {}, |
|
|
|
loading: false, |
|
|
|
loading1: false, |
|
|
|
activities: [], |
|
|
|
}; |
|
|
|
}, |
|
|
@ -195,6 +196,7 @@ export default { |
|
|
|
const { code, data, msg } = res.data; |
|
|
|
if (code === 0) { |
|
|
|
this.item = data; |
|
|
|
this.loading = false; |
|
|
|
} else { |
|
|
|
this.loading = false; |
|
|
|
this.$message.error(msg); |
|
|
@ -207,16 +209,13 @@ export default { |
|
|
|
const { code, data, msg } = res.data; |
|
|
|
if (code === 0) { |
|
|
|
this.activities = data; |
|
|
|
this.loading = false; |
|
|
|
this.loading1 = false; |
|
|
|
} else { |
|
|
|
this.loading = false; |
|
|
|
this.loading1 = false; |
|
|
|
this.$message.error(msg); |
|
|
|
} |
|
|
|
}); |
|
|
|
}, |
|
|
|
|
|
|
|
// /governance/icEvent/detail |
|
|
|
// /governance/icEvent/process |
|
|
|
}, |
|
|
|
}; |
|
|
|
</script> |
|
|
|