53 lines
1.3 KiB
TypeScript
53 lines
1.3 KiB
TypeScript
export interface Config {
|
|
address?: string;
|
|
address2?: string;
|
|
callPhone?: string;
|
|
copyright?: string;
|
|
email?: string;
|
|
fax?: string;
|
|
gaCode?: string;
|
|
gaIcon?: string;
|
|
gaNo?: string;
|
|
homeUrl?: string;
|
|
pageLeftInfoUrl?: string;
|
|
icpNo?: string;
|
|
phone?: string;
|
|
productParentId?: string;
|
|
qqCode?: string;
|
|
searchCategoryId?: string;
|
|
showAdminIcon?: string;
|
|
siteLogo?: string;
|
|
siteName?: string;
|
|
siteNameAlt?: string;
|
|
siteNameSeo?: string;
|
|
tel?: string;
|
|
topWelcomeInfo?: string;
|
|
wxMpQrcode?: string;
|
|
wxQrcode?: string;
|
|
wxQrcode2?: string;
|
|
IndexAboutInfo?: string;
|
|
IndexLayoutInfo?: string;
|
|
MobileIndexInfo?: string;
|
|
MobileIndexInfoImage?: string;
|
|
MobileIndexInfoTopImage?: string;
|
|
MobileIndexInfoHZGYImage?: string;
|
|
MobileIndexInfoLogoList?: string;
|
|
MobileIndexCode?: string;
|
|
MobileIndexBottomBanner?: string;
|
|
IndexAboutNum?: string;
|
|
showTopBar?: string;
|
|
showLoginButton?: string;
|
|
FILE_SERVER?: string;
|
|
addOrderUrl?: string;
|
|
siteBottomLogo?: string;
|
|
siteLogoBg?: string;
|
|
}
|
|
|
|
export interface BreadcrumbItem {
|
|
parentName?: string;
|
|
parentPath?: string;
|
|
categoryName?: string;
|
|
categoryPath?: string;
|
|
title?: string;
|
|
}
|