48 lines
1.1 KiB
TypeScript
48 lines
1.1 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;
|
|
}
|
|
|
|
export interface BreadcrumbItem {
|
|
parentName?: string;
|
|
parentPath?: string;
|
|
categoryName?: string;
|
|
categoryPath?: string;
|
|
title?: string;
|
|
}
|