refactor: 优化编辑器组件和数据权限显示逻辑

重构 WangEditor 组件,简化双向绑定逻辑并添加防抖处理
移除角色管理页面中冗余的数据权限标签处理函数
This commit is contained in:
Ray.Hao
2026-02-14 10:57:25 +08:00
parent 47fa467434
commit 81c98de9cc
3 changed files with 32 additions and 52 deletions

View File

@@ -31,7 +31,7 @@ export function useNotice() {
...params,
};
const page = await NoticeAPI.getMyNoticePage(query);
list.value = page.data || [];
list.value = page.list || [];
}
async function read(id: string) {