33 lines
743 B
TypeScript
33 lines
743 B
TypeScript
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;
|
|
}
|