@conecli/cone-render 0.8.20 → 0.8.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 Taro from '@tarojs/taro'
1
+ import Taro from '@tarojs/taro'
2
2
 
3
3
  jdJumpToProduct(skuIds, logEventInfo) {
4
4
  skuIds = skuIds.toString().trim()
5
5
  const getSkuId = skuIds.indexOf(',') !== -1 ? skuIds.split(',')[0] : skuIds
6
6
  this.jdNavigateToNative({
7
7
  category: 'jump',
8
8
  des: 'productDetail',
9
9
  skuId: getSkuId,
10
10
  logEventInfo,
11
11
  })
12
12
  }
13
13
 
14
14
  jdJumpToOrderInfoView(wareId, wareNum = 1, logEventInfo) {
15
15
  this.jdNavigateToNative({
16
16
  category: 'jump',
17
17
  des: 'orderInfoView',
18
18
  wareId: `${wareId}`,
19
19
  wareNum: global.info.sysInfo.isIOS ? `${wareNum}` : wareNum,
20
20
  skuSource: 25,
21
21
  sourceType: 6,
22
22
  extFlag: '{}',
23
23
  logEventInfo,
24
24
  })
25
25
  }
26
26
 
27
27
  jdJumpToTryDetail(tryId) {
28
28
  this.jdNavigateToNative({
29
29
  category: 'jump',
30
30
  des: 'jdreactcommon',
31
31
  appname: 'JDReactNewProduct',
32
32
  modulename: 'JDReactNewProduct',
33
33
  param: {
34
34
  activityId: tryId,
35
35
  isNative: true,
36
36
  nativePage: 'jdtry_detail',
37
37
  transparentenable: true,
38
38
  },
39
39
  })
40
40
  }
41
41
 
42
42
  jdJumpToUnifieddetail(sourceInfo) {
43
43
  this.jdNavigateToNative(
44
44
  Object.assign(
45
45
  {},
46
46
  {
47
47
  category: 'jump',
48
48
  des: 'unifieddetail',
49
49
  },
50
50
  sourceInfo,
51
51
  ),
52
52
  )
53
53
  }
54
54
 
55
55
  jdJumpToVideoImmersion(sourceInfo) {
56
56
  this.jdNavigateToNative(
57
57
  Object.assign(
58
58
  {},
59
59
  {
60
60
  category: 'jump',
61
61
  des: 'VideoImmersion',
62
62
  },
63
63
  sourceInfo,
64
64
  ),
65
65
  )
66
66
  }
67
67
 
68
68
  jdJumpToShopMember(shopInfo) {
69
69
  this.jdNavigateToNative(
70
70
  Object.assign(
71
71
  {},
72
72
  {
73
73
  category: 'jump',
74
74
  des: 'jshopMember',
75
75
  followAward: '-1',
76
76
  },
77
77
  shopInfo,
78
78
  ),
79
79
  )
80
80
  }
81
81
 
82
82
  jdJumpToDongDongChatGroup(groupId, source = 'jdmini') {
83
83
  this.jdNavigateToNative({
84
84
  category: 'jump',
85
85
  des: 'dongdong_group_chat',
86
86
  source: source,
87
87
  groupId: `${groupId}`,
88
88
  })
89
89
  }
90
90
 
91
91
  jdJumpToDongDongChat(paramInfo = {}) {
92
92
  this.jdNavigateToNative(
93
93
  Object.assign(
94
94
  {},
95
95
  {
96
96
  category: 'jump',
97
97
  des: 'jd_dongdong_chat',
98
98
  venderId: global.info.queryInfo.venderId,
99
99
  entry: 'm_shop',
100
100
  },
101
101
  paramInfo,
102
102
  ),
103
103
  )
104
104
  }
105
105
 
106
106
  jdJumpToShopActivity(shopInfo) {
107
107
  const getParams = Object.assign(
108
108
  {},
109
109
  {
110
110
  category: 'jump',
111
111
  des: 'jshopActivity',
112
112
  shopId: global.info.queryInfo.shopId,
113
113
  venderId: global.info.queryInfo.venderId,
114
114
  },
115
115
  shopInfo,
116
116
  )
117
117
  getParams['projectId'] &&
118
118
  (getParams['projectId'] = `${getParams['projectId']}`)
119
119
  this.jdNavigateToNative(getParams)
120
120
  }
121
121
 
122
122
  jdJumpToShopActivityPage(shopInfo) {
123
123
  this.jdNavigateToNative(
124
124
  Object.assign(
125
125
  {},
126
126
  {
127
127
  category: 'jump',
128
128
  des: 'jshopActivityPage',
129
129
  shopId: global.info.queryInfo.shopId,
130
130
  title: global.info.queryInfo?.shopName,
131
131
  },
132
132
  shopInfo,
133
133
  ),
134
134
  )
135
135
  }
136
136
 
137
137
  jdJumpToShopDetail(shopInfo) {
138
138
  this.jdNavigateToNative(
139
139
  Object.assign(
140
140
  {},
141
141
  {
142
142
  category: 'jump',
143
143
  des: 'jshopDetail',
144
144
  },
145
145
  shopInfo,
146
146
  ),
147
147
  )
148
148
  }
149
149
 
150
150
  jdJumpToShopMemberCard(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
  jdJumpToTotalPromotion(shopInfo) {
171
171
  const { url, logEventInfo } = shopInfo
172
172
  if (this.isOpenJdAppUrl(url)) {
173
173
  const getOpenAppParams = this.jdOpenAppParams(url)
174
174
  console.log(
175
175
  'jd web 获取自定义openApp链接解析后的参数结果',
176
176
  getOpenAppParams,
177
177
  )
178
178
  if (getOpenAppParams) {
179
179
  this.jdNavigateToNative(
180
180
  Object.assign({}, getOpenAppParams, { logEventInfo }),
181
181
  )
182
182
  }
183
183
  } else {
184
184
  super.jdJumpToWeb(url, {
185
185
  ...logEventInfo,
186
186
  })
187
187
  }
188
188
  }
189
189
 
190
190
  jdJumpToShopSearch(pageInfo = {}) {
191
191
  const { keyword = '', ...otherPageInfo }: any = pageInfo
192
192
  const keywordInfo = {}
193
193
  if (keyword != '') {
194
194
  keywordInfo['keyWord'] = keyword
195
195
  keywordInfo['searchType'] = '4'
196
196
  }
197
197
  this.jdNavigateToNative(
198
198
  Object.assign(
199
199
  {},
200
200
  {
201
201
  category: 'jump',
202
202
  des: 'jshopProductList',
203
203
  pageId: '1',
204
204
  ...keywordInfo,
205
205
  },
206
206
  otherPageInfo,
207
207
  ),
208
208
  )
209
209
  }
210
210
 
211
211
  jdJumpToOrderList(logEventInfo = {}) {
212
212
  this.jdNavigateToNative(
213
213
  Object.assign(
214
214
  {},
215
215
  {
216
216
  category: 'jump',
217
217
  des: 'orderlist',
218
218
  from: 'dphycc',
219
219
  },
220
220
  logEventInfo,
221
221
  ),
222
222
  )
223
223
  }
224
224
 
225
225
  jdJumpToCouponSearchProductList(couponId, logEventInfo = {}) {
226
226
  this.jdNavigateToNative(
227
227
  Object.assign(
228
228
  {},
229
229
  {
230
230
  category: 'jump',
231
231
  des: 'productList',
232
232
  from: 'couponBatch',
233
233
  couponId: `${couponId}`,
234
234
  },
235
235
  logEventInfo,
236
236
  ),
237
237
  )
238
238
  }
239
239
 
240
240
  jdJumpToTabAllProduct(shopId, venderId, logEventInfo = {}) {
241
241
  this.jdNavigateToNative(
242
242
  Object.assign(
243
243
  {},
244
244
  {
245
245
  category: 'jump',
246
246
  des: 'jshopMain',
247
247
  jumpTab: 'allProduct',
248
248
  shopId: `${shopId}`,
249
249
  venderId: `${venderId}`,
250
250
  },
251
251
  logEventInfo,
252
252
  ),
253
253
  )
254
254
  }
255
255
 
256
256
  jdJumpToTabAllProductInner(shopId, venderId, logEventInfo = {}) {
257
257
  this.jdNavigateToNative(
258
258
  Object.assign(
259
259
  {},
260
260
  {
261
261
  category: 'jump',
262
262
  des: 'jshopMain',
263
263
  jumpTab: 'allProduct',
264
264
  shopId: `${shopId}`,
265
265
  venderId: `${venderId}`,
266
266
  operation: 'jumpTabInner',
267
267
  },
268
268
  logEventInfo,
269
269
  ),
270
270
  )
271
271
  }
272
272
 
273
273
  jdJumpToWeb(
274
274
  url,
275
275
  logEventInfo,
276
276
  successBack?: Function | undefined,
277
277
  failBack?: Function | undefined,
278
278
  ) {
279
279
  const changeUrl = /^\/\//.test(url) ? `https:${url}` : url
280
280
  this.jdNavigateToNative(
281
281
  {
282
282
  category: 'jump',
283
283
  des: 'm',
284
284
  url: encodeURIComponent(changeUrl),
285
285
  logEventInfo,
286
286
  },
287
287
  OpenAppHost,
288
288
  successBack,
289
289
  failBack,
290
290
  )
291
291
  }
292
292
 
293
293
  jdJumpToLive(clickUrlOrObj, logEventInfo) {
294
294
  if (typeof clickUrlOrObj === 'object') {
295
295
  this.jdNavigateToNative({
296
296
  category: 'jump',
297
297
  des: 'LivePlayerRoom',
298
298
  liveOrigin: '1',
299
299
  needLogin: '0',
300
300
  isNeedVideo: true,
301
301
  logEventInfo,
302
302
  ...clickUrlOrObj,
303
303
  })
304
304
  } else {
305
305
  const getShopLiveParams = this.jdOpenAppParams(clickUrlOrObj)
306
306
  console.log('getShopLiveParams=====', getShopLiveParams)
307
307
  if (typeof getShopLiveParams === 'object') {
308
308
  this.jdNavigateToNative({
309
309
  ...getShopLiveParams,
310
310
  logEventInfo,
311
311
  })
312
312
  }
313
313
  }
314
314
  }
315
315
 
316
316
  jdJumpToUgcContent(urlObj) {
317
317
  if (typeof urlObj === 'object') {
318
318
  this.jdNavigateToNative({
319
319
  category: 'jump',
320
320
  des: 'shareOrderUgcContent',
321
321
  channel: 'shopshangxin',
322
322
  cmtType: '10',
323
323
  isNeedVideo: true,
324
324
  ...urlObj,
325
325
  })
326
326
  } else {
327
327
  const getShopUgcParams = this.jdOpenAppParams(urlObj)
328
328
  console.log('getShopUgcParams=====', getShopUgcParams)
329
329
  getShopUgcParams && this.jdNavigateToNative(getShopUgcParams as String)
330
330
  }
331
331
  }
332
332
 
333
333
  jdJumpToSeckillNewBrand(brandId) {
334
334
  this.jdNavigateToNative({
335
335
  category: 'jump',
336
336
  des: 'seckillnewbrand',
337
337
  brandId: `${brandId}`,
338
338
  })
339
339
  }
340
340
 
341
341
  jdJumpToJshopDynamicDetail(info) {
342
342
  this.jdNavigateToNative({
343
343
  category: 'jump',
344
344
  des: 'jshopDynamicDetail',
345
345
  shopId: global.info.queryInfo.shopId,
346
346
  venderId: global.info.queryInfo.venderId,
347
347
  ...info,
348
348
  })
349
349
  }
350
350
 
351
351
  jdJumpToRankList(rankingId, rankType, logEventInfo) {
352
352
  this.jdNavigateToNative(
353
353
  Object.assign(
354
354
  {},
355
355
  {
356
356
  category: 'jump',
357
357
  des: 'jdreactcommon',
358
358
  modulename: 'JDReactRankingList',
359
359
  appname: 'JDReactRankingList',
360
360
  transparentenable: true,
361
361
  ishidden: true,
362
362
  param: {
363
363
  contentId: '' + rankingId,
364
364
  fromSkuId: '',
365
365
  detailPageType: '5',
366
366
  rankType: rankType || 10 + '',
367
367
  },
368
368
  logEventInfo,
369
369
  },
370
370
  ),
371
371
  )
372
372
  }
373
373
 
374
374
  jdJumpToFlashSaleTab(logEventInfo) {
375
375
  this.jdNavigateToNative(
376
376
  Object.assign(
377
377
  {},
378
378
  {
379
379
  category: 'jump',
380
380
  des: 'jshopMain',
381
381
  jumpTab: 'flashPurchase',
382
382
  shopId: global.info.queryInfo.shopId,
383
383
  venderId: global.info.queryInfo.venderId,
384
384
  sourceType: 'JDReactShopActivityTAB',
385
385
  sourceValue: '2',
386
386
  operation: 'jumpTabInner',
387
387
  logEventInfo,
388
388
  },
389
389
  ),
390
390
  )
391
391
  }
392
392
 
393
393
 
394
394
  jdJumpToShopMemberInfo(logEventInfo) {
395
395
  this.jdNavigateToNative(
396
396
  Object.assign(
397
397
  {},
398
398
  {
399
399
  category: 'jump',
400
400
  des: 'jdreactcommon',
401
401
  modulename: 'JDReactShopMember',
402
402
  appname: 'JDReactShopMember',
403
403
  ishidden: true,
404
404
  param: {
405
405
  page: 'memberInfo',
406
406
  shopId: global.info.queryInfo.shopId,
407
407
  venderId: global.info.queryInfo.venderId,
408
408
  },
409
409
  logEventInfo,
410
410
  },
411
411
  ),
412
412
  )
413
413
  }
414
414
 
415
415
  jdJumpToShopMemberBenefit(logEventInfo) {
416
416
  this.jdNavigateToNative(
417
417
  Object.assign(
418
418
  {},
419
419
  {
420
420
  category: 'jump',
421
421
  des: 'jdreactcommon',
422
422
  modulename: 'JDReactShopMember',
423
423
  appname: 'JDReactShopMember',
424
424
  ishidden: true,
425
425
  param: {
426
426
  page: 'benefitList',
427
427
  shopId: global.info.queryInfo.shopId,
428
428
  venderId: global.info.queryInfo.venderId,
429
429
  },
430
430
  logEventInfo,
431
431
  },
432
432
  ),
433
433
  )
434
434
  }
435
435
 
436
436
  jdJumpToShopMemberPointExchange(
437
437
  venderType,
438
438
  levelZeroMenuUrl,
439
439
  logEventInfo,
440
440
  ) {
441
441
  this.jdNavigateToNative(
442
442
  Object.assign(
443
443
  {},
444
444
  {
445
445
  category: 'jump',
446
446
  des: 'jdreactcommon',
447
447
  modulename: 'JDReactShopMember',
448
448
  appname: 'JDReactShopMember',
449
449
  ishidden: true,
450
450
  param: {
451
451
  page: 'pointsExchangePage',
452
452
  shopId: global.info.queryInfo.shopId,
453
453
  venderId: global.info.queryInfo.venderId,
454
454
  levelZeroMenuUrl,
455
455
  },
456
456
  logEventInfo,
457
457
  },
458
458
  ),
459
459
  )
460
460
  }
461
461
 
462
462
  jdJumpToShopMemberBonusPurchase(customerLevel, logEventInfo) {
463
463
  this.jdNavigateToNative(
464
464
  Object.assign(
465
465
  {},
466
466
  {
467
467
  category: 'jump',
468
468
  des: 'jdreactcommon',
469
469
  modulename: 'JDReactShopMember',
470
470
  appname: 'JDReactShopMember',
471
471
  ishidden: true,
472
472
  param: {
473
473
  page: 'bonusPurchase',
474
474
  shopId: global.info.queryInfo.shopId,
475
475
  venderId: global.info.queryInfo.venderId,
476
476
  customerLevel,
477
477
  },
478
478
  logEventInfo,
479
479
  },
480
480
  ),
481
481
  )
482
482
  }
483
483
 
484
484
  jdJumpToMyRedEnvelope(logEventInfo) {
485
485
  this.jdNavigateToNative(
486
486
  Object.assign(
487
487
  {},
488
488
  {
489
489
  category: "jump",
490
490
  des: "jdreactcommon",
491
491
  modulename: "JDReactMyRedEnvelope",
492
492
  appname: "JDReactMyRedEnvelope",
493
493
  ishidden: true,
494
494
  fromName: 2,
495
495
  needLogin: true,
496
496
  logEventInfo,
497
497
  },
498
498
  ),
499
499
  )
500
500
  }
501
501
 
502
502
  jdJumpToMyCoupon(logEventInfo) {
503
503
  this.jdNavigateToNative(
504
504
  Object.assign(
505
505
  {},
506
506
  {
507
507
  category:"jump",
508
508
  des:"mycoupon",
509
509
  logEventInfo,
510
510
  },
511
511
  ),
512
512
  )
513
513
  }
514
514
 
515
515
 
516
516
  jdJumpToMiniProgram({ vapptype, appId, path, param }) {
517
517
  const pageName = param['pageType'] || 'home'
518
518
  const nowMiniPath = `pages/${pageName}/index`
519
519
  if (appId === global.info.pageInfo.appId) {
520
520
  Taro.navigateTo({
521
521
  url: `/${nowMiniPath}?${objectToUrlEncode(param)}`,
522
522
  }).catch((err) => {
523
523
  console.warn('跳转小程序页面错误:', err)
524
524
  })
525
525
  } else {
526
526
  const params = {
527
527
  category: 'jump',
528
528
  des: 'jdmp',
529
529
  appId,
530
530
  vapptype,
531
531
  param,
532
532
  path: '',
533
533
  }
534
534
  if (path) {
535
535
  params.path = `${path}.html`
536
536
  }
537
537
  this.jdNavigateToNative(params)
538
538
  }
539
539
  }
540
540
 
541
541
  jdJumpToAppMiniProgram(
542
542
  path: string,
543
543
  param = {},
544
544
  successBack?: Function,
545
545
  failBack?: Function,
546
546
  ) {
547
547
  this.jdNavigateToNative(param, path, successBack, failBack)
548
548
  }
549
549
 
550
550
  clickEventLog(
551
551
  opts: JumpEventReportInterFace.OptEventLogParams = {},
552
552
  clickKey = 'click',
553
553
  ) {
554
554
  const { eventId, jsonParam, eventLevel = 3, skuId, ...otherParams } = opts
555
555
  if (eventId && jsonParam) {
556
556
  const { etModelInfo, logBaseInfo } = jsonParam
557
557
  const miniLogParams = {
558
558
  eid: eventId,
559
559
  elevel: eventLevel,
560
560
  eparam: JSON.stringify(logBaseInfo || jsonParam),
561
561
  ext: {
562
562
  et_model: JSON.stringify(etModelInfo || {}),
563
563
  },
564
564
  pageId: this.logPageId,
565
565
  pname: this.logPname,
566
566
  pparam: JSON.stringify(this.routerInfo.params),
567
567
  target: this.routerInfo.path,
568
568
  event: this.nativeEvent,
569
569
  ...otherParams,
570
570
  }
571
571
  if (clickKey === 'addToCart' && skuId) {
572
572
  miniLogParams['shoppingList'] = {
573
573
  [skuId]: 1,
574
574
  }
575
575
  }
576
576
  console.log('点击埋点参数对象', miniLogParams, clickKey)
577
577
  global.miniAppLogInstance &&
578
578
  global.miniAppLogInstance[clickKey](miniLogParams)
579
579
  } else {
580
580
  console.log('暂无埋点参数eventId和eventParam')
581
581
  }
582
582
  }
583
583
 
584
584
  exposureEventLog(opts: JumpEventReportInterFace.OptEventLogParams = {}) {
585
585
  return this.clickEventLog(opts, 'exposure')
586
586
  }
587
587
 
588
588
  jdJumpToSearch(shopId, suggestWord) {
589
589
  this.jdNavigateToNative({
590
590
  category: 'jump',
591
591
  des: 'jshopGuessWord',
592
592
  shopId: String(shopId),
593
593
  transparentEnable: true,
594
594
  suggestWord,
595
595
  })
596
596
  }
597
597
 
598
598
  jdJumpToMyMessageBox() {
599
599
  this.jdNavigateToNative({
600
600
  category: 'jump',
601
601
  des: 'myMessageBox',
602
602
  })
603
603
  }
604
604
 
605
605
  jdJumpToAppHome() {
606
606
  this.jdNavigateToNative({
607
607
  category: 'jump',
608
608
  des: 'HomePage',
609
609
  })
610
610
  }
611
611
 
612
612
  jdJumpToShopHomeDetail({ shopId, venderId }) {
613
613
  this.jdNavigateToNative({
614
614
  category: 'jump',
615
615
  des: 'jshopDetail',
616
616
  shopId: String(shopId),
617
617
  venderId: String(venderId),
618
618
  })
619
619
  }
@@ -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
- import * as device from './device'
1
+ import * as device from './device'