@conecli/cone-render 0.8.19 → 0.8.20-shop-beta.1

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 (37) hide show
  1. package/dist/api/index.ts +1 -1
  2. package/dist/common/const.ts +1 -1
  3. package/dist/components/base/CustomVideo/const.ts +1 -0
  4. package/dist/components/base/CustomVideo/index.module.scss +39 -64
  5. package/dist/components/base/CustomVideo/index.tsx +1 -1
  6. package/dist/components/base/ExposureSmart/reporter.tsx +1 -1
  7. package/dist/components/base/NetworkDataError/index.tsx +1 -1
  8. package/dist/components/decorate/EmptyFloorModule/index.tsx +1 -1
  9. package/dist/components/decorate/PlaceHolder/index.tsx +1 -1
  10. package/dist/components/floorItem.jd.tsx +1 -0
  11. package/dist/components/floorItem.tsx +1 -1
  12. package/dist/components/floorItem.weapp.tsx +1 -1
  13. package/dist/interface/component.ts +1 -1
  14. package/dist/interface/jumpEventReport.ts +1 -1
  15. package/dist/interface/service.ts +1 -1
  16. package/dist/jumpEventReport/base.ts +1 -1
  17. package/dist/jumpEventReport/const.ts +1 -1
  18. package/dist/jumpEventReport/index.weapp.ts +1 -1
  19. package/dist/jumpEventReport/jdJumpJdApp.ts +1 -1
  20. package/dist/jumpEventReport/jumpUrlConfig/base.ts +1 -1
  21. package/dist/jumpEventReport/logEventConfig.ts +1 -1
  22. package/dist/jumpEventReport/web.base.ts +1 -1
  23. package/dist/jumpEventReport/web.jd.ts +1 -1
  24. package/dist/jumpEventReport/web.wxapp.ts +1 -1
  25. package/dist/libs/taroAppReport.js +2 -2
  26. package/dist/modules/ContainerFloorList/index.tsx +1 -1
  27. package/dist/open/api/index.ts +1 -1
  28. package/dist/open/api/jump.ts +1 -1
  29. package/dist/open/api/shopMember.ts +1 -0
  30. package/dist/service/http/const.ts +1 -0
  31. package/dist/service/http/http.ts +1 -0
  32. package/dist/service/http/httpInterceptors.jd.ts +1 -0
  33. package/dist/service/http/httpInterceptors.ts +1 -0
  34. package/dist/service/http/index.ts +1 -0
  35. package/dist/utils/connectNativeJsBridge.ts +1 -1
  36. package/dist/utils/connectNativeJsBridge.weapp.ts +1 -1
  37. package/package.json +2 -2
@@ -1 +1 @@
1
- import Taro from '@tarojs/taro'
1
+ import Taro from '@tarojs/taro'
2
2
  ...otherParams
3
3
 
4
4
  {shopId: String(shopInfo.shopId ?? ''),
5
5
  venderId: String(shopInfo.venderId ?? '')}
6
6
 
7
7
  jdJumpToTryDetail(tryId) {
8
8
  this.jdNavigateToNative({
9
9
  category: 'jump',
10
10
  des: 'jdreactcommon',
11
11
  appname: 'JDReactNewProduct',
12
12
  modulename: 'JDReactNewProduct',
13
13
  param: {
14
14
  activityId: tryId,
15
15
  isNative: true,
16
16
  nativePage: 'jdtry_detail',
17
17
  transparentenable: true,
18
18
  },
19
19
  })
20
20
  }
21
21
 
22
22
  jdJumpToUnifieddetail(sourceInfo) {
23
23
  this.jdNavigateToNative(
24
24
  Object.assign(
25
25
  {},
26
26
  {
27
27
  category: 'jump',
28
28
  des: 'unifieddetail',
29
29
  },
30
30
  sourceInfo,
31
31
  ),
32
32
  )
33
33
  }
34
34
 
35
35
  jdJumpToVideoImmersion(sourceInfo) {
36
36
  this.jdNavigateToNative(
37
37
  Object.assign(
38
38
  {},
39
39
  {
40
40
  category: 'jump',
41
41
  des: 'VideoImmersion',
42
42
  },
43
43
  sourceInfo,
44
44
  ),
45
45
  )
46
46
  }
47
47
 
48
48
  jdJumpToShopMember(shopInfo) {
49
49
  this.jdNavigateToNative(
50
50
  Object.assign(
51
51
  {},
52
52
  {
53
53
  category: 'jump',
54
54
  des: 'jshopMember',
55
55
  followAward: '-1',
56
56
  },
57
57
  shopInfo,
58
58
  ),
59
59
  )
60
60
  }
61
61
 
62
62
  jdJumpToDongDongChatGroup(groupId, source = 'jdmini') {
63
63
  this.jdNavigateToNative({
64
64
  category: 'jump',
65
65
  des: 'dongdong_group_chat',
66
66
  source: source,
67
67
  groupId: `${groupId}`,
68
68
  })
69
69
  }
70
70
 
71
71
  jdJumpToDongDongChat(paramInfo = {}) {
72
72
  this.jdNavigateToNative(
73
73
  Object.assign(
74
74
  {},
75
75
  {
76
76
  category: 'jump',
77
77
  des: 'jd_dongdong_chat',
78
78
  venderId: global.info.queryInfo.venderId,
79
79
  entry: 'm_shop',
80
80
  },
81
81
  paramInfo,
82
82
  ),
83
83
  )
84
84
  }
85
85
 
86
86
  jdJumpToShopActivity(shopInfo) {
87
87
  const getParams = Object.assign(
88
88
  {},
89
89
  {
90
90
  category: 'jump',
91
91
  des: 'jshopActivity',
92
92
  shopId: global.info.queryInfo.shopId,
93
93
  venderId: global.info.queryInfo.venderId,
94
94
  },
95
95
  shopInfo,
96
96
  )
97
97
  getParams['projectId'] &&
98
98
  (getParams['projectId'] = `${getParams['projectId']}`)
99
99
  this.jdNavigateToNative(getParams)
100
100
  }
101
101
 
102
102
  jdJumpToShopActivityPage(shopInfo) {
103
103
  this.jdNavigateToNative(
104
104
  Object.assign(
105
105
  {},
106
106
  {
107
107
  category: 'jump',
108
108
  des: 'jshopActivityPage',
109
109
  shopId: global.info.queryInfo.shopId,
110
110
  title: global.info.queryInfo?.shopName,
111
111
  },
112
112
  shopInfo,
113
113
  ),
114
114
  )
115
115
  }
116
116
 
117
117
  jdJumpToShopDetail(shopInfo) {
118
118
  this.jdNavigateToNative(
119
119
  Object.assign(
120
120
  {},
121
121
  {
122
122
  category: 'jump',
123
123
  des: 'jshopDetail',
124
124
  },
125
125
  shopInfo,
126
126
  ),
127
127
  )
128
128
  }
129
129
 
130
130
  jdJumpToShopMemberCard(shopInfo) {
131
131
  const { url, logEventInfo } = shopInfo
132
132
  if (this.isOpenJdAppUrl(url)) {
133
133
  const getOpenAppParams = this.jdOpenAppParams(url)
134
134
  console.log(
135
135
  'jd web 获取自定义openApp链接解析后的参数结果',
136
136
  getOpenAppParams,
137
137
  )
138
138
  if (getOpenAppParams) {
139
139
  this.jdNavigateToNative(
140
140
  Object.assign({}, getOpenAppParams, { logEventInfo }),
141
141
  )
142
142
  }
143
143
  } else {
144
144
  super.jdJumpToWeb(url, {
145
145
  ...logEventInfo,
146
146
  })
147
147
  }
148
148
  }
149
149
 
150
150
  jdJumpToTotalPromotion(shopInfo) {
151
151
  const { url, logEventInfo } = shopInfo
152
152
  if (this.isOpenJdAppUrl(url)) {
153
153
  const getOpenAppParams = this.jdOpenAppParams(url)
154
154
  console.log(
155
155
  'jd web 获取自定义openApp链接解析后的参数结果',
156
156
  getOpenAppParams,
157
157
  )
158
158
  if (getOpenAppParams) {
159
159
  this.jdNavigateToNative(
160
160
  Object.assign({}, getOpenAppParams, { logEventInfo }),
161
161
  )
162
162
  }
163
163
  } else {
164
164
  super.jdJumpToWeb(url, {
165
165
  ...logEventInfo,
166
166
  })
167
167
  }
168
168
  }
169
169
 
170
170
  jdJumpToShopSearch(pageInfo = {}) {
171
171
  const { keyword = '', ...otherPageInfo }: any = pageInfo
172
172
  const keywordInfo = {}
173
173
  if (keyword != '') {
174
174
  keywordInfo['keyWord'] = keyword
175
175
  keywordInfo['searchType'] = '4'
176
176
  }
177
177
  this.jdNavigateToNative(
178
178
  Object.assign(
179
179
  {},
180
180
  {
181
181
  category: 'jump',
182
182
  des: 'jshopProductList',
183
183
  pageId: '1',
184
184
  ...keywordInfo,
185
185
  },
186
186
  otherPageInfo,
187
187
  ),
188
188
  )
189
189
  }
190
190
 
191
191
  jdJumpToOrderList(logEventInfo = {}) {
192
192
  this.jdNavigateToNative(
193
193
  Object.assign(
194
194
  {},
195
195
  {
196
196
  category: 'jump',
197
197
  des: 'orderlist',
198
198
  from: 'dphycc',
199
199
  },
200
200
  logEventInfo,
201
201
  ),
202
202
  )
203
203
  }
204
204
 
205
205
  jdJumpToCouponSearchProductList(couponId, logEventInfo = {}) {
206
206
  this.jdNavigateToNative(
207
207
  Object.assign(
208
208
  {},
209
209
  {
210
210
  category: 'jump',
211
211
  des: 'productList',
212
212
  from: 'couponBatch',
213
213
  couponId: `${couponId}`,
214
214
  },
215
215
  logEventInfo,
216
216
  ),
217
217
  )
218
218
  }
219
219
 
220
220
  jdJumpToTabAllProduct(shopId, venderId, logEventInfo = {}) {
221
221
  this.jdNavigateToNative(
222
222
  Object.assign(
223
223
  {},
224
224
  {
225
225
  category: 'jump',
226
226
  des: 'jshopMain',
227
227
  jumpTab: 'allProduct',
228
228
  shopId: `${shopId}`,
229
229
  venderId: `${venderId}`,
230
230
  },
231
231
  logEventInfo,
232
232
  ),
233
233
  )
234
234
  }
235
235
 
236
236
  jdJumpToTabAllProductInner(shopId, venderId, logEventInfo = {}) {
237
237
  this.jdNavigateToNative(
238
238
  Object.assign(
239
239
  {},
240
240
  {
241
241
  category: 'jump',
242
242
  des: 'jshopMain',
243
243
  jumpTab: 'allProduct',
244
244
  shopId: `${shopId}`,
245
245
  venderId: `${venderId}`,
246
246
  operation: 'jumpTabInner',
247
247
  },
248
248
  logEventInfo,
249
249
  ),
250
250
  )
251
251
  }
252
252
 
253
253
  jdJumpToWeb(
254
254
  url,
255
255
  logEventInfo,
256
256
  successBack?: Function | undefined,
257
257
  failBack?: Function | undefined,
258
258
  ) {
259
259
  const changeUrl = /^\/\//.test(url) ? `https:${url}` : url
260
260
  this.jdNavigateToNative(
261
261
  {
262
262
  category: 'jump',
263
263
  des: 'm',
264
264
  url: encodeURIComponent(changeUrl),
265
265
  logEventInfo,
266
266
  },
267
267
  OpenAppHost,
268
268
  successBack,
269
269
  failBack,
270
270
  )
271
271
  }
272
272
 
273
273
  jdJumpToLive(clickUrlOrObj, logEventInfo) {
274
274
  if (typeof clickUrlOrObj === 'object') {
275
275
  this.jdNavigateToNative({
276
276
  category: 'jump',
277
277
  des: 'LivePlayerRoom',
278
278
  liveOrigin: '1',
279
279
  needLogin: '0',
280
280
  isNeedVideo: true,
281
281
  logEventInfo,
282
282
  ...clickUrlOrObj,
283
283
  })
284
284
  } else {
285
285
  const getShopLiveParams = this.jdOpenAppParams(clickUrlOrObj)
286
286
  console.log('getShopLiveParams=====', getShopLiveParams)
287
287
  if (typeof getShopLiveParams === 'object') {
288
288
  this.jdNavigateToNative({
289
289
  ...getShopLiveParams,
290
290
  logEventInfo,
291
291
  })
292
292
  }
293
293
  }
294
294
  }
295
295
 
296
296
  jdJumpToUgcContent(urlObj) {
297
297
  if (typeof urlObj === 'object') {
298
298
  this.jdNavigateToNative({
299
299
  category: 'jump',
300
300
  des: 'shareOrderUgcContent',
301
301
  channel: 'shopshangxin',
302
302
  cmtType: '10',
303
303
  isNeedVideo: true,
304
304
  ...urlObj,
305
305
  })
306
306
  } else {
307
307
  const getShopUgcParams = this.jdOpenAppParams(urlObj)
308
308
  console.log('getShopUgcParams=====', getShopUgcParams)
309
309
  getShopUgcParams && this.jdNavigateToNative(getShopUgcParams as String)
310
310
  }
311
311
  }
312
312
 
313
313
  jdJumpToSeckillNewBrand(brandId) {
314
314
  this.jdNavigateToNative({
315
315
  category: 'jump',
316
316
  des: 'seckillnewbrand',
317
317
  brandId: `${brandId}`,
318
318
  })
319
319
  }
320
320
 
321
321
  jdJumpToJshopDynamicDetail(info) {
322
322
  this.jdNavigateToNative({
323
323
  category: 'jump',
324
324
  des: 'jshopDynamicDetail',
325
325
  shopId: global.info.queryInfo.shopId,
326
326
  venderId: global.info.queryInfo.venderId,
327
327
  ...info,
328
328
  })
329
329
  }
330
330
 
331
331
  jdJumpToRankList(rankingId, rankType, logEventInfo) {
332
332
  this.jdNavigateToNative(
333
333
  Object.assign(
334
334
  {},
335
335
  {
336
336
  category: 'jump',
337
337
  des: 'jdreactcommon',
338
338
  modulename: 'JDReactRankingList',
339
339
  appname: 'JDReactRankingList',
340
340
  transparentenable: true,
341
341
  ishidden: true,
342
342
  param: {
343
343
  contentId: '' + rankingId,
344
344
  fromSkuId: '',
345
345
  detailPageType: '5',
346
346
  rankType: rankType || 10 + '',
347
347
  },
348
348
  logEventInfo,
349
349
  },
350
350
  ),
351
351
  )
352
352
  }
353
353
 
354
354
  jdJumpToFlashSaleTab(logEventInfo) {
355
355
  this.jdNavigateToNative(
356
356
  Object.assign(
357
357
  {},
358
358
  {
359
359
  category: 'jump',
360
360
  des: 'jshopMain',
361
361
  jumpTab: 'flashPurchase',
362
362
  shopId: global.info.queryInfo.shopId,
363
363
  venderId: global.info.queryInfo.venderId,
364
364
  sourceType: 'JDReactShopActivityTAB',
365
365
  sourceValue: '2',
366
366
  operation: 'jumpTabInner',
367
367
  logEventInfo,
368
368
  },
369
369
  ),
370
370
  )
371
371
  }
372
372
 
373
373
 
374
374
  jdJumpToShopMemberInfo(logEventInfo) {
375
375
  this.jdNavigateToNative(
376
376
  Object.assign(
377
377
  {},
378
378
  {
379
379
  category: 'jump',
380
380
  des: 'jdreactcommon',
381
381
  modulename: 'JDReactShopMember',
382
382
  appname: 'JDReactShopMember',
383
383
  ishidden: true,
384
384
  param: {
385
385
  page: 'memberInfo',
386
386
  shopId: global.info.queryInfo.shopId,
387
387
  venderId: global.info.queryInfo.venderId,
388
388
  },
389
389
  logEventInfo,
390
390
  },
391
391
  ),
392
392
  )
393
393
  }
394
394
 
395
395
  jdJumpToShopMemberBenefit(logEventInfo) {
396
396
  this.jdNavigateToNative(
397
397
  Object.assign(
398
398
  {},
399
399
  {
400
400
  category: 'jump',
401
401
  des: 'jdreactcommon',
402
402
  modulename: 'JDReactShopMember',
403
403
  appname: 'JDReactShopMember',
404
404
  ishidden: true,
405
405
  param: {
406
406
  page: 'benefitList',
407
407
  shopId: global.info.queryInfo.shopId,
408
408
  venderId: global.info.queryInfo.venderId,
409
409
  },
410
410
  logEventInfo,
411
411
  },
412
412
  ),
413
413
  )
414
414
  }
415
415
 
416
416
  jdJumpToShopMemberPointExchange(
417
417
  venderType,
418
418
  levelZeroMenuUrl,
419
419
  logEventInfo,
420
420
  ) {
421
421
  this.jdNavigateToNative(
422
422
  Object.assign(
423
423
  {},
424
424
  {
425
425
  category: 'jump',
426
426
  des: 'jdreactcommon',
427
427
  modulename: 'JDReactShopMember',
428
428
  appname: 'JDReactShopMember',
429
429
  ishidden: true,
430
430
  param: {
431
431
  page: 'pointsExchangePage',
432
432
  shopId: global.info.queryInfo.shopId,
433
433
  venderId: global.info.queryInfo.venderId,
434
434
  levelZeroMenuUrl,
435
435
  },
436
436
  logEventInfo,
437
437
  },
438
438
  ),
439
439
  )
440
440
  }
441
441
 
442
442
  jdJumpToShopMemberBonusPurchase(customerLevel, logEventInfo) {
443
443
  this.jdNavigateToNative(
444
444
  Object.assign(
445
445
  {},
446
446
  {
447
447
  category: 'jump',
448
448
  des: 'jdreactcommon',
449
449
  modulename: 'JDReactShopMember',
450
450
  appname: 'JDReactShopMember',
451
451
  ishidden: true,
452
452
  param: {
453
453
  page: 'bonusPurchase',
454
454
  shopId: global.info.queryInfo.shopId,
455
455
  venderId: global.info.queryInfo.venderId,
456
456
  customerLevel,
457
457
  },
458
458
  logEventInfo,
459
459
  },
460
460
  ),
461
461
  )
462
462
  }
463
463
 
464
464
  jdJumpToMyRedEnvelope(logEventInfo) {
465
465
  this.jdNavigateToNative(
466
466
  Object.assign(
467
467
  {},
468
468
  {
469
469
  category: "jump",
470
470
  des: "jdreactcommon",
471
471
  modulename: "JDReactMyRedEnvelope",
472
472
  appname: "JDReactMyRedEnvelope",
473
473
  ishidden: true,
474
474
  fromName: 2,
475
475
  needLogin: true,
476
476
  logEventInfo,
477
477
  },
478
478
  ),
479
479
  )
480
480
  }
481
481
 
482
482
  jdJumpToMyCoupon(logEventInfo) {
483
483
  this.jdNavigateToNative(
484
484
  Object.assign(
485
485
  {},
486
486
  {
487
487
  category:"jump",
488
488
  des:"mycoupon",
489
489
  logEventInfo,
490
490
  },
491
491
  ),
492
492
  )
493
493
  }
494
494
 
495
495
 
496
496
  jdJumpToMiniProgram({ vapptype, appId, path, param }) {
497
497
  const pageName = param['pageType'] || 'home'
498
498
  const nowMiniPath = `pages/${pageName}/index`
499
499
  if (appId === global.info.pageInfo.appId) {
500
500
  Taro.navigateTo({
501
501
  url: `/${nowMiniPath}?${objectToUrlEncode(param)}`,
502
502
  }).catch((err) => {
503
503
  console.warn('跳转小程序页面错误:', err)
504
504
  })
505
505
  } else {
506
506
  const params = {
507
507
  category: 'jump',
508
508
  des: 'jdmp',
509
509
  appId,
510
510
  vapptype,
511
511
  param,
512
512
  path: '',
513
513
  }
514
514
  if (path) {
515
515
  params.path = `${path}.html`
516
516
  }
517
517
  this.jdNavigateToNative(params)
518
518
  }
519
519
  }
520
520
 
521
521
  jdJumpToAppMiniProgram(
522
522
  path: string,
523
523
  param = {},
524
524
  successBack?: Function,
525
525
  failBack?: Function,
526
526
  ) {
527
527
  this.jdNavigateToNative(param, path, successBack, failBack)
528
528
  }
529
529
 
530
530
  clickEventLog(
531
531
  opts: JumpEventReportInterFace.OptEventLogParams = {},
532
532
  clickKey = 'click',
533
533
  ) {
534
534
  const { eventId, jsonParam, eventLevel = 3, skuId, ...otherParams } = opts
535
535
  if (eventId && jsonParam) {
536
536
  const { etModelInfo, logBaseInfo } = jsonParam
537
537
  const miniLogParams = {
538
538
  eid: eventId,
539
539
  elevel: eventLevel,
540
540
  eparam: JSON.stringify(logBaseInfo || jsonParam),
541
541
  ext: {
542
542
  et_model: JSON.stringify(etModelInfo || {}),
543
543
  },
544
544
  pageId: this.logPageId,
545
545
  pname: this.logPname,
546
546
  pparam: JSON.stringify(this.routerInfo.params),
547
547
  target: this.routerInfo.path,
548
548
  event: this.nativeEvent,
549
549
  ...otherParams,
550
550
  }
551
551
  if (clickKey === 'addToCart' && skuId) {
552
552
  miniLogParams['shoppingList'] = {
553
553
  [skuId]: 1,
554
554
  }
555
555
  }
556
556
  console.log('点击埋点参数对象', miniLogParams, clickKey)
557
557
  global.miniAppLogInstance &&
558
558
  global.miniAppLogInstance[clickKey](miniLogParams)
559
559
  } else {
560
560
  console.log('暂无埋点参数eventId和eventParam')
561
561
  }
562
562
  }
563
563
 
564
564
  exposureEventLog(opts: JumpEventReportInterFace.OptEventLogParams = {}) {
565
565
  return this.clickEventLog(opts, 'exposure')
566
566
  }
567
567
 
568
568
  jdJumpToSearch(shopId, suggestWord) {
569
569
  this.jdNavigateToNative({
570
570
  category: 'jump',
571
571
  des: 'jshopGuessWord',
572
572
  shopId: String(shopId),
573
573
  transparentEnable: true,
574
574
  suggestWord,
575
575
  })
576
576
  }
577
577
 
578
578
  jdJumpToMyMessageBox() {
579
579
  this.jdNavigateToNative({
580
580
  category: 'jump',
581
581
  des: 'myMessageBox',
582
582
  })
583
583
  }
584
584
 
585
585
  jdJumpToAppHome() {
586
586
  this.jdNavigateToNative({
587
587
  category: 'jump',
588
588
  des: 'HomePage',
589
589
  })
590
590
  }
591
591
 
592
592
  jdJumpToShopHomeDetail({ shopId, venderId }) {
593
593
  this.jdNavigateToNative({
594
594
  category: 'jump',
595
595
  des: 'jshopDetail',
596
596
  shopId: String(shopId),
597
597
  venderId: String(venderId),
598
598
  })
599
599
  }
@@ -1 +1 @@
1
- import { domain } from '../../api'
1
+ import { domain } from '../../api'
2
2
  shop: '/pages/shop/index/index',
3
3
  detail: '/pages/gold/item/pages/detail/index',
4
4
  searchCoupon: '/pages/search/subPackages/coupon/coupon',
5
5
  h5: '/pages/h5/index',
6
6
  jingGouHome: '/pages/index/index',
7
7
  shopFans: '/pages/shopfans/pages/index/index',
8
8
  shopLight: '/pages/shoplight/pages/index/index',
9
9
  couponSearch: '/pages/search/subPackages/coupon/coupon',
10
10
  shopx: '/pages/shopx/pages/index/index',
11
11
  mshop: domain.mshop,
12
12
  pages: domain.pages,
13
13
  couponSearch: `${domain.mobileSo}/list/couponSearch.action`,
14
14
  shopSecondActivity: `${domain.sale}/m/h5/`,
15
15
  shopLight: `${domain.sale}/liteshop/index.html`,
16
16
  detail: `${domain.mobileDetail}/product/`,
17
17
  mobileHome: `${domain.mobileHome}`,
18
18
  rank: `${domain.ranking}/comLandingPage/comLandingPage`,
19
19
  wqShopMember: `${domain.wqshop}/mshop/QueryShopMemberInfo`,
20
20
  wqShopDetail: `${domain.wqshop}/mshop/GetShopIntroduce`,
21
21
  wqShopSearch: `${domain.wqshop}/mshop/SearchList`,
22
22
  shopMember: `${domain.shopMember}/shopcard`,
23
23
  shopMemberPointDetail: `${domain.shopMember}/member/membersPoint`,
24
24
  shopMemberBenefit: `${domain.shopMember}/shopbenefit`,
25
25
  shopMemberRule: `${domain.shopMember}/member/membersRule`,
26
26
  shopMemberCloseAccount: `${domain.shopMember}/member/memberCloseAccount`,
27
27
  shopMemberPointExchange: `${domain.shopMember}/memberpoint`,
28
28
  shopMemberBonusPurchase: `${domain.shopMember}/bonuspurchase`,
29
29
  shopMemberGood: `${domain.shopMember}/member/membersGood`,
30
30
  beanDetail: `${domain.bean}/beanDetail/index.action`,
31
31
  totalPromotion: `${domain.mobileSo}/list/itemSearch.action`,
32
32
  mLive: `${domain.lives}/#`,
33
33
  shopHome: `${domain.pages}/shop/home`,
34
34
  shopIntroduce: `${domain.pages}/shop/introduce`,
35
35
  shopSearch: `${domain.pages}/shop/search`,
36
36
  shopLottery: `${domain.pages}/shop/lottery`,
37
37
  shopCoupon: `${domain.pages}/shop/coupon`,
38
38
  shopWares: `${domain.pages}/shop/wares`,
39
39
  shopFastShopping: `${domain.pages}/shop/fastShopping`,
40
40
  shopSpeciSeckill: `${domain.pages}/shop/specialSeckill`,
41
41
  shopVideos: `${domain.pages}/shop/videos`,
42
42
  shopUseShareOrderUgcContent: `${domain.capturehomeshare}/aha/ugcShare.html`,
43
43
  dongDongChat: `${domain.jdcs}/chat/index.action`,
44
44
  samCenter: `${domain.pages}/shop/samCenter`,
45
45
  samCard: `${domain.pages}/shop/samCard`,
@@ -1 +1 @@
1
- export enum LogPnameInfo {
1
+ export enum LogPnameInfo {
2
2
  MOBILE_SEARCH = 'MShop_SearchResult'
@@ -1 +1 @@
1
- import global from '../common'
1
+ import global from '../common'
2
2
  const pageParamStr = typeof pageParam === 'object' ? JSON.stringify(pageParam) : pageParam
3
3
 
4
4
  jdJumpToTabAllProductInner(shopId, venderId, logEventInfo = {}){
5
5
  this.jdJumpToTabAllProduct(shopId, venderId, logEventInfo)
6
6
  }
7
7
  const getJsonParam = etModelInfo && logBaseInfo ? logBaseInfo : Object.assign({},{
8
8
  shopid: global.info.queryInfo?.shopId,
9
9
  },jsonParam)
10
10
  jsonParam: JSON.stringify(getJsonParam),
@@ -1 +1 @@
1
- import { JdJumpJdApp } from './jdJumpJdApp'
1
+ import { JdJumpJdApp } from './jdJumpJdApp'
2
2
  case LinkConfigType.CONFIG_TYPE_CATEGORY_PAGE:
3
3
  ...configDataValue,
@@ -1 +1 @@
1
- import global from '../common'
2
1
  console.log('window.shopGlobalSwitch:', JSON.stringify(window.shopGlobalSwitch))
3
2
  console.log('进入了 isH5AndJingGouMini && this.isH5OpenToWxapp 的if')
4
3
  this.jingGouMiniState = true
5
4
  window.isJingGouMiniViewState = true
6
5
  console.log('进入了 iwx?.miniProgram then 但是没有继续跳转的逻辑 ')
7
6
  global.info.isJingGouMiniViewState = true
8
7
  console.log('进入了 isH5AndJingGouMini && this.isH5OpenToWxapp 的esle')
9
8
  }
9
+ import global from '../common'
10
10
  console.log('window.shopGlobalSwitch:', JSON.stringify(window.shopGlobalSwitch))
11
11
  console.log('进入了 isH5AndJingGouMini && this.isH5OpenToWxapp 的if')
12
12
  this.jingGouMiniState = true
13
13
  window.isJingGouMiniViewState = true
14
14
  console.log('进入了 iwx?.miniProgram then 但是没有继续跳转的逻辑 ')
15
15
  global.info.isJingGouMiniViewState = true
16
16
  console.log('进入了 isH5AndJingGouMini && this.isH5OpenToWxapp 的esle')
17
17
  }