初始化

This commit is contained in:
2025-01-27 23:24:42 +08:00
parent c8a96306c4
commit 6ae8339299
421 changed files with 35687 additions and 0 deletions

32
types/global.d.ts vendored Normal file
View File

@@ -0,0 +1,32 @@
export interface Config {
tel1?: string;
icpNo?: string;
tel2?: string;
copyright?: string;
qrcode?: string;
domain?: string;
siteName?: string;
siteLogo?: string;
siteLogoStyles?: string;
subpageBanner?: string;
bottomBg?: string;
elMenuMaxNumber?: number;
showSearchTools?: string;
showSearchIcon?: string;
showLoginButton?: string;
showAdminIcon?: string;
loginBgImg?: string;
yyyy_bg?: string;
wxQrcode?: string;
wxQrcodeText?: string;
copyrightForDemoData?: string;
MustLogin?: boolean;
}
export interface BreadcrumbItem {
parentName?: string;
parentPath?: string;
categoryName?: string;
categoryPath?: string;
title?: string;
}