Commit 38e28c10 authored by 前端-许佳敏's avatar 前端-许佳敏

调试global

parent a2b31778
......@@ -27,3 +27,5 @@
/src/services/index.ts
.vscode
config/base.config.json
src/global/config/global.d.ts
\ No newline at end of file
......@@ -29,7 +29,7 @@ const whiteLists = [
'/shop',
'/purchaseOnline',
'/pointsMall',
'/memberCenter',
// '/memberCenter',
'/memberCenter/noAuth',
'/commodity',
'/shops',
......
export interface MemberType {
id: number;
typeName: string;
}
export interface BusinessType {
id: number;
typeName: string;
}
export interface UseType {
memberType: MemberType[];
businessType: BusinessType[];
}
export interface UserRegister {
useType: UseType;
}
export interface ShopInfo {
id: number;
name: string;
type: number;
environment: number;
logoUrl: string;
describe: string;
state: number;
url: string;
}
export interface Web {
shopInfo: ShopInfo[];
}
export interface PayConfig {
paymemberConfig?: any;
}
export interface CountryList {
name: string;
key: string;
icon: string;
}
export interface Global {
siteId: number;
siteUrl: string;
logo: string;
countryList: CountryList[];
}
export interface RootObject {
userRegister: UserRegister;
web: Web;
payConfig: PayConfig;
global: Global;
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment