You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
721 B
31 lines
721 B
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;
|
|
wxQrcode?: string;
|
|
wxQrcodeText?: string;
|
|
copyrightForDemoData?: string;
|
|
MustLogin?: boolean;
|
|
}
|
|
|
|
export interface BreadcrumbItem {
|
|
parentName?: string;
|
|
parentPath?: string;
|
|
categoryName?: string;
|
|
categoryPath?: string;
|
|
title?: string;
|
|
}
|