| | |
| | | |
| | | <!-- 详情 --> |
| | | <el-dialog v-model="detailDialog.visible" title="新闻详情" width="880px" append-to-body destroy-on-close> |
| | | <NewsDetailPanel :row="detailNewsRow" @like="onDetailLike" @comment="onDetailComment" /> |
| | | <NewsDetailPanel :row="detailNewsRow" /> |
| | | <el-divider content-position="left">审批信息</el-divider> |
| | | <ApproveDetailPanel :row="detailRow" /> |
| | | <template #footer> |
| | |
| | | pagination(obj, searchForm); |
| | | } |
| | | |
| | | function onDetailLike() { |
| | | /* 详情互动仍走行内数据,刷新列表后更新 */ |
| | | } |
| | | |
| | | function onDetailComment() { |
| | | ElMessage.info("评论已记录(演示)"); |
| | | } |
| | | |
| | | onMounted(async () => { |
| | | try { |
| | | localStorage.removeItem("oa_enterprise_news_v1"); |
| | | } catch { |
| | | /* 清除历史本地演示缓存 */ |
| | | } |
| | | loadFlowUsers(); |
| | | await initModuleList(searchForm); |
| | | }); |