修复已知问题

This commit is contained in:
2025-08-07 20:36:07 +08:00
parent bf99796d8c
commit 5dd0e97e3c
24 changed files with 519 additions and 69 deletions

View File

@@ -1,6 +1,7 @@
import type {PageParam} from '@/api/index';
import type {CmsDesign} from "@/api/cms/cmsDesign/model";
import type {CmsModel} from "@/api/cms/cmsModel/model";
import {CmsArticle} from "@/api/cms/cmsArticle/model";
/**
* 网站导航记录表
@@ -100,6 +101,8 @@ export interface CmsNavigation {
label?: string;
// 值
value?: number;
// 文章列表
articles?: CmsArticle[];
}
/**