@conecli/cone-render 0.10.1-shop3.20 → 0.10.1-shop3.21

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.
@@ -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
- import { isApp, getUrlQuery } from '../utils/jm-common'
2
1
  console.log('h5', isReflexToH5, getUrlQuery(window.location.href, 'reflex'))
3
2
  return new Promise((resolve, reject) => {
4
3
  if (isReflexToH5) {
5
4
  import('./web.base')
6
5
  .then(({ JumpEventWebReport }) => {
7
6
  if (JumpEventWebReport) {
8
7
  console.log('加载普通浏览器h5相关跳转事件js')
9
8
  JumpEventReport = new JumpEventWebReport({})
10
9
  resolve(JumpEventReport)
11
10
  }
12
11
  })
13
12
  .catch((err) => {
14
13
  reject(err)
15
14
  })
16
15
  } else {
17
16
  if (isApp('wx') && isApp('mp') && isH5AdnJxMini) {
18
17
  import('./web.jxwxapp')
19
18
  .then(({ JdJumpWebToJxWxapp }) => {
20
19
  if (JdJumpWebToJxWxapp) {
21
20
  JumpEventReport = new JdJumpWebToJxWxapp({})
22
21
  resolve(JumpEventReport)
23
22
  }
24
23
  })
25
24
  .catch((err) => {
26
25
  reject(err)
27
26
  })
28
27
  } else if (isApp('wx') && isApp('mp')) {
29
28
  import('./web.wxapp')
30
29
  .then(({ JdJumpWebToWxapp }) => {
31
30
  if (JdJumpWebToWxapp) {
32
31
  JumpEventReport = new JdJumpWebToWxapp({})
33
32
  resolve(JumpEventReport)
34
33
  }
35
34
  })
36
35
  .catch((err) => {
37
36
  reject(err)
38
37
  })
39
38
  } else if (isApp('jd') && !isApp('jdharmony')) {
40
39
  import('./web.jd')
41
40
  .then(({ JdJumpWebToJdApp }) => {
42
41
  if (JdJumpWebToJdApp) {
43
42
  JumpEventReport = new JdJumpWebToJdApp({})
44
43
  resolve(JumpEventReport)
45
44
  }
46
45
  })
47
46
  .catch((err) => {
48
47
  reject(err)
49
48
  })
50
49
  } else if (isApp('jdb')) {
51
50
  import('./web.jdb')
52
51
  .then(({ JdbJumpWebToJdbApp }) => {
53
52
  if (JdbJumpWebToJdbApp) {
54
53
  JumpEventReport = new JdbJumpWebToJdbApp({})
55
54
  resolve(JumpEventReport)
56
55
  }
57
56
  })
58
57
  .catch((err) => {
59
58
  reject(err)
60
59
  })
61
60
  } else if (isApp('jdjch')) {
62
61
  import('./web.jdjch')
63
62
  .then(({ JdbJumpWebToJdbApp }) => {
64
63
  if (JdbJumpWebToJdbApp) {
65
64
  JumpEventReport = new JdbJumpWebToJdbApp({})
66
65
  resolve(JumpEventReport)
67
66
  }
68
67
  })
69
68
  .catch((err) => {
70
69
  reject(err)
71
70
  })
72
71
  } else if (isApp('tjapp')) {
73
72
  import('./web.tjapp')
74
73
  .then(({ tjJumpWebTotjApp }) => {
75
74
  if (tjJumpWebTotjApp) {
76
75
  console.log('加载特价app内h5相关跳转事件js')
77
76
  JumpEventReport = new tjJumpWebTotjApp({})
78
77
  resolve(JumpEventReport)
79
78
  }
80
79
  })
81
80
  .catch((err) => {
82
81
  reject(err)
83
82
  })
84
83
  } else if (isPc) {
85
84
  import('./web.pc')
86
85
  .then(({ JumpEventWebReport }) => {
87
86
  if (JumpEventWebReport) {
88
87
  JumpEventReport = new JumpEventWebReport({})
89
88
  resolve(JumpEventReport)
90
89
  }
91
90
  })
92
91
  .catch((err) => {
93
92
  reject(err)
94
93
  })
95
94
  } else if (isTjJxM || isTjM) {
96
95
  import('./web.tjm')
97
96
  .then(({ JumpEventTJWebReport }) => {
98
97
  if (JumpEventTJWebReport) {
99
98
  JumpEventReport = new JumpEventTJWebReport({})
100
99
  resolve(JumpEventReport)
101
100
  }
102
101
  })
103
102
  .catch((err) => {
104
103
  reject(err)
105
104
  })
106
105
  } else {
107
106
  import('./web.base')
108
107
  .then(({ JumpEventWebReport }) => {
109
108
  if (JumpEventWebReport) {
110
109
  JumpEventReport = new JumpEventWebReport({})
111
110
  resolve(JumpEventReport)
112
111
  }
113
112
  })
114
113
  .catch((err) => {
115
114
  reject(err)
116
115
  })
117
116
  }
118
117
  }
119
118
  })
119
+ import { isApp, getUrlQuery } from '../utils/jm-common';
120
120
  console.log('h5', isReflexToH5, getUrlQuery(window.location.href, 'reflex'));
121
121
  return new Promise((resolve, reject) => {
122
122
  if (isReflexToH5) {
123
123
  import('./web.base')
124
124
  .then(({ JumpEventWebReport }) => {
125
125
  if (JumpEventWebReport) {
126
126
  console.log('加载普通浏览器h5相关跳转事件js');
127
127
  JumpEventReport = new JumpEventWebReport({});
128
128
  resolve(JumpEventReport);
129
129
  }
130
130
  })
131
131
  .catch((err) => {
132
132
  reject(err);
133
133
  });
134
134
  } else {
135
135
  if (isApp('wx') && isApp('mp') && isH5AdnJxMini) {
136
136
  import('./web.jxwxapp')
137
137
  .then(({ JdJumpWebToJxWxapp }) => {
138
138
  if (JdJumpWebToJxWxapp) {
139
139
  JumpEventReport = new JdJumpWebToJxWxapp({});
140
140
  resolve(JumpEventReport);
141
141
  }
142
142
  })
143
143
  .catch((err) => {
144
144
  reject(err);
145
145
  });
146
146
  } else if (isApp('wx') && isApp('mp')) {
147
147
  import('./web.wxapp')
148
148
  .then(({ JdJumpWebToWxapp }) => {
149
149
  if (JdJumpWebToWxapp) {
150
150
  JumpEventReport = new JdJumpWebToWxapp({});
151
151
  resolve(JumpEventReport);
152
152
  }
153
153
  })
154
154
  .catch((err) => {
155
155
  reject(err);
156
156
  });
157
157
  } else if (
158
158
  isApp('jd') &&
159
159
  (!isApp('jdharmony') || (isApp('jdharmony') && getPageType() === 'member-fast-card'))
160
160
  ) {
161
161
  import('./web.jd')
162
162
  .then(({ JdJumpWebToJdApp }) => {
163
163
  if (JdJumpWebToJdApp) {
164
164
  JumpEventReport = new JdJumpWebToJdApp({});
165
165
  resolve(JumpEventReport);
166
166
  }
167
167
  })
168
168
  .catch((err) => {
169
169
  reject(err);
170
170
  });
171
171
  } else if (isApp('jdb')) {
172
172
  import('./web.jdb')
173
173
  .then(({ JdbJumpWebToJdbApp }) => {
174
174
  if (JdbJumpWebToJdbApp) {
175
175
  JumpEventReport = new JdbJumpWebToJdbApp({});
176
176
  resolve(JumpEventReport);
177
177
  }
178
178
  })
179
179
  .catch((err) => {
180
180
  reject(err);
181
181
  });
182
182
  } else if (isApp('jdjch')) {
183
183
  import('./web.jdjch')
184
184
  .then(({ JdbJumpWebToJdbApp }) => {
185
185
  if (JdbJumpWebToJdbApp) {
186
186
  JumpEventReport = new JdbJumpWebToJdbApp({});
187
187
  resolve(JumpEventReport);
188
188
  }
189
189
  })
190
190
  .catch((err) => {
191
191
  reject(err);
192
192
  });
193
193
  } else if (isApp('tjapp')) {
194
194
  import('./web.tjapp')
195
195
  .then(({ tjJumpWebTotjApp }) => {
196
196
  if (tjJumpWebTotjApp) {
197
197
  console.log('加载特价app内h5相关跳转事件js');
198
198
  JumpEventReport = new tjJumpWebTotjApp({});
199
199
  resolve(JumpEventReport);
200
200
  }
201
201
  })
202
202
  .catch((err) => {
203
203
  reject(err);
204
204
  });
205
205
  } else if (isPc) {
206
206
  import('./web.pc')
207
207
  .then(({ JumpEventWebReport }) => {
208
208
  if (JumpEventWebReport) {
209
209
  JumpEventReport = new JumpEventWebReport({});
210
210
  resolve(JumpEventReport);
211
211
  }
212
212
  })
213
213
  .catch((err) => {
214
214
  reject(err);
215
215
  });
216
216
  } else if (isTjJxM || isTjM) {
217
217
  import('./web.tjm')
218
218
  .then(({ JumpEventTJWebReport }) => {
219
219
  if (JumpEventTJWebReport) {
220
220
  JumpEventReport = new JumpEventTJWebReport({});
221
221
  resolve(JumpEventReport);
222
222
  }
223
223
  })
224
224
  .catch((err) => {
225
225
  reject(err);
226
226
  });
227
227
  } else {
228
228
  import('./web.base')
229
229
  .then(({ JumpEventWebReport }) => {
230
230
  if (JumpEventWebReport) {
231
231
  JumpEventReport = new JumpEventWebReport({});
232
232
  resolve(JumpEventReport);
233
233
  }
234
234
  })
235
235
  .catch((err) => {
236
236
  reject(err);
237
237
  });
238
238
  }
239
239
  }
240
240
  });
@@ -1 +1 @@
1
- import { domain } from '../../api';
2
1
  shop: '/pages/shop/index/index',
3
2
  detail: '/pages/gold/item/pages/detail/index',
4
3
  jxDetail: '/pages/item/detail/detail',
5
4
  searchCoupon: '/pages/search/subPackages/coupon/coupon',
6
5
  h5: '/pages/h5/index',
7
6
  jingGouHome: '/pages/index/index',
8
7
  shopFans: '/pages/shopfans/pages/index/index',
9
8
  shopLight: '/pages/shoplight/pages/index/index',
10
9
  couponSearch: '/pages/search/subPackages/coupon/coupon',
11
10
  jxCouponSearch: '/pages/search_copr/index',
12
11
  shopx: '/pages/shopx/pages/index/index',
13
12
  shopSearch: '/pages/shopx/pages/searchPanel/index',
14
13
  jdLive: '/pages/jd_live/pages/liveRoom/index',
15
14
  mshop: domain.mshop,
16
15
  pages: domain.pages,
17
16
  couponSearch: `${domain.mobileSo}/list/couponSearch.action`,
18
17
  jxCouponSearch: `${domain.jxDomain}/search/coupon.shtml`,
19
18
  pcCouponSearch: `${domain.pcSo}/Search`,
20
19
  shopSecondActivity: `${domain.sale}/m/h5/`,
21
20
  shopLight: `${domain.sale}/liteshop/index.html`,
22
21
  detail: `${domain.mobileDetail}/product/`,
23
22
  jxDetail: `${domain.wqs}/item/view.html`,
24
23
  tjDetail: `${domain.kpl}/product`,
25
24
  pcDetail: `https://item.jd.com/`,
26
25
  pcCoupon: `${domain.pcCoupon}/ilink/couponActiveFront/linkKey/front_index.action`,
27
26
  mobileHome: `${domain.mobileHome}`,
28
27
  rank: `${domain.ranking}/comLandingPage/comLandingPage`,
29
28
  wqShopMember: `${domain.wqshop}/mshop/QueryShopMemberInfo`,
30
29
  wqShopDetail: `${domain.wqshop}/mshop/GetShopIntroduce`,
31
30
  wqShopSearch: `${domain.wqshop}/mshop/SearchList`,
32
31
  myCouponList: `${domain.wqs}/my/coupon/index.shtml`,
33
32
  myRedPacketList: `${domain.wqs}/my/redpacket.shtml`,
34
33
  memberHome: `${domain.pages}/member/home`,
35
34
  memberCard: `${domain.pages}/member/card`,
36
35
  memberPoints: `${domain.pages}/member/points`,
37
36
  memberBenefit: `${domain.pages}/member/benefit`,
38
37
  memberScores: `${domain.pages}/member/scores`,
39
38
  memberScoreRule: `${domain.pages}/member/scoreRule`,
40
39
  memberProduct: `${domain.pages}/member/product`,
41
40
  shopMember: `${domain.shopMember}/shopcard`,
42
41
  shopMemberCardAgreement: `${domain.shopMember}/member/cardAgreement`,
43
42
  shopMemberCardInstruction: `${domain.shopMember}/member/cardInstruction`,
44
43
  shopMemberPointDetail: `${domain.shopMember}/member/membersPoint`,
45
44
  shopMemberBenefit: `${domain.shopMember}/shopbenefit`,
46
45
  shopMemberRule: `${domain.shopMember}/member/membersRule`,
47
46
  shopSuperMemberRule: `${domain.shopMember}/member/memberWelfareRule`,
48
47
  shopMemberEquityRule: `${domain.shopMember}/member/memberEquityRule`,
49
48
  shopMemberWelfare: `${domain.shopMember}/member/memberWelfare`,
50
49
  shopMemberCloseAccount: `${domain.shopMember}/member/memberCloseAccount`,
51
50
  shopMemberPointExchange: `${domain.shopMember}/memberpoint`,
52
51
  shopMemberBonusPurchase: `${domain.shopMember}/bonuspurchase`,
53
52
  shopMemberGood: `${domain.shopMember}/member/membersGood`,
54
53
  shopMemberCouponList: `${domain.shopMember}/couponList/index.html`,
55
54
  shopMemberOpenCard: `${domain.shopMember}/openCard/index.html`,
56
55
  shopMemberPayDescription: `${domain.shopMember}/brandSubscribeExplain/index.html`,
57
56
  beanDetail: `${domain.bean}/beanDetail/index.action`,
58
57
  totalPromotion: `${domain.mobileSo}/list/itemSearch.action`,
59
58
  mLive: `${domain.lives}/#`,
60
59
  shopHome: `${domain.pages}/shop/home`,
61
60
  shopIntroduce: `${domain.pages}/shop/introduce`,
62
61
  shopSearch: `${domain.pages}/shop/search`,
63
62
  shopLottery: `${domain.pages}/shop/lottery`,
64
63
  shopCoupon: `${domain.pages}/shop/coupon`,
65
64
  shopWares: `${domain.pages}/shop/wares`,
66
65
  shopFastShopping: `${domain.pages}/shop/fastShopping`,
67
66
  shopSpeciSeckill: `${domain.pages}/shop/specialSeckill`,
68
67
  shopVideos: `${domain.pages}/shop/videos`,
69
68
  shopMoreGoods: `${domain.pages}/shop/moreGoods`,
70
69
  shopUseShareOrderUgcContent: `${domain.capturehomeshare}/aha/ugcShare.html`,
71
70
  dongDongChat: `${domain.jdcs}/chat/index.action`,
72
71
  samCenter: `${domain.pages}/shop/samCenter`,
73
72
  samCard: `${domain.pages}/shop/samCard`,
74
73
  shopH5MemberCardAPP: `${domain.pages}/member/shopcard`,
75
74
  shopH5MemberCardM: `${domain.pages}/member/m/shopcard`,
76
75
  sageAuthorHome: `${domain.ecoDomain}/content/dr_home/index.html`,
77
76
  sageShopInteract: `${domain.pages}/app/interact`,
78
77
  shopCouponPop: `${domain.pages}/app/couponPop`,
78
+ import { domain } from '../../api';
79
79
  shop: '/pages/shop/index/index',
80
80
  detail: '/pages/gold/item/pages/detail/index',
81
81
  jxDetail: '/pages/item/detail/detail',
82
82
  searchCoupon: '/pages/search/subPackages/coupon/coupon',
83
83
  h5: '/pages/h5/index',
84
84
  jingGouHome: '/pages/index/index',
85
85
  shopFans: '/pages/shopfans/pages/index/index',
86
86
  shopLight: '/pages/shoplight/pages/index/index',
87
87
  couponSearch: '/pages/search/subPackages/coupon/coupon',
88
88
  jxCouponSearch: '/pages/search_copr/index',
89
89
  shopx: '/pages/shopx/pages/index/index',
90
90
  shopSearch: '/pages/shopx/pages/searchPanel/index',
91
91
  jdLive: '/pages/jd_live/pages/liveRoom/index',
92
92
  mshop: domain.mshop,
93
93
  pages: domain.pages,
94
94
  couponSearch: `${domain.mobileSo}/list/couponSearch.action`,
95
95
  jxCouponSearch: `${domain.jxDomain}/search/coupon.shtml`,
96
96
  pcCouponSearch: `${domain.pcSo}/Search`,
97
97
  shopSecondActivity: `${domain.sale}/m/h5/`,
98
98
  shopLight: `${domain.sale}/liteshop/index.html`,
99
99
  detail: `${domain.mobileDetail}/product/`,
100
100
  jxDetail: `${domain.wqs}/item/view.html`,
101
101
  tjDetail: `${domain.kpl}/product`,
102
102
  pcDetail: `https://item.jd.com/`,
103
103
  pcCoupon: `${domain.pcCoupon}/ilink/couponActiveFront/linkKey/front_index.action`,
104
104
  mobileHome: `${domain.mobileHome}`,
105
105
  rank: `${domain.ranking}/comLandingPage/comLandingPage`,
106
106
  wqShopMember: `${domain.wqshop}/mshop/QueryShopMemberInfo`,
107
107
  wqShopDetail: `${domain.wqshop}/mshop/GetShopIntroduce`,
108
108
  wqShopSearch: `${domain.wqshop}/mshop/SearchList`,
109
109
  myCouponList: `${domain.wqs}/my/coupon/index.shtml`,
110
110
  myRedPacketList: `${domain.wqs}/my/redpacket.shtml`,
111
111
  memberHome: `${domain.pages}/member/home`,
112
112
  memberCard: `${domain.pages}/member/card`,
113
113
  memberPoints: `${domain.pages}/member/points`,
114
114
  memberBenefit: `${domain.pages}/member/benefit`,
115
115
  memberScores: `${domain.pages}/member/scores`,
116
116
  memberScoreRule: `${domain.pages}/member/scoreRule`,
117
117
  memberProduct: `${domain.pages}/member/product`,
118
118
  memberCoupon: `${domain.pages}/member/coupon`,
119
119
  shopMember: `${domain.shopMember}/shopcard`,
120
120
  shopMemberCardAgreement: `${domain.shopMember}/member/cardAgreement`,
121
121
  shopMemberCardInstruction: `${domain.shopMember}/member/cardInstruction`,
122
122
  shopMemberPointDetail: `${domain.shopMember}/member/membersPoint`,
123
123
  shopMemberBenefit: `${domain.shopMember}/shopbenefit`,
124
124
  shopMemberRule: `${domain.shopMember}/member/membersRule`,
125
125
  shopSuperMemberRule: `${domain.shopMember}/member/memberWelfareRule`,
126
126
  shopMemberEquityRule: `${domain.shopMember}/member/memberEquityRule`,
127
127
  shopMemberWelfare: `${domain.shopMember}/member/memberWelfare`,
128
128
  shopMemberCloseAccount: `${domain.shopMember}/member/memberCloseAccount`,
129
129
  shopMemberPointExchange: `${domain.shopMember}/memberpoint`,
130
130
  shopMemberBonusPurchase: `${domain.shopMember}/bonuspurchase`,
131
131
  shopMemberGood: `${domain.shopMember}/member/membersGood`,
132
132
  shopMemberCouponList: `${domain.shopMember}/couponList/index.html`,
133
133
  shopMemberOpenCard: `${domain.shopMember}/openCard/index.html`,
134
134
  shopMemberPayDescription: `${domain.shopMember}/brandSubscribeExplain/index.html`,
135
135
  beanDetail: `${domain.bean}/beanDetail/index.action`,
136
136
  totalPromotion: `${domain.mobileSo}/list/itemSearch.action`,
137
137
  mLive: `${domain.lives}/#`,
138
138
  shopHome: `${domain.pages}/shop/home`,
139
139
  shopIntroduce: `${domain.pages}/shop/introduce`,
140
140
  shopSearch: `${domain.pages}/shop/search`,
141
141
  shopLottery: `${domain.pages}/shop/lottery`,
142
142
  shopCoupon: `${domain.pages}/shop/coupon`,
143
143
  shopWares: `${domain.pages}/shop/wares`,
144
144
  shopFastShopping: `${domain.pages}/shop/fastShopping`,
145
145
  shopSpeciSeckill: `${domain.pages}/shop/specialSeckill`,
146
146
  shopVideos: `${domain.pages}/shop/videos`,
147
147
  shopMoreGoods: `${domain.pages}/shop/moreGoods`,
148
148
  shopUseShareOrderUgcContent: `${domain.capturehomeshare}/aha/ugcShare.html`,
149
149
  dongDongChat: `${domain.jdcs}/chat/index.action`,
150
150
  samCenter: `${domain.pages}/shop/samCenter`,
151
151
  samCard: `${domain.pages}/shop/samCard`,
152
152
  shopH5MemberCardAPP: `${domain.pages}/member/shopcard`,
153
153
  shopH5MemberCardM: `${domain.pages}/member/m/shopcard`,
154
154
  sageAuthorHome: `${domain.ecoDomain}/content/dr_home/index.html`,
155
155
  sageShopInteract: `${domain.pages}/app/interact`,
156
156
  shopCouponPop: `${domain.pages}/app/couponPop`,
@@ -1 +1 @@
1
- export enum LogPnameInfo {
2
1
  HOME = 'home',
3
2
  MEMBER = 'member',
4
3
  CLASSIFY = 'classify',
5
4
  PROMOTION = 'promotion',
6
5
  WX_SHOP_HOME = 'wx_shop_home',
7
6
  APP_SHOP_DETAIL = 'app_Shop_ShopDetail',
8
7
  MOBILE_SEARCH = 'MShop_SearchResult',
9
8
  SALE_VIEW = 'Shop_NewActivity',
10
9
  STOW_SHOP_VIEW = 'Shop_FollowShopMain',
11
10
  APP_SHOP_NEW_PRODUCT = 'Shop_ProductNew',
12
11
  APP_SHOP_NEW_PRODUCT_VIDEO = 'Shop_ProductNewVideo',
13
12
  APP_SHOP_NEW_PRODUCT_PREFERRED_GOODS = 'shop_preferredGoods',
14
13
  APP_SHOP_BUYER_SHOW = 'Shop_ShopBuyerShow',
15
14
  APP_SHOP_CARD = 'Shop_ShopCard',
16
15
  APP_SHOP_MEMBER = 'Shop_ShopMember',
17
16
  APP_SHOP_PAY_MEMBER = 'Shop_PayShopMember',
18
17
  SHOP_MEMBER_EXCHANGE_NEW = 'Shop_ShopMemberExchangedNew',
19
18
  SHOP_MEMBER_RECEIVED = 'Shop_ShopMemberReceived',
20
19
  SHOP_MEMBER_SCORES = 'Shop_ShopMemberScores',
21
20
  SHOP_MEMBER_SCORE_RULE = 'Shop_ShopMemberScoreRule',
22
21
  SHOP_MEMBER_PRODUCT = 'Shop_ShopMemberProduct',
23
22
  APP_SAGE = 'Shop_Person',
24
23
  APP_SAGE_POP = 'Shop_PersionPop',
25
24
  APP_USER_SHOP_SALE_POP = 'Shop_SystemUserShopSalePop',
26
25
  MOBILE = 'Shop_ShopMain',
27
26
  APP = 'TerminatorNew_All',
28
27
  APP_SAGE = 'Shop_Person',
29
28
  APP_SAGE_POP = 'Shop_PersionPop',
30
29
  WX_JDGW_SHOP = 'W_jdgwxcx_shop',
31
30
  APP_SHOP_DETAIL = 'Shop_ShopDetail',
32
31
  MOBILE_SEARCH = 'MShop_SearchResult',
33
32
  STOW_SHOP_VIEW = 'Shop_FollowShopMain',
34
33
  APP_SHOP_CARD = 'Shop_ShopCard',
35
34
  APP_SHOP_MEMBER = 'Shop_ShopMember',
36
35
  APP_SHOP_PAY_MEMBER = 'Shop_PayShopMember',
37
36
  SHOP_MEMBER_EXCHANGE_NEW = 'Shop_ShopMemberExchangedNew',
38
37
  SHOP_MEMBER_RECEIVED = 'Shop_ShopMemberReceived',
39
38
  APP_SHOP_NEW_PRODUCT = 'Shop_ProductNew',
40
39
  APP_SHOP_NEW_PRODUCT_VIDEO = 'Shop_ProductNewVideo',
41
40
  APP_SHOP_NEW_PRODUCT_PREFERRED_GOODS = 'shop_preferredGoods',
42
41
  APP_SHOP_BUYER_SHOW = 'Shop_ShopBuyerShow',
43
42
  SALE_VIEW = 'Shop_NewActivity',
44
43
  SHOP_MEMBER_SCORES = 'Shop_ShopMemberScores',
45
44
  SHOP_MEMBER_SCORE_RULE = 'Shop_ShopMemberScoreRule',
46
45
  SHOP_MEMBER_PRODUCT = 'Shop_ShopMemberProduct',
47
46
  APP_USER_SHOP_SALE_POP = 'Shop_SystemUserShopSalePop',
48
47
  ACTIVITY_INIT: 'activityInit',
49
48
  SHOP_HEADER: 'shopHeader',
50
49
  SHOP_FOOTER: 'shopFooter',
51
50
  SHOP_HOME: 'jshopMain',
52
51
  SHOP_FOLLOW_BTN: 'shopFollowBtn',
53
52
  SHOP_UNFOLLOW_BTN: 'shopUnFollowBtn',
54
53
  NETWORK_ERR: 'networkerr',
55
54
  RANK_LIST_MORE: 'Jx_Terminator_ShopRankListMore',
56
55
  RANK_LIST_TAG: 'Jx_Terminator_ShopRankListTag',
57
56
  RANK_LIST: 'Jx_Terminator_ShopRankList',
58
57
  EXPO_RANK_LIST: 'Jx_Terminator_Expo_shopRankList',
59
58
  [LogEventIds.SHOP_HOME]: 'Jx_Terminator_1620613767283|1',
60
59
  [LogEventIds.SHOP_FOLLOW_BTN]: 'Jx_Terminator_1620613767283|2',
61
60
  [LogEventIds.SHOP_UNFOLLOW_BTN]: 'Jx_Terminator_1620613767283|3',
62
61
  [LogEventIds.NETWORK_ERR]: 'Jx_Terminator_1620613767283|4',
63
62
  [LogEventIds.RANK_LIST_MORE]: 'Jx_Terminator_ShopRankListMore',
64
63
  [LogEventIds.RANK_LIST_TAG]: 'Jx_Terminator_ShopRankListTag',
65
64
  [LogEventIds.RANK_LIST]: 'Jx_Terminator_ShopRankList',
66
65
  [LogEventIds.EXPO_RANK_LIST]: 'Jx_Terminator_Expo_shopRankList',
66
+ export enum LogPnameInfo {
67
67
  HOME = 'home',
68
68
  MEMBER = 'member',
69
69
  CLASSIFY = 'classify',
70
70
  PROMOTION = 'promotion',
71
71
  WX_SHOP_HOME = 'wx_shop_home',
72
72
  APP_SHOP_DETAIL = 'app_Shop_ShopDetail',
73
73
  MOBILE_SEARCH = 'MShop_SearchResult',
74
74
  SALE_VIEW = 'Shop_NewActivity',
75
75
  STOW_SHOP_VIEW = 'Shop_FollowShopMain',
76
76
  APP_SHOP_NEW_PRODUCT = 'Shop_ProductNew',
77
77
  APP_SHOP_NEW_PRODUCT_VIDEO = 'Shop_ProductNewVideo',
78
78
  APP_SHOP_NEW_PRODUCT_PREFERRED_GOODS = 'shop_preferredGoods',
79
79
  APP_SHOP_BUYER_SHOW = 'Shop_ShopBuyerShow',
80
80
  APP_SHOP_CARD = 'Shop_ShopCard',
81
81
  APP_SHOP_MEMBER = 'Shop_ShopMember',
82
82
  APP_SHOP_PAY_MEMBER = 'Shop_PayShopMember',
83
83
  SHOP_MEMBER_EXCHANGE_NEW = 'Shop_ShopMemberExchangedNew',
84
84
  SHOP_MEMBER_RECEIVED = 'Shop_ShopMemberReceived',
85
85
  SHOP_MEMBER_SCORES = 'Shop_ShopMemberScores',
86
86
  SHOP_MEMBER_SCORE_RULE = 'Shop_ShopMemberScoreRule',
87
87
  SHOP_MEMBER_PRODUCT = 'Shop_ShopMemberProduct',
88
88
  APP_SAGE = 'Shop_Person',
89
89
  APP_SAGE_POP = 'Shop_PersionPop',
90
90
  APP_USER_SHOP_SALE_POP = 'Shop_SystemUserShopSalePop',
91
91
  SHOP_MEMBER_COUPON = 'Shop_BrandSubCoupon',
92
92
  MOBILE = 'Shop_ShopMain',
93
93
  APP = 'TerminatorNew_All',
94
94
  APP_SAGE = 'Shop_Person',
95
95
  APP_SAGE_POP = 'Shop_PersionPop',
96
96
  WX_JDGW_SHOP = 'W_jdgwxcx_shop',
97
97
  APP_SHOP_DETAIL = 'Shop_ShopDetail',
98
98
  MOBILE_SEARCH = 'MShop_SearchResult',
99
99
  STOW_SHOP_VIEW = 'Shop_FollowShopMain',
100
100
  APP_SHOP_CARD = 'Shop_ShopCard',
101
101
  APP_SHOP_MEMBER = 'Shop_ShopMember',
102
102
  APP_SHOP_PAY_MEMBER = 'Shop_PayShopMember',
103
103
  SHOP_MEMBER_EXCHANGE_NEW = 'Shop_ShopMemberExchangedNew',
104
104
  SHOP_MEMBER_RECEIVED = 'Shop_ShopMemberReceived',
105
105
  APP_SHOP_NEW_PRODUCT = 'Shop_ProductNew',
106
106
  APP_SHOP_NEW_PRODUCT_VIDEO = 'Shop_ProductNewVideo',
107
107
  APP_SHOP_NEW_PRODUCT_PREFERRED_GOODS = 'shop_preferredGoods',
108
108
  APP_SHOP_BUYER_SHOW = 'Shop_ShopBuyerShow',
109
109
  SALE_VIEW = 'Shop_NewActivity',
110
110
  SHOP_MEMBER_SCORES = 'Shop_ShopMemberScores',
111
111
  SHOP_MEMBER_SCORE_RULE = 'Shop_ShopMemberScoreRule',
112
112
  SHOP_MEMBER_PRODUCT = 'Shop_ShopMemberProduct',
113
113
  APP_USER_SHOP_SALE_POP = 'Shop_SystemUserShopSalePop',
114
114
  SHOP_MEMBER_COUPON = 'Shop_BrandSubCoupon',
115
115
  ACTIVITY_INIT: 'activityInit',
116
116
  SHOP_HEADER: 'shopHeader',
117
117
  SHOP_FOOTER: 'shopFooter',
118
118
  SHOP_HOME: 'jshopMain',
119
119
  SHOP_FOLLOW_BTN: 'shopFollowBtn',
120
120
  SHOP_UNFOLLOW_BTN: 'shopUnFollowBtn',
121
121
  NETWORK_ERR: 'networkerr',
122
122
  RANK_LIST_MORE: 'Jx_Terminator_ShopRankListMore',
123
123
  RANK_LIST_TAG: 'Jx_Terminator_ShopRankListTag',
124
124
  RANK_LIST: 'Jx_Terminator_ShopRankList',
125
125
  EXPO_RANK_LIST: 'Jx_Terminator_Expo_shopRankList',
126
126
  [LogEventIds.SHOP_HOME]: 'Jx_Terminator_1620613767283|1',
127
127
  [LogEventIds.SHOP_FOLLOW_BTN]: 'Jx_Terminator_1620613767283|2',
128
128
  [LogEventIds.SHOP_UNFOLLOW_BTN]: 'Jx_Terminator_1620613767283|3',
129
129
  [LogEventIds.NETWORK_ERR]: 'Jx_Terminator_1620613767283|4',
130
130
  [LogEventIds.RANK_LIST_MORE]: 'Jx_Terminator_ShopRankListMore',
131
131
  [LogEventIds.RANK_LIST_TAG]: 'Jx_Terminator_ShopRankListTag',
132
132
  [LogEventIds.RANK_LIST]: 'Jx_Terminator_ShopRankList',
133
133
  [LogEventIds.EXPO_RANK_LIST]: 'Jx_Terminator_Expo_shopRankList',