修改页面弹窗全屏

This commit is contained in:
2026-02-22 14:12:33 +08:00
parent 528e6665bb
commit 535d843036
3 changed files with 695 additions and 348 deletions

View File

@@ -11,8 +11,14 @@ const { adminPath } = useGlobSetting();
export interface BizNotes extends BasicModel<BizNotes> {
createTime?: string; // 创建时间
title: string;
content: string; // 便签内容
priority: string;
ustatus: string; // 便签状态
startTime: string;
endTime: string;
type: string;
deadline?: string;
updateTime: string; // 更新时间
createUser?: string; // 创建用户
}