@conecli/cone-render 0.10.1-shop-beta.11 → 0.10.1-shop-beta.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (78) hide show
  1. package/README.md +1 -1
  2. package/dist/common/const.ts +1 -1
  3. package/dist/common/index.dynamic.ts +1 -0
  4. package/dist/common/index.h5.ts +1 -1
  5. package/dist/common/index.jd.ts +1 -1
  6. package/dist/common/index.ts +1 -1
  7. package/dist/common/index.weapp.ts +1 -1
  8. package/dist/common/jssdk.ts +1 -1
  9. package/dist/common/token/index.h5.ts +1 -1
  10. package/dist/common/wxappApi.ts +1 -1
  11. package/dist/components/base/CommonFloorHead/index.tsx +1 -1
  12. package/dist/components/base/CountDown/index.tsx +1 -1
  13. package/dist/components/base/CustomScrollView/index.tsx +1 -1
  14. package/dist/components/base/Dialog/index.dynamic.module.scss +126 -0
  15. package/dist/components/base/Dialog/index.dynamic.tsx +1 -0
  16. package/dist/components/base/DynamicTest/index.dynamic.module.scss +15 -0
  17. package/dist/components/base/DynamicTest/index.module.scss +16 -0
  18. package/dist/components/base/DynamicTest/index.tsx +1 -0
  19. package/dist/components/base/ExposureSmart/index.tsx +1 -1
  20. package/dist/components/base/ItemViewExposureSmart/index.tsx +1 -1
  21. package/dist/components/base/JdLoading/index.module.scss +2 -0
  22. package/dist/components/base/JdLoading/index.tsx +1 -1
  23. package/dist/components/base/LazyLoadImage/index.tsx +1 -1
  24. package/dist/components/base/NetworkDataError/const.ts +1 -1
  25. package/dist/components/base/NetworkDataError/index.module.scss +116 -70
  26. package/dist/components/base/NetworkDataError/index.tsx +1 -1
  27. package/dist/components/base/Price/Base/index.dynamic.module.scss +63 -0
  28. package/dist/components/base/Price/Base/index.dynamic.tsx +1 -0
  29. package/dist/components/base/Price/Base/index.module.scss +6 -0
  30. package/dist/components/base/Price/Base/index.tsx +1 -1
  31. package/dist/components/base/Price/Double/index.dynamic.module.scss +172 -0
  32. package/dist/components/base/Price/Double/index.dynamic.tsx +1 -0
  33. package/dist/components/base/Price/Double/index.module.scss +6 -0
  34. package/dist/components/base/Price/Double/index.tsx +1 -1
  35. package/dist/components/debug/DebugLayout/index.module.scss +2 -2
  36. package/dist/config/env.ts +1 -1
  37. package/dist/interface/common.ts +1 -1
  38. package/dist/interface/component.ts +1 -1
  39. package/dist/interface/jumpEventReport.ts +1 -1
  40. package/dist/jumpEventReport/const.ts +1 -1
  41. package/dist/jumpEventReport/index.dynamic.ts +1 -0
  42. package/dist/jumpEventReport/index.h5.ts +1 -1
  43. package/dist/jumpEventReport/jdJumpJdApp.ts +1 -1
  44. package/dist/jumpEventReport/jumpUrlConfig/base.ts +1 -1
  45. package/dist/jumpEventReport/logEventConfig.ts +1 -1
  46. package/dist/jumpEventReport/web.base.ts +1 -1
  47. package/dist/jumpEventReport/web.jd.ts +1 -1
  48. package/dist/language/zh_CN.json +162 -0
  49. package/dist/open/api/index.ts +1 -1
  50. package/dist/open/api/shopMember.dynamic.ts +1 -0
  51. package/dist/open/api/shopMember.ts +1 -1
  52. package/dist/open/components/index.dynamic.ts +1 -0
  53. package/dist/open/components/index.ts +1 -1
  54. package/dist/sass/app.dynamic.scss +306 -0
  55. package/dist/service/fetchGateway.h5.ts +1 -0
  56. package/dist/service/fetchGateway.ts +1 -1
  57. package/dist/service/fetchGateway.weapp.ts +1 -1
  58. package/dist/service/fetchJsonp.h5.ts +1 -0
  59. package/dist/service/fetchJsonp.ts +1 -1
  60. package/dist/service/http/colorSign.dynamic.ts +1 -0
  61. package/dist/service/http/http.ts +1 -1
  62. package/dist/service/requestServer.h5.ts +1 -1
  63. package/dist/service/requestServer.ts +1 -1
  64. package/dist/service/requestServer.weapp.ts +1 -1
  65. package/dist/utils/connectNativeJsBridge.dynamic.ts +1 -0
  66. package/dist/utils/connectNativeJsBridge.ts +1 -1
  67. package/dist/utils/h5Utils.ts +1 -1
  68. package/dist/utils/index.h5.ts +1 -1
  69. package/dist/utils/index.ts +1 -1
  70. package/dist/utils/index.weapp.ts +1 -1
  71. package/dist/utils/intersectionObserver.ts +1 -1
  72. package/dist/utils/jumpExtMapUtil.ts +1 -0
  73. package/dist/utils/log.ts +1 -0
  74. package/dist/utils/utils.ts +1 -1
  75. package/dist/wxapp/common/address_api/address_api_v2.js +1 -0
  76. package/dist/wxapp/common/user_info.js +1 -1
  77. package/package.json +51 -31
  78. /package/dist/utils/{jumpExtMapUtil.js → jumpExtMapUtil.h5.ts} +0 -0
@@ -6,7 +6,7 @@
6
6
  left: 0;
7
7
  right: 0;
8
8
  bottom: 0;
9
- z-index: 50;
9
+ z-index: 9999;
10
10
 
11
11
  .debug-layout {
12
12
  position: absolute;
@@ -58,7 +58,7 @@
58
58
  .d-info {
59
59
  position: relative;
60
60
  cursor: pointer;
61
- z-index: 3;
61
+ z-index: 9999;
62
62
  margin: 3PX 3PX;
63
63
  width: 22PX;
64
64
  height: 22PX;
@@ -1 +1 @@
1
- const buildCopyType = process.env.BUILD_COPY_TYPE || 'none'
2
1
  isPublishToWxapp || (!isBetaServer && !isDev)
3
2
  ? 'https:'
4
3
  : isH5
5
4
  ? ''
6
5
  : 'http:'
6
+ const buildCopyType = process.env.BUILD_COPY_TYPE || 'none'
7
7
  isPublishToWxapp || (!isBetaServer && !isDev)
8
8
  ? 'https:'
9
9
  : isH5
10
10
  ? ''
11
11
  : 'http:'
@@ -1 +1 @@
1
- import Taro from '@tarojs/taro'
2
1
  abTestLabels: {
3
2
  [key: string]: any
4
3
  }
5
4
  [key: string]: number
6
5
  }
7
6
  isJingxiMiniViewState?: boolean
8
7
  floorVideInfo: object
9
8
  isFloorInfoDataByPage?: boolean
10
9
  originQueryInfo: {
11
10
  openAppData?: {
12
11
  [key: string]: any
13
12
  }
13
+ import Taro from '@tarojs/taro';
14
14
  export interface BaseConfigInfo {
15
15
  abTestLabels: {
16
16
  [key: string]: any;
17
17
  };
18
18
  nonSellableSkuids: {
19
19
  [key: string]: number;
20
20
  };
21
21
  loginState: boolean;
22
22
  cookiesStr: string;
23
23
  isImmersive: boolean;
24
24
  isJingGouMiniViewState?: boolean;
25
25
  isJingxiMiniViewState?: boolean;
26
26
  shopInfo: {
27
27
  shopId?: string | number;
28
28
  venderId?: string | number;
29
29
  };
30
30
  pageInfo: {
31
31
  appId?: string;
32
32
  shopId?: string | number;
33
33
  venderId?: string | number;
34
34
  logoSquare?: string;
35
35
  logoUrl?: string;
36
36
  address?: string | null;
37
37
  addressCommaStr?: string | null;
38
38
  un_area?: string | null;
39
39
  userLbsAddress?: string;
40
40
  shopName?: string;
41
41
  jumpTab?: string;
42
42
  sourceType?: string;
43
43
  sourceValue?: string;
44
44
  moduleId?: string;
45
45
  entrance?: string;
46
46
  EA_PTAG?: string;
47
47
  ptag?: string;
48
48
  originReferer?: string;
49
49
  recBroker?: string;
50
50
  rcmdRelateSkuId?: string;
51
51
  tabSpm?: string;
52
52
  skuId?: string;
53
53
  keywords?: string;
54
54
  sceneId?: string;
55
55
  miniScrollInfo?: {
56
56
  scrollLeft: number;
57
57
  scrollTop: number;
58
58
  scrollHeight: number;
59
59
  scrollWidth: number;
60
60
  deltaX: number;
61
61
  deltaY: number;
62
62
  };
63
63
  tabsLoadAllDataInfo: {
64
64
  [key: string]: boolean;
65
65
  };
66
66
  wxBusinessType: string;
67
67
  vapptype: string;
68
68
  pageType: string;
69
69
  dataType: string;
70
70
  floorExposureInfo: object;
71
71
  floorVideInfo: object;
72
72
  isExposureState?: boolean;
73
73
  appLazyContainerList?: string[];
74
74
  appLazyFinishContainerList?: [];
75
75
  shopStickyAndToTopInfo?: {
76
76
  toTop: boolean;
77
77
  sticky: boolean;
78
78
  };
79
79
  isVipShop?: boolean;
80
80
  updateShopInfosState?: boolean;
81
81
  pageScrollTop: number;
82
82
  shopNavBarHeight: number;
83
83
  isFloorInfoDataByPage?: boolean;
84
84
  };
85
85
  lazyContainer?: {
86
86
  wellChosen: {
87
87
  appLazyContainerList?: string[];
88
88
  appLazyFinishContainerList?: string[];
89
89
  };
90
90
  };
91
91
  queryLogInfo?: {
92
92
  sourceType: string;
93
93
  sourceValue: string;
94
94
  moduleId?: string;
95
95
  entrance?: string;
96
96
  };
97
97
  queryInfo: {
98
98
  shopId?: string | number;
99
99
  venderId?: string | number;
100
100
  shopName?: string;
101
101
  [key: string]: any;
102
102
  };
103
103
  originQueryInfo: {
104
104
  shopId?: string | number;
105
105
  venderId?: string | number;
106
106
  shopName?: string;
107
107
  [key: string]: any;
108
108
  };
109
109
  sysInfo: {
110
110
  [key: string]: any;
111
111
  };
112
112
  userInfo: {
113
113
  pin?: string;
114
114
  encodePin?: string;
115
115
  ptkey?: string;
116
116
  wqCookie?: string | null;
117
117
  wxappVersion?: string;
118
118
  wqAuthToken?: string;
119
119
  wqVisitkey?: string;
120
120
  };
121
121
  openAppData?: {
122
122
  [key: string]: any;
123
123
  };
124
124
  }
125
125
 
126
126
  export interface OneKeyJoinMemberParamInfo {
127
127
  title?: string;
128
128
  shopId?: string | number;
129
129
  venderId?: string | number;
130
130
  businessSource?: keyof OneKeyJoinMemberBusinessSource;
131
131
  }
132
132
  export interface OneKeyJoinMemberBusinessSource {
133
133
  isv;
134
134
  lv0;
135
135
  }
136
136
  export type lazyContainer = {
137
137
  [key in 'string']?: {
138
138
  appLazyFinishContainerList: any[];
139
139
  appLazyContainerList: any[];
140
140
  };
141
141
  };
142
142
  export type renderedIsvComponents = {
143
143
  [key in 'string']?: any;
144
144
  };
145
145
  export type MiniApplogUtil = any;
146
146
  export type MiniAppLog = any;
147
147
  export type WxAppLogin = any;
148
148
  export type WxAppUserInfo = any;
149
149
  export type wxAppReportManage = any;
150
150
  export type WxAppReportGDT = any;
151
151
  export type WxAppNavigator = any;
152
152
  export type wxAppParamsSign = any;
153
153
  export type wxAppFingerReportInstance = any;
154
154
  export type wxAppSubsGuider = any;
155
155
  export type wxAppAddressV2api = any;
156
156
  [key: string]: any;
@@ -1 +1 @@
1
- import React from 'react'
2
1
  subMessage?: string
3
2
  viewMaxHeight?: string
4
3
  noPosition?: boolean
5
4
  floorLoadWay?: number
6
5
  floorKind?: number
7
6
  shopId?: string
8
7
  moduleDesignerType?: string
9
8
  showCommonFloorHead?: boolean
10
9
  borderRadius: number
11
10
  borderTopLeftRadius?: number
12
11
  borderTopRightRadius?: number
13
12
  borderBottomLeftRadius?: number
14
13
  borderBottomRightRadius?: number
15
14
  marginTop?: number
16
15
  marginBottom?: number
17
16
  marginLeft?: number
18
17
  marginRight?: number
19
18
  paddingTop?: number
20
19
  paddingBottom?: number
21
20
  paddingLeft?: number
22
21
  paddingRight?: number
23
22
  containerId: string
24
23
  background?: string
25
24
  containerPosition?: string
26
25
  key?: string
27
26
  floors: floorItemData[]
28
27
  includeUids: string[]
29
28
  typeCn: string
30
29
  typeCode?: string
31
30
  addLuxuryStyle?: boolean
32
31
  addLuxuryBackupStyle?: boolean
33
32
  renderExtendComponent?: Function
34
33
  insertContainerStartComponent?: Function
35
34
  floorExtendData?: any
36
35
  }
37
36
  isRealTimeRender: boolean
38
37
  forceRenderTime: number
39
38
  luxuryFixed?: boolean
40
39
  customErrorIsvFloorModule?: React.ReactElement | undefined
41
40
  containerIndex?: number
42
41
  containerData?: any
43
42
  shopTotalInfo?: any
44
43
  selectContainerFn?: Function
45
44
  selectContainerId?: string
46
45
  placeHolderPreContainerId?: string
47
46
  children?: any
48
47
  luxuryFixed?: boolean
49
48
  style?: {
50
49
  [key: string]: any
51
50
  };
52
51
  layoutLeftRightMargin?: number
53
52
  }
54
53
  isShowPlaceHolder?: boolean
55
54
  showDayToSecondState?: boolean
56
55
  onFormSubmit?: Function
57
56
  onFormReset?: Function
58
57
  isFormDialog?: boolean
59
58
  forbiddenBgScrollState?: boolean
60
59
  evenList: any[]
61
60
  oddList: any[]
61
+ import React from 'react'
62
62
  subMessage?: string
63
63
  netWorkStyleType?: string
64
64
  viewMaxHeight?: string
65
65
  noPosition?: boolean
66
66
  floorLoadWay?: number
67
67
  floorKind?: number
68
68
  shopId?: string
69
69
  moduleDesignerType?: string
70
70
  showCommonFloorHead?: boolean
71
71
  borderRadius: number
72
72
  borderTopLeftRadius?: number
73
73
  borderTopRightRadius?: number
74
74
  borderBottomLeftRadius?: number
75
75
  borderBottomRightRadius?: number
76
76
  marginTop?: number
77
77
  marginBottom?: number
78
78
  marginLeft?: number
79
79
  marginRight?: number
80
80
  paddingTop?: number
81
81
  paddingBottom?: number
82
82
  paddingLeft?: number
83
83
  paddingRight?: number
84
84
  containerId: string
85
85
  background?: string
86
86
  containerPosition?: string
87
87
  key?: string
88
88
  floors: floorItemData[]
89
89
  includeUids: string[]
90
90
  typeCn: string
91
91
  typeCode?: string
92
92
  addLuxuryStyle?: boolean
93
93
  addLuxuryBackupStyle?: boolean
94
94
  renderExtendComponent?: functionType
95
95
  insertContainerStartComponent?: functionType
96
96
  floorExtendData?: any
97
97
  }
98
98
  isRealTimeRender: boolean
99
99
  forceRenderTime: number
100
100
  luxuryFixed?: boolean
101
101
  customErrorIsvFloorModule?: React.ReactElement | undefined
102
102
  containerIndex?: number
103
103
  containerData?: any
104
104
  shopTotalInfo?: any
105
105
  selectContainerFn?: functionType
106
106
  selectContainerId?: string
107
107
  placeHolderPreContainerId?: string
108
108
  children?: any
109
109
  luxuryFixed?: boolean
110
110
  style?: {
111
111
  [key: string]: any
112
112
  };
113
113
  layoutLeftRightMargin?: number
114
114
  }
115
115
  isShowPlaceHolder?: boolean
116
116
 
117
117
  useFontV2?: boolean
118
118
  useFontV2Bold?: boolean
119
119
  onlyShowDaySpaceTextState?: boolean
120
120
  showDayToSecondState?: boolean
121
121
  useFontV2: boolean
122
122
  useFontV2Bold: boolean
123
123
  onFormSubmit?: functionType
124
124
  onFormReset?: functionType
125
125
  isFormDialog?: boolean
126
126
  forbiddenBgScrollState?: boolean
127
127
  evenList: any[]
128
128
  oddList: any[]
@@ -1 +1 @@
1
- export declare namespace JumpEventReportInterFace {
2
1
  export interface ShopIdsInfo {
3
2
  shopId?: number | string;
4
3
  venderId?: number | string;
5
4
  logEventInfo?: object;
6
5
  type?: string;
7
6
  }
8
7
  export interface RouterInfo {
9
8
  params: any;
10
9
  pageParamStr?: string;
11
10
  [key: string]: any;
12
11
  }
13
12
  export interface JumpMiniPath {
14
13
  shop: string;
15
14
  shopx: string;
16
15
  detail: string;
17
16
  searchCoupon: string;
18
17
  h5: string;
19
18
  jingGouHome: string;
20
19
  shopFans: string;
21
20
  shopLight: string;
22
21
  couponSearch: string;
23
22
  shopSearch: string;
24
23
  jxCouponSearch: string;
25
24
  jxDetail: string;
26
25
  jdLive: string;
27
26
  }
28
27
  export interface jumpWebUrl {
29
28
  mshop: string;
30
29
  pages: string;
31
30
  pcCoupon: string;
32
31
  couponSearch: string;
33
32
  jxCouponSearch: string;
34
33
  pcCouponSearch: string;
35
34
  shopSecondActivity: string;
36
35
  shopLight: string;
37
36
  detail: string;
38
37
  jxDetail: string;
39
38
  tjDetail: string;
40
39
  pcDetail: string;
41
40
  mobileHome: string;
42
41
  rank: string;
43
42
  wqShopMember: string;
44
43
  wqShopDetail: string;
45
44
  wqShopSearch: string;
46
45
  myCouponList: string;
47
46
  myRedPacketList: string;
48
47
  memberHome: string;
49
48
  memberCard: string;
50
49
  memberPoints: string;
51
50
  memberBenefit: string;
52
51
  memberScores: string;
53
52
  memberScoreRule: string;
54
53
  memberProduct: string;
55
54
  shopMember: string;
56
55
  shopMemberPointDetail: string;
57
56
  shopMemberBenefit: string;
58
57
  shopMemberRule: string;
59
58
  shopMemberCloseAccount: string;
60
59
  shopMemberPointExchange: string;
61
60
  shopMemberBonusPurchase: string;
62
61
  shopMemberGood: string;
63
62
  beanDetail: string;
64
63
  totalPromotion: string;
65
64
  mLive: string;
66
65
  shopHome: string;
67
66
  shopIntroduce: string;
68
67
  shopSearch: string;
69
68
  shopLottery: string;
70
69
  shopCoupon: string;
71
70
  shopWares: string;
72
71
  shopFastShopping: string;
73
72
  shopSpeciSeckill: string;
74
73
  shopVideos: string;
75
74
  shopMoreGoods: string;
76
75
  shopUseShareOrderUgcContent: string;
77
76
  dongDongChat: string;
78
77
  samCenter: string;
79
78
  samCard: string;
80
79
  shopH5MemberCardAPP: string;
81
80
  shopH5MemberCardM: string;
82
81
  sageAuthorHome: string;
83
82
  }
84
83
  export interface EventReportConfig {
85
84
  routerInfo: RouterInfo;
86
85
  nativeEvent: any;
87
86
  }
88
87
  export interface OptEventLogParams {
89
88
  eventId?: string;
90
89
  eventParam?: string | object;
91
90
  pTag?: string;
92
91
  jsonParam?: {
93
92
  [key: string]: any;
94
93
  };
95
94
  skuId?: string | number;
96
95
  eventLevel?: string;
97
96
  exposureState?: boolean;
98
97
  otherParams?: object;
99
98
  }
100
99
 
101
100
  export interface JumpH5ReportConfig {
102
101
  shopId?: number | string;
103
102
  venderId?: number | string;
104
103
  sourceValue?: string;
105
104
  sourceType?: string;
106
105
  }
107
106
  export interface JumpEventReportInit extends EventReportConfig {
108
107
  getConfig(opt): EventReportConfig;
109
108
  updateInfo(routerInfo, logPname): void;
110
109
  }
111
110
  export interface CouponUrlParams {
112
111
  batchId: number;
113
112
  bindType: number;
114
113
  startTime?: number;
115
114
  endTime?: number;
116
115
  quangoufrom?: number;
117
116
  sceneId?: number;
118
117
  }
119
118
  export interface JdMiniJumpParams {
120
119
  param: string | object;
121
120
  sourceValue?: string;
122
121
  sourceType?: string;
123
122
  des?: any;
124
123
  logEventInfo?: object;
125
124
  }
126
125
  export interface LinkMiniParams {
127
126
  param?: {
128
127
  pageType?: string;
129
128
  };
130
129
  appId?: string | number;
131
130
  path?: string;
132
131
  }
133
132
  export interface JdJumpWxappReportConfig {
134
133
  wxApiVersion: string;
135
134
  wxApiUrl: string;
136
135
  wqReportUrl: string;
137
136
  }
137
+ export declare namespace JumpEventReportInterFace {
138
138
  export interface ShopIdsInfo {
139
139
  shopId?: number | string;
140
140
  venderId?: number | string;
141
141
  logEventInfo?: object;
142
142
  type?: string;
143
143
  }
144
144
  export interface RouterInfo {
145
145
  params: any;
146
146
  pageParamStr?: string;
147
147
  [key: string]: any;
148
148
  }
149
149
  export interface JumpMiniPath {
150
150
  shop: string;
151
151
  shopx: string;
152
152
  detail: string;
153
153
  searchCoupon: string;
154
154
  h5: string;
155
155
  jingGouHome: string;
156
156
  shopFans: string;
157
157
  shopLight: string;
158
158
  couponSearch: string;
159
159
  shopSearch: string;
160
160
  jxCouponSearch: string;
161
161
  jxDetail: string;
162
162
  jdLive: string;
163
163
  }
164
164
  export interface jumpWebUrl {
165
165
  mshop: string;
166
166
  pages: string;
167
167
  pcCoupon: string;
168
168
  couponSearch: string;
169
169
  jxCouponSearch: string;
170
170
  pcCouponSearch: string;
171
171
  shopSecondActivity: string;
172
172
  shopLight: string;
173
173
  detail: string;
174
174
  jxDetail: string;
175
175
  tjDetail: string;
176
176
  pcDetail: string;
177
177
  mobileHome: string;
178
178
  rank: string;
179
179
  wqShopMember: string;
180
180
  wqShopDetail: string;
181
181
  wqShopSearch: string;
182
182
  myCouponList: string;
183
183
  myRedPacketList: string;
184
184
  memberHome: string;
185
185
  memberCard: string;
186
186
  memberPoints: string;
187
187
  memberBenefit: string;
188
188
  memberScores: string;
189
189
  memberScoreRule: string;
190
190
  memberProduct: string;
191
191
  shopMember: string;
192
192
  shopMemberPointDetail: string;
193
193
  shopMemberBenefit: string;
194
194
  shopMemberRule: string;
195
195
  shopMemberCloseAccount: string;
196
196
  shopMemberPointExchange: string;
197
197
  shopMemberBonusPurchase: string;
198
198
  shopMemberGood: string;
199
199
  beanDetail: string;
200
200
  totalPromotion: string;
201
201
  mLive: string;
202
202
  shopHome: string;
203
203
  shopIntroduce: string;
204
204
  shopSearch: string;
205
205
  shopLottery: string;
206
206
  shopCoupon: string;
207
207
  shopWares: string;
208
208
  shopFastShopping: string;
209
209
  shopSpeciSeckill: string;
210
210
  shopVideos: string;
211
211
  shopMoreGoods: string;
212
212
  shopUseShareOrderUgcContent: string;
213
213
  dongDongChat: string;
214
214
  samCenter: string;
215
215
  samCard: string;
216
216
  shopH5MemberCardAPP: string;
217
217
  shopH5MemberCardM: string;
218
218
  sageAuthorHome: string;
219
219
  shopMemberInfoEdit: string;
220
220
  }
221
221
  export interface EventReportConfig {
222
222
  routerInfo: RouterInfo;
223
223
  nativeEvent: any;
224
224
  }
225
225
  export interface OptEventLogParams {
226
226
  eventId?: string;
227
227
  eventParam?: string | object;
228
228
  pTag?: string;
229
229
  jsonParam?: {
230
230
  [key: string]: any;
231
231
  };
232
232
  skuId?: string | number;
233
233
  eventLevel?: string;
234
234
  exposureState?: boolean;
235
235
  otherParams?: object;
236
236
  }
237
237
 
238
238
  export interface JumpH5ReportConfig {
239
239
  shopId?: number | string;
240
240
  venderId?: number | string;
241
241
  sourceValue?: string;
242
242
  sourceType?: string;
243
243
  }
244
244
  export interface JumpEventReportInit extends EventReportConfig {
245
245
  getConfig(opt): EventReportConfig;
246
246
  updateInfo(routerInfo, logPname): void;
247
247
  }
248
248
  export interface CouponUrlParams {
249
249
  batchId: number;
250
250
  bindType: number;
251
251
  startTime?: number;
252
252
  endTime?: number;
253
253
  quangoufrom?: number;
254
254
  sceneId?: number;
255
255
  }
256
256
  export interface JdMiniJumpParams {
257
257
  param: string | object;
258
258
  sourceValue?: string;
259
259
  sourceType?: string;
260
260
  des?: any;
261
261
  logEventInfo?: object;
262
262
  }
263
263
  export interface LinkMiniParams {
264
264
  param?: {
265
265
  pageType?: string;
266
266
  };
267
267
  appId?: string | number;
268
268
  path?: string;
269
269
  }
270
270
  export interface JdJumpWxappReportConfig {
271
271
  wxApiVersion: string;
272
272
  wxApiUrl: string;
273
273
  wqReportUrl: string;
274
274
  }
@@ -1 +1 @@
1
- import { isH5, isWxMinAndWxapp } from '../utils'
2
1
  ? 'Terminator_New_Mobile_Shop'
3
2
  : 'W_jdgwxcx_shop'
4
3
  CONFIG_TYPE_NO_LINK = 0,
5
4
  CONFIG_TYPE_SKU_LIST = 1,
6
5
  CONFIG_TYPE_COUPON_LIST = 2,
7
6
  CONFIG_TYPE_CATEGORY = 3,
8
7
  CONFIG_TYPE_JSHOP_MOBILE = 4,
9
8
  CONFIG_TYPE_JSHOP_PC = 5,
10
9
  CONFIG_TYPE_JSHOP_DETAIL = 6,
11
10
  CONFIG_TYPE_CUSTOM_LINK = 7,
12
11
  CONFIG_TYPE_MEMBER = 9,
13
12
  CONFIG_TYPE_SHOP_ACTIVITY = 10,
14
13
  CONFIG_TYPE_SHOP_HOME = 12,
15
14
  CONFIG_TYPE_ANCHOR_POINT = 13,
16
15
  CONFIG_TYPE_SHOPPING_GUIDE = 17,
17
16
  CONFIG_TYPE_MINI_PROGRAM = 18,
18
17
  CONFIG_TYPE_FINANCE_COUPON = 22,
19
18
  CONFIG_TYPE_CATEGORY_PAGE = 25,
20
19
  CONFIG_TYPE_SHOP_SEARCH = 31,
20
+ import { isH5, isWxMinAndWxapp } from '../utils'
21
21
  ? 'Terminator_New_Mobile_Shop'
22
22
  : 'W_jdgwxcx_shop'
23
23
  CONFIG_TYPE_NO_LINK = 0,
24
24
  CONFIG_TYPE_SKU_LIST = 1,
25
25
  CONFIG_TYPE_COUPON_LIST = 2,
26
26
  CONFIG_TYPE_CATEGORY = 3,
27
27
  CONFIG_TYPE_JSHOP_MOBILE = 4,
28
28
  CONFIG_TYPE_JSHOP_PC = 5,
29
29
  CONFIG_TYPE_JSHOP_DETAIL = 6,
30
30
  CONFIG_TYPE_CUSTOM_LINK = 7,
31
31
  CONFIG_TYPE_MEMBER = 9,
32
32
  CONFIG_TYPE_SHOP_ACTIVITY = 10,
33
33
  CONFIG_TYPE_SHOP_HOME = 12,
34
34
  CONFIG_TYPE_ANCHOR_POINT = 13,
35
35
  CONFIG_TYPE_SHOPPING_GUIDE = 17,
36
36
  CONFIG_TYPE_MINI_PROGRAM = 18,
37
37
  CONFIG_TYPE_FINANCE_COUPON = 22,
38
38
  CONFIG_TYPE_CATEGORY_PAGE = 25,
39
39
  CONFIG_TYPE_SHOP_SEARCH = 31,