update 优化 通知公告页面增加查看详情功能 支持预览已经编辑好的富文本内容

update 优化 消息盒子相关消息可直接跳转到详情页展示富文本内容
This commit is contained in:
疯狂的狮子Li
2026-03-26 18:06:00 +08:00
parent 1daa291bb6
commit b9e5220069
5 changed files with 123 additions and 9 deletions
+1 -4
View File
@@ -70,10 +70,7 @@ const onNewsClick = async (item: any) => {
currentNewsList.value[item].read = true;
const current = currentNewsList.value[item];
if (current?.path) {
await router.push({
path: current.path,
query: current.query || undefined
});
await router.push(current.path);
}
};
</script>