@conecli/cone-render 0.10.1-shop3.90 → 0.10.1-shop3.92

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';
2
1
  SHOP_MENU_ID_TYPE,
3
2
  SHOP_MENU_ID_QUERY_NAME,
4
3
  SECTION_HOME_TAB_TYPE,
5
4
  SECTION_HOME_TAB_NAME_TYPE,
6
5
  SECTION_HOME_TAB_QUERY_TYPE,
7
6
  SECTION_HOME_CUSTOM_TAB_TYPE_ARRAY,
8
7
  CHANNEL_TYPE,
9
8
  JDShopViewBusinessPathType,
10
9
  FloorModuleType,
11
10
  RemoteLoadFloorList,
12
11
  FLOOR_KIND,
13
12
  getBundleUrl,
14
13
  getBundleFileName,
15
14
  formatPackResult,
16
15
  getTaroVersion,
17
16
  /ipad/i.test(system) || (/android/i.test(system) && !/mobi|mini|fennec/i.test(system));
18
17
  key: string,
19
18
  value: string | object,
20
19
  successBack?: any,
21
20
  failBack?: any,
22
21
  try {
23
22
  if (isH5 && window && !window.localStorage) {
24
23
  console.log(`setTaroStorage key:${key} window.localStorage不存在:`);
25
24
  return Promise.resolve(null);
26
25
  }
27
26
  return Taro.setStorage({
28
27
  key: key,
29
28
  data: value,
30
29
  success: successBack,
31
30
  fail: failBack,
32
31
  }).catch((e) => {
33
32
  console.log(`setTaroStorage key:${key} 报错:`, e);
34
33
  return null;
35
34
  });
36
35
  } catch (e) {
37
36
  console.log(`setTaroStorage key:${key} 报错:`, e);
38
37
  return Promise.resolve(null);
39
38
  }
40
39
  try {
41
40
  if (isH5 && window && !window.localStorage) {
42
41
  console.log(`getTaroStorageKeyValue key:${key} window.localStorage不存在:`);
43
42
  return Promise.resolve(null);
44
43
  }
45
44
  return Taro.getStorageSync(key);
46
45
  } catch (e) {
47
46
  console.log(`getTaroStorageKeyValue key:${key} 报错:`, e);
48
47
  return null;
49
48
  }
50
49
  try {
51
50
  if (isH5 && window && !window.localStorage) {
52
51
  console.log(`removeTaroStorageKey key:${key} window.localStorage不存在:`);
53
52
  return Promise.resolve(null);
54
53
  }
55
54
  return Taro.removeStorage({
56
55
  key: key,
57
56
  }).catch((e) => {
58
57
  console.log(`removeTaroStorageKey key:${key} 报错:`, e);
59
58
  });
60
59
  } catch (e) {
61
60
  console.log(`removeTaroStorageKey key:${key} 报错:`, e);
62
61
  }
63
62
  try {
64
63
  if (isH5 && window && !window.localStorage) {
65
64
  console.log(`clearTaroStorageKey window.localStorage不存在`);
66
65
  return Promise.resolve(null);
67
66
  }
68
67
  return Taro.clearStorage().catch((e) => {
69
68
  console.log('clearTaroStorageKey报错:', e);
70
69
  });
71
70
  } catch (e) {
72
71
  console.log('clearTaroStorageKey报错:', e);
73
72
  }
74
73
  let hasChecked = false;
75
74
  if (isH5) {
76
75
  const avifCache = getTaroStorageKeyValue(KEY_AVIF);
77
76
  if (avifCache === null || avifCache === '' || forceUpdate) {
78
77
  hasChecked = true;
79
78
  const img = new Image();
80
79
  img.onload = function () {
81
80
  if (img.height > 0 && img.width > 0) {
82
81
  setTaroStorage(KEY_AVIF, '1');
83
82
  } else {
84
83
  setTaroStorage(KEY_AVIF, '0');
85
84
  }
86
85
  };
87
86
  img.onerror = () => {
88
87
  setTaroStorage(KEY_AVIF, '0');
89
88
  };
90
89
  img.src =
91
90
  'data:image/avif;base64,AAAAIGZ0eXBhdmlmAAAAAGF2aWZtaWYxbWlhZk1BMUIAAADybWV0YQAAAAAAAAAoaGRscgAAAAAAAAAAcGljdAAAAAAAAAAAAAAAAGxpYmF2aWYAAAAADnBpdG0AAAAAAAEAAAAeaWxvYwAAAABEAAABAAEAAAABAAABGgAAAB0AAAAoaWluZgAAAAAAAQAAABppbmZlAgAAAAABAABhdjAxQ29sb3IAAAAAamlwcnAAAABLaXBjbwAAABRpc3BlAAAAAAAAAAIAAAACAAAAEHBpeGkAAAAAAwgICAAAAAxhdjFDgQ0MAAAAABNjb2xybmNseAACAAIAAYAAAAAXaXBtYQAAAAAAAAABAAEEAQKDBAAAACVtZGF0EgAKCBgANogQEAwgMg8f8D///8WfhwB8+ErK42A=';
92
91
  }
93
92
  const webpCache = getTaroStorageKeyValue(KEY_WEBP);
94
93
  if (webpCache === null || webpCache === '' || forceUpdate) {
95
94
  hasChecked = true;
96
95
  const img = new Image();
97
96
  img.onload = function () {
98
97
  if (img.height > 0 && img.width > 0) {
99
98
  setTaroStorage(KEY_WEBP, '1');
100
99
  } else {
101
100
  setTaroStorage(KEY_WEBP, '0');
102
101
  }
103
102
  };
104
103
  img.onerror = () => {
105
104
  setTaroStorage(KEY_WEBP, '0');
106
105
  };
107
106
  img.src =
108
107
  'data:image/webp;base64,UklGRiQAAABXRUJQVlA4IBgAAAAwAQCdASoBAAEAAUAmJaQAA3AA/vz0AAA=';
109
108
  }
110
109
  }
111
110
  return hasChecked;
112
111
  const hasChecked = imageFormatSupport(false);
113
112
  if (!hasChecked) {
114
113
  setTimeout(imageFormatSupport, 5000);
115
114
  }
116
115
  const resultList: Array<any> = [],
117
116
  arrLen = arr.length;
118
117
  if (arrLen) {
119
118
  if (arrLen > size) {
120
119
  for (let i = 0; i < arrLen; i = i + size) {
121
120
  resultList.push(arr.slice(i, i + size));
122
121
  }
123
122
  } else {
124
123
  resultList.push(arr);
125
124
  }
126
125
  }
127
126
  return resultList;
128
127
  let _address = ids;
129
128
  const _areaAreaSplit = ids.split('.');
130
129
  const _areaAreaSplit2 = ids.split('_');
131
130
  _address = _areaAreaSplit.length === 2 ? _areaAreaSplit[0] : _address;
132
131
  _address = _areaAreaSplit2.length === 3 ? `${_areaAreaSplit2}_0` : _address;
133
132
  return _address;
134
133
  let paramStr = '';
135
134
  obj &&
136
135
  Object.keys(obj).forEach((key, index) => {
137
136
  const getValue = `${obj[key]}`.replace(/undefined/, '').replace(/null/, '');
138
137
  paramStr += `${index === 0 ? '' : '&'}${key}=${encodeURIComponent(getValue)}`;
139
138
  });
140
139
  return paramStr;
141
140
  const result = {};
142
141
  if (
143
142
  !urlOrQueryStr ||
144
143
  ('string' !== typeof urlOrQueryStr && String !== urlOrQueryStr.constructor)
145
144
  ) {
146
145
  return result;
147
146
  }
148
147
  if (urlOrQueryStr && urlOrQueryStr.indexOf('channelSource=appShop') > -1) {
149
148
  result['channelSource'] = 'appShop';
150
149
  }
151
150
  if (urlOrQueryStr.indexOf('?') > -1) {
152
151
  const queryStr = urlOrQueryStr.split('?');
153
152
  const queryItemList = queryStr && queryStr.length > 1 ? queryStr[1].split('&') : [];
154
153
  const queryItemListLen = queryItemList.length;
155
154
  queryItemListLen > 0 &&
156
155
  queryItemList.forEach((item) => {
157
156
  const thisItemList = item.split('=');
158
157
  result[thisItemList[0]] = thisItemList[1];
159
158
  });
160
159
  } else {
161
160
  const queryItemList =
162
161
  urlOrQueryStr.indexOf('&') > -1 ? urlOrQueryStr.split('&') : [urlOrQueryStr];
163
162
  const queryItemListLen = queryItemList.length;
164
163
  queryItemListLen > 0 &&
165
164
  queryItemList.forEach((item) => {
166
165
  const thisItemList = item.split('=');
167
166
  result[thisItemList[0]] = thisItemList[1];
168
167
  });
169
168
  }
170
169
  return result;
171
170
  url: string,
172
171
  size?: {
173
172
  w: number;
174
173
  h: number;
175
174
  },
176
175
  quality?: number,
177
176
  if (url && size) {
178
177
  const _w = Math.floor(size.w);
179
178
  const _h = Math.floor(size.h);
180
179
  if (url.match(/gif$/i)) {
181
180
  return url;
182
181
  } else {
183
182
  if (_w > 0 && _h > 0) {
184
183
  url = url.replace('jfs/', `s${_w}x${_h}_jfs/`);
185
184
  }
186
185
  url += quality != null ? `!q${quality}.dpg` : '.dpg';
187
186
  }
188
187
  }
189
188
  return url;
190
189
  if (url.match(/\.(jpg|png|dpg)$/i)) {
191
190
  const { width, height, quality } = jfsImgInfo;
192
191
  if (typeof width === 'number' || typeof height === 'number') {
193
192
  url = url.replace('/jfs/', `/s${Math.floor(width || 0)}x${Math.floor(height || 0)}_jfs/`);
194
193
  }
195
194
  if (typeof quality === 'number' && quality > 0 && quality < 100 && url.match(/\.jpg$/i)) {
196
195
  url += `!q${quality}.dpg`;
197
196
  }
198
197
  }
199
198
  return addHttps(url);
200
199
  if (imgUrl) {
201
200
  if (
202
201
  !imgUrl.match(
203
202
  /(storage\.360buyimg\.com)|(jdcloud-oss\.com)|(imgcps\.jd\.com)|((\w+)\.300hu\.com)|(thirdwx\.qlogo\.cn)|(!q)|gif|dpg$/i,
204
203
  )
205
204
  ) {
206
205
  if (!imgUrl.includes('360buyimg.com')) {
207
206
  imgUrl = '//m.360buyimg.com/cms/' + imgUrl;
208
207
  }
209
208
  if (quality != 100) imgUrl += /\.png/.test(imgUrl) ? '.dpg' : `!q${quality}`;
210
209
  }
211
210
  imgUrl = imgUrl.match(/^\/\//) ? `https:${imgUrl}` : imgUrl;
212
211
  }
213
212
  return imgUrl;
214
213
  const result = value % step;
215
214
  return result === 0 ? value : Math.ceil(value / step) * step;
216
215
  const MAX = 3.5;
217
216
  return Math.min(window?.devicePixelRatio ?? 2, MAX);
218
217
  isSkuImage: boolean;
219
218
  size: number;
220
219
  sizeScale: number;
221
220
  imgUrl: string,
222
221
  options: QualityOptions,
223
222
  isIgnoreOptimizeFromServer: boolean = false,
224
223
  if (!imgUrl) {
225
224
  console.error('The input parameter imageUrl for the getQualityImage() cannot be empty!');
226
225
  return imgUrl;
227
226
  }
228
227
  if (isIgnoreOptimizeFromServer) {
229
228
  imgUrl = imgUrl.replace(/\.(jpe?g|png).*/, '.$1');
230
229
  }
231
230
  if (!/^((https?):)?\/\//.test(imgUrl)) {
232
231
  imgUrl = '//m.360buyimg.com/cms/' + imgUrl;
233
232
  }
234
233
  const imgServerRegExp = /(img|m)\d{0,2}\.360buyimg\.com\/.*\.(jpe?g|png)/i;
235
234
  if (!imgServerRegExp.test(imgUrl)) {
236
235
  return imgUrl;
237
236
  }
238
237
  imgUrl = /^\/\//.test(imgUrl) ? `https:${imgUrl}` : imgUrl;
239
238
  const { isSkuImage, size, sizeScale = 1 } = options || {};
240
239
  const getSizeScale = Number(sizeScale);
241
240
  const needReduceSize = isSkuImage && size;
242
241
  if (needReduceSize) {
243
242
  const devicePixelRatio = getDevicePixelRatio();
244
243
  const useWidth = getValueByStep(size * devicePixelRatio, 40);
245
244
  const useHeight =
246
245
  getSizeScale > 0 && getSizeScale !== 1 ? Math.round(useWidth * Number(sizeScale)) : useWidth;
247
246
  imgUrl = imgUrl.replace(/\/[^\/]*jfs\//, `/s${useWidth}x${useHeight}_jfs/`);
248
247
  }
249
248
  const needCompress = !global?.info?.pageInfo?.isVipShop;
250
249
  const result = imgUrl.match(/\/\w+\.(jpe?g|png)$/);
251
250
  if (needCompress && result) {
252
251
  if (getAvifSupport() === '1') {
253
252
  imgUrl += '.avif';
254
253
  } else if (getWebpSupport() === '1') {
255
254
  imgUrl += '.webp';
256
255
  } else if (/jpe?g/.test(result[1])) {
257
256
  imgUrl += '!q80';
258
257
  }
259
258
  }
260
259
  if (needReduceSize) {
261
260
  imgUrl += '!z2';
262
261
  }
263
262
  return imgUrl;
264
263
  if (imgUrl) {
265
264
  if (
266
265
  !imgUrl.match(
267
266
  /(storage\.360buyimg\.com)|(jdcloud-oss\.com)|((\w+)\.300hu\.com)|(thirdwx\.qlogo\.cn)|(!q)|gif|dpg$/i,
268
267
  )
269
268
  ) {
270
269
  if (!imgUrl.includes('360buyimg.com')) {
271
270
  imgUrl = '//m.360buyimg.com/cms/' + imgUrl;
272
271
  }
273
272
  if (quality != 100) imgUrl += /\.png/.test(imgUrl) ? '.dpg' : `!q${quality}`;
274
273
  }
275
274
  imgUrl = imgUrl.match(/^\/\//) ? `https:${imgUrl}` : imgUrl;
276
275
  }
277
276
  return imgUrl;
278
277
  return getTaroStorageKeyValue(KEY_AVIF) || '0';
279
278
  return getTaroStorageKeyValue(KEY_WEBP) || '0';
280
279
  count: number,
281
280
  fixedNum = 1,
282
281
  unit = '万',
283
282
  maxNum = 10000,
284
283
  count = Number(count);
285
284
  const getMaxNum = count > 100000000 ? 100000000 : maxNum;
286
285
  const getUnit = count > 100000000 ? '亿' : unit;
287
286
  if (count >= getMaxNum) {
288
287
  return (count / getMaxNum).toFixed(fixedNum) + getUnit;
289
288
  }
290
289
  return count;
291
290
  const systemInfo: UtilsInterFace.taroGetSystemInfoSyncRes = getSystemInfo || {
292
291
  platform: '',
293
292
  model: '',
294
293
  system: '',
295
294
  };
296
295
  const isIOS = !!systemInfo.system.match(/ios/i);
297
296
  const isAndroid = !!systemInfo.system.match(/android/i);
298
297
  if (!systemInfo.statusBarHeight) {
299
298
  systemInfo.statusBarHeight = screenHeight - windowHeight - 20;
300
299
  systemInfo.navBarExtendHeight = 0;
301
300
  } else {
302
301
  if (isIOS) {
303
302
  systemInfo.navBarExtendHeight = 4;
304
303
  } else {
305
304
  systemInfo.navBarExtendHeight = 0;
306
305
  }
307
306
  }
308
307
  let rect = Taro.getMenuButtonBoundingClientRect ? Taro.getMenuButtonBoundingClientRect() : null;
309
308
  if (!rect || !rect.width || !rect.top || !rect.left || !rect.height) {
310
309
  let gap = 0;
311
310
  let width = 96;
312
311
  if (systemInfo.platform === 'android') {
313
312
  gap = 8;
314
313
  width = 96;
315
314
  } else if (systemInfo.platform === 'devtools') {
316
315
  if (isIOS) {
317
316
  gap = 5.5;
318
317
  } else {
319
318
  gap = 7.5;
320
319
  }
321
320
  } else {
322
321
  gap = 4;
323
322
  width = 88;
324
323
  }
325
324
  rect = {
326
325
  bottom: systemInfo.statusBarHeight + gap + 32,
327
326
  height: 32,
328
327
  left: systemInfo.windowWidth - width - 10,
329
328
  right: systemInfo.windowWidth - 10,
330
329
  top: systemInfo.statusBarHeight + gap,
331
330
  width,
332
331
  };
333
332
  }
334
333
  const gap = rect.top - systemInfo.statusBarHeight;
335
334
  systemInfo.navBarTopToStatusBar = gap;
336
335
  systemInfo.navBarHeight = 2 * gap + rect.height;
337
336
  systemInfo.capsulePosition = rect;
338
337
  systemInfo.isIOS = isIOS;
339
338
  systemInfo.isAndroid = isAndroid;
340
339
  return systemInfo;
341
340
  if (str.match(/^\/\//)) {
342
341
  str = 'https:' + str;
343
342
  }
344
343
  return str;
345
344
  dateTimeOrdate: Date | string | number | null,
346
345
  format = 'yyyy-MM-dd HH:mm:ss',
347
346
  noPadStart = {
348
347
  M: '0',
349
348
  d: '0',
350
349
  H: '0',
351
350
  m: '0',
352
351
  s: '0',
353
352
  },
354
353
  let dateResult = '';
355
354
  const padStarts = Object.assign(
356
355
  {
357
356
  M: '0',
358
357
  d: '0',
359
358
  H: '0',
360
359
  m: '0',
361
360
  s: '0',
362
361
  },
363
362
  noPadStart,
364
363
  );
365
364
  if (dateTimeOrdate) {
366
365
  let changeDateTimeOrdate = dateTimeOrdate;
367
366
  const getChangeDateTimeToNumber = Number(changeDateTimeOrdate);
368
367
  if (getChangeDateTimeToNumber) {
369
368
  changeDateTimeOrdate = getChangeDateTimeToNumber;
370
369
  } else {
371
370
  changeDateTimeOrdate = `${changeDateTimeOrdate}`.replace(/-/g, '/').replace(/\./g, '/');
372
371
  }
373
372
  const nowDate =
374
373
  dateTimeOrdate instanceof Date ? dateTimeOrdate : new Date(changeDateTimeOrdate);
375
374
  const dateMap = {
376
375
  y: `${nowDate.getFullYear()}`,
377
376
  M: `${nowDate.getMonth() + 1}`.padStart(2, padStarts['M']),
378
377
  d: `${nowDate.getDate()}`.padStart(2, padStarts['d']),
379
378
  H: `${nowDate.getHours()}`.padStart(2, padStarts['H']),
380
379
  m: `${nowDate.getMinutes()}`.padStart(2, padStarts['m']),
381
380
  s: `${nowDate.getSeconds()}`.padStart(2, padStarts['s']),
382
381
  };
383
382
  const regDate = new RegExp('y+|M+|d+|H+|m+|s+', 'g');
384
383
  const regYear = new RegExp('y');
385
384
  dateResult = format.replace(regDate, (v) => {
386
385
  let changeValue = v;
387
386
  if (regYear.test(changeValue)) {
388
387
  const thisYear = dateMap.y;
389
388
  const subValueLen = 4 - changeValue.length;
390
389
  changeValue = thisYear.substr(subValueLen);
391
390
  } else {
392
391
  const dateKey = v.substr(0, 1);
393
392
  changeValue = dateMap[dateKey];
394
393
  }
395
394
  return changeValue;
396
395
  });
397
396
  }
398
397
  return dateResult;
399
398
  let timer: any = null;
400
399
  let startTime = Date.now();
401
400
  return function () {
402
401
  const curTime = Date.now();
403
402
  const remaining = delay - (curTime - startTime);
404
403
  const context = this;
405
404
  const args = arguments;
406
405
  clearTimeout(timer);
407
406
  if (remaining <= 0) {
408
407
  func.apply(context, args);
409
408
  startTime = Date.now();
410
409
  } else {
411
410
  timer = setTimeout(func, remaining);
412
411
  }
413
412
  };
414
413
  let context, args, result;
415
414
  let timeout = null;
416
415
  let previous = 0;
417
416
  if (!options) options = {};
418
417
  const later = function () {
419
418
  previous = options.leading === false ? 0 : Date.now();
420
419
  timeout = null;
421
420
  result = func.apply(context, args);
422
421
  if (!timeout) context = args = null;
423
422
  };
424
423
  return function () {
425
424
  const now = Date.now();
426
425
  if (!previous && options.leading === false) previous = now;
427
426
  const remaining = wait - (now - previous);
428
427
  context = this;
429
428
  args = arguments;
430
429
  if (remaining <= 0 || remaining > wait) {
431
430
  if (timeout) {
432
431
  clearTimeout(timeout);
433
432
  timeout = null;
434
433
  }
435
434
  previous = now;
436
435
  result = func.apply(context, args);
437
436
  if (!timeout) context = args = null;
438
437
  } else if (!timeout && options.trailing !== false) {
439
438
  timeout = setTimeout(later, remaining);
440
439
  }
441
440
  return result;
442
441
  };
443
442
  let timer: any = null;
444
443
  return function () {
445
444
  const context: any = this;
446
445
  const args = arguments;
447
446
  timer && clearTimeout(timer);
448
447
  timer = setTimeout(function () {
449
448
  fn.apply(context, args);
450
449
  }, delay);
451
450
  };
452
451
  if (txt) {
453
452
  txt = txt.trim();
454
453
  const reg = new RegExp(/[\d-]+/);
455
454
  const res = reg.exec(txt);
456
455
  if (res && res.length > 0) {
457
456
  let tel = res[0];
458
457
  if (tel && delSeparator) {
459
458
  tel = tel.replace(/-/g, '');
460
459
  }
461
460
  return tel;
462
461
  }
463
462
  }
464
463
  return '';
465
464
  if (rgb) {
466
465
  const reg = /^(rgb|RGB)/;
467
466
  const color = rgb;
468
467
  if (reg.test(color)) {
469
468
  let strHex = '#';
470
469
  const colorArr = color.replace(/(?:\(|\)|rgb|RGB)*/g, '').split(',');
471
470
  for (let i = 0; i < colorArr.length; i++) {
472
471
  let hex = Number(colorArr[i]).toString(16);
473
472
  if (hex === '0') {
474
473
  hex += hex;
475
474
  }
476
475
  strHex += hex;
477
476
  }
478
477
  return strHex;
479
478
  } else {
480
479
  return String(color);
481
480
  }
482
481
  } else {
483
482
  return '';
484
483
  }
485
484
  if (hex) {
486
485
  const reg = /^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/;
487
486
  let color = hex.toLowerCase();
488
487
  if (reg.test(color)) {
489
488
  if (color.length === 4) {
490
489
  let colorNew = '#';
491
490
  for (let i = 1; i < 4; i += 1) {
492
491
  colorNew += color.slice(i, i + 1).concat(color.slice(i, i + 1));
493
492
  }
494
493
  color = colorNew;
495
494
  }
496
495
  const colorChange: number[] = [];
497
496
  for (let i = 1; i < 7; i += 2) {
498
497
  colorChange.push(parseInt('0x' + color.slice(i, i + 2)));
499
498
  }
500
499
  if (returnList) {
501
500
  return colorChange;
502
501
  } else {
503
502
  return 'RGB(' + colorChange.join(',') + ')';
504
503
  }
505
504
  } else {
506
505
  return color;
507
506
  }
508
507
  } else {
509
508
  return '';
510
509
  }
511
510
  const c = m - n + 1;
512
511
  const res = Math.floor(Math.random() * c + n);
513
512
  if (filterNum && filterNum == res) {
514
513
  console.log('随机数二次开始', res, filterNum);
515
514
  return getRandom(n, m, filterNum);
516
515
  } else {
517
516
  return res;
518
517
  }
519
518
  wqCookieStr: string;
520
519
  wqCookie: {
521
520
  pin?: string;
522
521
  visitkey?: string;
523
522
  [key: string]: any;
524
523
  };
525
524
 
526
525
  const {
527
526
  jdpin,
528
527
  pinStatus,
529
528
  visitkey,
530
529
  unionid,
531
530
  skey,
532
531
  __jda,
533
532
  __jdv,
534
533
  __wga,
535
534
  wid,
536
535
  wq_skey,
537
536
  wq_uin,
538
537
  wq_auth_token,
539
538
  wxapp_scene,
540
539
  wq_unionid,
541
540
  wxapp_openid,
542
541
  wxapp_version,
543
542
  wxapp_type,
544
543
  appType,
545
544
  lbs_addr,
546
545
  pt_key,
547
546
  } = cookie;
548
547
  const ret: string[] = [];
549
548
  const getUserCookieObj = {};
550
549
  const createUseCookieArr = [
551
550
  jdpin,
552
551
  pinStatus,
553
552
  visitkey,
554
553
  unionid,
555
554
  skey,
556
555
  __jda,
557
556
  __jdv,
558
557
  __wga,
559
558
  wid,
560
559
  wq_skey,
561
560
  wq_uin,
562
561
  wq_auth_token,
563
562
  wxapp_scene,
564
563
  wq_unionid,
565
564
  wxapp_openid,
566
565
  wxapp_version,
567
566
  wxapp_type,
568
567
  appType,
569
568
  lbs_addr,
570
569
  pt_key,
571
570
  ];
572
571
 
573
572
  createUseCookieArr.forEach((keyItem) => {
574
573
  if (keyItem && keyItem['name']) {
575
574
  let { name, value } = keyItem;
576
575
  name = name === 'jdpin' ? 'pin' : name;
577
576
  name === 'pin' && ret.push(`pt_pin=${encodeURIComponent(value)}`);
578
577
  ret.push(`${name}=${encodeURIComponent(value)}`);
579
578
  getUserCookieObj[name] = value;
580
579
  }
581
580
  });
582
581
  return {
583
582
  wqCookieStr: ret.join(';'),
584
583
  wqCookie: getUserCookieObj,
585
584
  };
586
585
  const getLayoutWidth = layoutWidth || global.info?.sysInfo?.windowWidth || windowWidth;
587
586
  const getNum = Number(num);
588
587
  return Math.round((getNum / widthSize) * getLayoutWidth);
589
588
  let checkState = false;
590
589
  const couponFloorModuleType = floorData?.floorExtInfo?.moduleFlag;
591
590
  if (couponFloorModuleType === FloorModuleType.COUPON) {
592
591
  try {
593
592
  const dataDefines = getFloorDataToDataDefines(floorData);
594
593
  const couponDataDefine = dataDefines
595
594
  ? dataDefines.filter((item) => {
596
595
  return item.type === 'coupon';
597
596
  })
598
597
  : [],
599
598
  couponList = couponDataDefine[0]?.nodeText?.data ? couponDataDefine[0]?.nodeText?.data : [],
600
599
  couponLength = couponList.length,
601
600
  numShowPerLine = couponDataDefine[0]?.nodeText?.numShowPerLine
602
601
  ? couponDataDefine[0]?.nodeText?.numShowPerLine
603
602
  : 0;
604
603
  if (numShowPerLine === 0 && couponLength > 3) {
605
604
  checkState = true;
606
605
  }
607
606
  } catch (e) {
608
607
  checkState = false;
609
608
  }
610
609
  return checkState;
611
610
  }
612
611
  const {
613
612
  containers = [],
614
613
  floors = [],
615
614
  homeExtInfo = {},
616
615
  clearFirstContaierMarginTop = false,
617
616
  } = pageData;
618
617
  console.log('dealShopContentData:', pageData, 'isvdev:', isvdev, 'homeExtInfo:', homeExtInfo);
619
618
  const getThisTimeKey = Date.now();
620
619
  let shopContentContainerListData = containers?.filter(
621
620
  (item) => (!isvdev && item.typeCode !== 'mShopHeader') || isvdev,
622
621
  );
623
622
  const shopContentFloorListData = floors?.filter(
624
623
  ({ floorPosition }) =>
625
624
  (!isvdev && floorPosition !== 'header' && floorPosition !== 'footer') || isvdev,
626
625
  );
627
626
  const unableIsvContainerListData = getUnableIsvContainerListData(
628
627
  shopContentFloorListData,
629
628
  shopContentContainerListData,
630
629
  exceptionReportFn,
631
630
  );
632
631
  shopContentContainerListData.forEach((item, index) => {
633
632
  item.key = `${getThisTimeKey + index}`;
634
633
  item.floors = [];
635
634
  item.includeUids &&
636
635
  item.includeUids.forEach((floorUid) => {
637
636
  const getFloorData = shopContentFloorListData.find(
638
637
  (floorItem) => floorItem.uid === floorUid,
639
638
  );
640
639
  if (getFloorData) {
641
640
  const changeFloorData = {
642
641
  containerId: item.containerId,
643
642
  containerIndex: index,
644
643
  ...getFloorData,
645
644
  };
646
645
  if (homeExtInfo?.pageThemColorType) {
647
646
  changeFloorData.pageThemColorType = homeExtInfo.pageThemColorType;
648
647
  }
649
648
  const getCheckMoreCouponState = checkCouponAndChangeContainerSetData(getFloorData);
650
649
  if (getCheckMoreCouponState) {
651
650
  item.marginLeft && (item.marginLeft = 0);
652
651
  item.marginRight && (item.marginRight = 0);
653
652
  item.borderRadius && (item.borderRadius = 0);
654
653
  }
655
654
  if (getFloorData?.floorExtInfo?.floorLoadWay === 2) {
656
655
  const getSysFloorToLoadTypeRes = isIsvFloorUseable(getFloorData, exceptionReportFn);
657
656
  !getSysFloorToLoadTypeRes && (getFloorData.floorExtInfo.floorLoadWay = 1);
658
657
  }
659
658
  item.floors.push(changeFloorData);
660
659
  }
661
660
  });
662
661
  if (
663
662
  ((!isvdev && index === 0) || (isvdev && index === 1)) &&
664
663
  item?.containerPosition == 'content' &&
665
664
  item?.marginBottom > 0 &&
666
665
  !clearFirstContaierMarginTop
667
666
  ) {
668
667
  item.marginTop = item.marginBottom;
669
668
  }
670
669
  });
671
670
  shopContentContainerListData = shopContentContainerListData.filter(
672
671
  (item) =>
673
672
  item.floors.length > 0 &&
674
673
  unableIsvContainerListData.every(
675
674
  (containerItem) => containerItem.containerId != item.containerId,
676
675
  ),
677
676
  );
678
677
  console.log(
679
678
  'dealShopContentData isWxMinAndWxapp:',
680
679
  isWxMinAndWxapp,
681
680
  'weappJumpToH5:',
682
681
  pageData?.homeExtInfo?.weappJumpToH5,
683
682
  );
684
683
  if (isProd && isWxMinAndWxapp) {
685
684
  shopContentContainerListData = shopContentContainerListData.filter(
686
685
  (item) =>
687
686
  item.floors.length > 0 &&
688
687
  !isIsvContainer(item.containerId, shopContentFloorListData, shopContentContainerListData),
689
688
  );
690
689
  }
691
690
  shopContentContainerListData = [].concat(shopContentContainerListData);
692
691
  return {
693
692
  shopContentContainerListData,
694
693
  shopContentFloorListData,
695
694
  };
696
695
  const changeOpts = {
697
696
  title: '',
698
697
  icon: 'success',
699
698
  duration: 1500,
700
699
  mask: true,
701
700
  ...options,
702
701
  };
703
702
  if (changeOpts.title.length > 7) {
704
703
  showNormalToast(options);
705
704
  } else {
706
705
  Taro.showToast(changeOpts as any);
707
706
  }
708
707
  const changeOpts = {
709
708
  title: '',
710
709
  icon: 'error',
711
710
  duration: 1500,
712
711
  mask: true,
713
712
  ...options,
714
713
  };
715
714
  if (changeOpts.title.length > 7) {
716
715
  showNormalToast(options);
717
716
  } else {
718
717
  Taro.showToast(changeOpts as any);
719
718
  }
720
719
  Taro.showToast({
721
720
  title: '',
722
721
  icon: 'none',
723
722
  duration: 1500,
724
723
  mask: true,
725
724
  ...options,
726
725
  });
727
726
  return Taro.showLoading({
728
727
  title: text,
729
728
  });
730
729
  return new Promise(() => {
731
730
  Taro.nextTick(() => {
732
731
  setTimeout(() => {
733
732
  Taro.hideLoading(options);
734
733
  }, 300);
735
734
  });
736
735
  });
737
736
  return CHANNEL_TYPE[JDShopViewBusinessPathType.HOME];
738
737
  const {
739
738
  tabActive = SECTION_HOME_TAB_NAME_TYPE[SECTION_HOME_TAB_TYPE.HOME_WELL_CHOSEN],
740
739
  sceneId,
741
740
  currentTabType,
742
741
  } = query;
743
742
  let changeTabActive = tabActive;
744
743
  if (sceneId) {
745
744
  if (isH5) {
746
745
  if (sceneId == '1002') {
747
746
  changeTabActive = SECTION_HOME_TAB_NAME_TYPE[SECTION_HOME_TAB_TYPE.HOME_PRODUCT];
748
747
  }
749
748
  else if (sceneId == '1003') {
750
749
  changeTabActive = SECTION_HOME_TAB_NAME_TYPE[SECTION_HOME_TAB_TYPE.HOME_ACTIVITY];
751
750
  }
752
751
  } else if (isWxMinAndWxapp) {
753
752
  if (sceneId == '1001' || sceneId == '1002') {
754
753
  changeTabActive = SECTION_HOME_TAB_NAME_TYPE[SECTION_HOME_TAB_TYPE.HOME_PRODUCT];
755
754
  }
756
755
  else if (sceneId == '1003') {
757
756
  changeTabActive = SECTION_HOME_TAB_NAME_TYPE[SECTION_HOME_TAB_TYPE.HOME_PROMOTION];
758
757
  }
759
758
  }
760
759
  }
761
760
  if (SECTION_HOME_TAB_QUERY_TYPE[changeTabActive]) {
762
761
  if (
763
762
  !isNaN(currentTabType) &&
764
763
  SECTION_HOME_CUSTOM_TAB_TYPE_ARRAY.indexOf(currentTabType) !== -1
765
764
  ) {
766
765
  return {
767
766
  menuType: SHOP_MENU_ID_TYPE.HOME,
768
767
  tabActiveType: currentTabType,
769
768
  queryMenuTabActiveStr: `${SHOP_MENU_ID_TYPE.HOME}@${currentTabType}`,
770
769
  };
771
770
  }
772
771
  return {
773
772
  menuType: SHOP_MENU_ID_TYPE.HOME,
774
773
  tabActiveType: SECTION_HOME_TAB_QUERY_TYPE[changeTabActive],
775
774
  queryMenuTabActiveStr: `${SHOP_MENU_ID_TYPE.HOME}@${SECTION_HOME_TAB_QUERY_TYPE[changeTabActive]}`,
776
775
  };
777
776
  } else if (SHOP_MENU_ID_QUERY_NAME[changeTabActive]) {
778
777
  return {
779
778
  menuType: SHOP_MENU_ID_QUERY_NAME[changeTabActive],
780
779
  tabActiveType: 0,
781
780
  queryMenuTabActiveStr: `${SHOP_MENU_ID_QUERY_NAME[changeTabActive]}@0`,
782
781
  };
783
782
  } else {
784
783
  const defaultMenuType = {
785
784
  menuType: SHOP_MENU_ID_TYPE.HOME,
786
785
  tabActiveType: SECTION_HOME_TAB_TYPE.HOME_WELL_CHOSEN,
787
786
  queryMenuTabActiveStr: `${SHOP_MENU_ID_TYPE.HOME}@${SECTION_HOME_TAB_TYPE.HOME_WELL_CHOSEN}`,
788
787
  };
789
788
  const isCustomTab = tabActive.indexOf(SECTION_HOME_TAB_NAME_TYPE.HOME_CUSTOM) !== -1;
790
789
  if (isCustomTab) {
791
790
  const customTabType = Number(tabActive.split('-')[2]);
792
791
  if (
793
792
  !isNaN(customTabType) &&
794
793
  SECTION_HOME_CUSTOM_TAB_TYPE_ARRAY.indexOf(customTabType) !== -1
795
794
  ) {
796
795
  return {
797
796
  menuType: SHOP_MENU_ID_TYPE.HOME,
798
797
  tabActiveType: customTabType,
799
798
  queryMenuTabActiveStr: `${SHOP_MENU_ID_TYPE.HOME}@${customTabType}`,
800
799
  };
801
800
  } else {
802
801
  return defaultMenuType;
803
802
  }
804
803
  } else {
805
804
  if (
806
805
  !isNaN(currentTabType) &&
807
806
  SECTION_HOME_CUSTOM_TAB_TYPE_ARRAY.indexOf(currentTabType) !== -1
808
807
  ) {
809
808
  return {
810
809
  menuType: SHOP_MENU_ID_TYPE.HOME,
811
810
  tabActiveType: currentTabType,
812
811
  queryMenuTabActiveStr: `${SHOP_MENU_ID_TYPE.HOME}@${currentTabType}`,
813
812
  };
814
813
  }
815
814
  return defaultMenuType;
816
815
  }
817
816
  }
818
817
  const deleteKeyList = [
819
818
  '$taroTimestamp',
820
819
  'cookie',
821
820
  'wdref',
822
821
  'navStart',
823
822
  'originOpts',
824
823
  'originParams',
825
824
  'originUrl',
826
825
  'referer',
827
826
  'stamp',
828
827
  'hybrid',
829
828
  'sr',
830
829
  'navh',
831
830
  'stath',
832
831
  ];
833
832
  let changeQueryData: any = { ...queryData };
834
833
  const qrCodeScene = changeQueryData?.scene ? changeQueryData?.scene : false;
835
834
  const sceneQuery =
836
835
  qrCodeScene && typeof qrCodeScene === 'string'
837
836
  ? parseQueryUrlString(decodeURIComponent(qrCodeScene))
838
837
  : {};
839
838
  changeQueryData = { ...changeQueryData, ...sceneQuery };
840
839
  deleteKeyList.forEach((key) => {
841
840
  changeQueryData[key] && delete changeQueryData[key];
842
841
  });
843
842
  Object.keys(changeQueryData).forEach((key) => {
844
843
  if (changeQueryData[key] && Array.isArray(changeQueryData[key])) {
845
844
  changeQueryData[key] = changeQueryData[key][0] || '';
846
845
  }
847
846
  });
848
847
  changeQueryData['shopid'] &&
849
848
  (changeQueryData['shopId'] = changeQueryData['shopid']) &&
850
849
  delete changeQueryData['shopid'];
851
850
  changeQueryData['venderid'] &&
852
851
  (changeQueryData['venderId'] = changeQueryData['venderid']) &&
853
852
  delete changeQueryData['venderid'];
854
853
  changeQueryData['vendorId'] &&
855
854
  (changeQueryData['venderId'] = changeQueryData['vendorId']) &&
856
855
  delete changeQueryData['vendorId'];
857
856
  changeQueryData['shopId'] &&
858
857
  changeQueryData['shopId'] === 'undefined' &&
859
858
  delete changeQueryData['shopId'];
860
859
  changeQueryData['venderId'] &&
861
860
  changeQueryData['venderId'] === 'undefined' &&
862
861
  delete changeQueryData['venderId'];
863
862
  return changeQueryData;
864
863
  let isUsable = false;
865
864
  const modularPackResult = floorData?.floorExtInfo?.modularPackResult;
866
865
  const modularPackResultObj = formatPackResult(modularPackResult);
867
866
  const bundleUrl = getBundleUrl(modularPackResultObj);
868
867
  const bundleFileName = getBundleFileName(modularPackResultObj);
869
868
  const taroVersion = getTaroVersion(modularPackResultObj);
870
869
  if (bundleUrl && bundleFileName) {
871
870
  isUsable = true;
872
871
  }
873
872
  if (!isUsable && typeof exceptionReportFn === 'function') {
874
873
  exceptionReportFn({
875
874
  eventName: 'business',
876
875
  errorName: `${NO_ENVIRONMENT_AND_PAGE_TYPE_FLAG}${
877
876
  floorData?.floorExtInfo?.floorKind === FLOOR_KIND.PDC_SYSTEM_MODULE
878
877
  ? SgmCustomCode.SYSTEMPDCMODULE_DATA
879
878
  : SgmCustomCode.REMOTEMODULE_DATA
880
879
  }`,
881
880
  errorMessage: JSON.stringify({
882
881
  msg: `店铺h5楼层隐藏不显示。原因:模块数据不完备,楼层过滤。`,
883
882
  floorIdx: floorData?.floorIdx,
884
883
  uid: floorData?.uid,
885
884
  shopId: floorData?.floorExtInfo?.shopId,
886
885
  moduleId: floorData?.moduleId,
887
886
  moduleDesignerType: floorData?.floorExtInfo?.moduleDesignerType,
888
887
  floorLoadWay: floorData?.floorExtInfo?.floorLoadWay,
889
888
  floorKind: floorData?.floorExtInfo?.floorKind,
890
889
  middleTemplateId: floorData?.middleTemplateId,
891
890
  modularPackResult: {
892
891
  bundleUrl,
893
892
  taroVersion,
894
893
  },
895
894
  }),
896
895
  });
897
896
  }
898
897
  return isUsable;
899
898
  const containerObj = containerList.find((item) => item.containerId === containerId);
900
899
  const blacklistModules = ['chatgroup'];
901
900
  return blacklistModules.includes(containerObj?.typeCode);
902
901
  const objContainer = containerListData.find((item) => item.containerId === containerId);
903
902
  return (
904
903
  objContainer?.includeUids?.some((itemUid) => {
905
904
  const objectFloor = floorListData.find((floorItem) => itemUid === floorItem.uid);
906
905
  return RemoteLoadFloorList.includes(objectFloor?.floorExtInfo?.moduleFlag);
907
906
  }) ?? false
908
907
  );
909
908
  const unableIsvFloorListData = floorListData.filter(
910
909
  (floorItem) =>
911
910
  RemoteLoadFloorList.includes(floorItem?.floorExtInfo?.moduleFlag) &&
912
911
  !isIsvFloorUseable(floorItem, exceptionReportFn),
913
912
  );
914
913
  const unableIsvFloorUidList = unableIsvFloorListData.map((floorItem) => floorItem.uid);
915
914
  const unableIsvContainerListData = containerListData.filter(
916
915
  (item) =>
917
916
  item.includeUids &&
918
917
  item.includeUids.every((itemUid) => unableIsvFloorUidList.indexOf(itemUid) != -1),
919
918
  );
920
919
  return unableIsvContainerListData;
921
920
  console.log('暂无对应渠道比较', compareVersion, nowVersion);
922
921
  return -2;
923
922
  return customObj;
924
923
  return customObj;
925
924
  return customObj;
926
925
  return customObj;
927
926
  return customObj;
928
927
  return /openApp\.jdMobile:\/\/virtual\?params=/i.test(openAppUrl);
929
928
  let getParams = false;
930
929
  if (isOpenJdAppUrl(openAppUrl)) {
931
930
  try {
932
931
  getParams = openAppUrl.replace(/openApp\.jdMobile:\/\/virtual\?params=/i, '');
933
932
  getParams = JSON.parse(String(getParams));
934
933
  } catch (e) {
935
934
  console.log(e);
936
935
  }
937
936
  }
938
937
  return getParams;
939
938
  const getLastParams = Object.assign({}, openParams);
940
939
  return `openapp.jdmobile://virtual?params=${JSON.stringify(getLastParams)}`;
941
940
  if (val === null || val === '' || typeof val === 'undefined') {
942
941
  return true;
943
942
  }
944
943
  return false;
945
944
  const {
946
945
  moduleId = 'none',
947
946
  entrance = 'none',
948
947
  sourceType = 'none',
949
948
  sourceValue = 'none',
950
949
  } = params;
951
950
  if (isIosDevice) {
952
951
  return `${moduleId}#${entrance}`;
953
952
  } else if (isAndroidDevice) {
954
953
  return `${sourceType}#${sourceValue}`;
955
954
  }
956
955
  return 'none#none';
957
956
  if (data && typeof data === 'object') {
958
957
  let getOpenAppData = { ...data };
959
958
  try {
960
959
  const { sourceInfo, designerId, templateId, source } = getOpenAppData;
961
960
  if (designerId && templateId) {
962
961
  getOpenAppData = Object.assign({}, getOpenAppData, {
963
962
  sourceInfo: {
964
963
  entrance: '设计师预览',
965
964
  },
966
965
  });
967
966
  } else if (sourceInfo) {
968
967
  const { entrance } = sourceInfo;
969
968
  getOpenAppData.sourceInfo.entrance = entrance && entrance.length > 0 ? entrance : '其他';
970
969
  } else if (source && !sourceInfo) {
971
970
  if (typeof source === 'object') {
972
971
  const { sourceType, entrance, sourceValue, moduleId } = source;
973
972
  getOpenAppData = Object.assign({}, getOpenAppData, {
974
973
  sourceInfo: {
975
974
  entrance: sourceType || entrance || '其他',
976
975
  moduleId: sourceValue || moduleId || '-100',
977
976
  },
978
977
  });
979
978
  if (sourceType === 'shop_from_product_detail' && sourceValue) {
980
979
  getOpenAppData.sourceSku = sourceValue;
981
980
  }
982
981
  } else {
983
982
  getOpenAppData = Object.assign({}, getOpenAppData, {
984
983
  sourceInfo: {
985
984
  entrance: source,
986
985
  },
987
986
  });
988
987
  }
989
988
  } else {
990
989
  getOpenAppData = Object.assign({}, getOpenAppData, {
991
990
  sourceInfo: {
992
991
  entrance: '其他',
993
992
  },
994
993
  });
995
994
  }
996
995
  } catch (e) {
997
996
  console.log(e);
998
997
  }
999
998
  return getOpenAppData;
1000
999
  }
1001
1000
  return data;
1002
1001
  return displayObj;
1003
1002
  if (typeof input === 'string') {
1004
1003
  try {
1005
1004
  return JSON.parse(input);
1006
1005
  } catch (e) {
1007
1006
  console.error('JSON解析失败', e);
1008
1007
  return {};
1009
1008
  }
1010
1009
  }
1011
1010
  return input || {};
1012
1011
  return false;
1013
1012
  const borderStyle: { [key: string]: any } = {};
1014
1013
  if (item?.borderRadius) {
1015
1014
  let borderTopRadius = 0;
1016
1015
  let borderBottomRadius = 0;
1017
1016
  if (index === 0) {
1018
1017
  borderTopRadius = item.borderRadius;
1019
1018
  borderBottomRadius = floorDataLen === 1 || item?.marginBottom !== 0 ? item.borderRadius : 0;
1020
1019
  } else if (index === floorDataLen - 1) {
1021
1020
  borderTopRadius = floorData[index - 1]?.marginBottom === 0 ? 0 : item.borderRadius;
1022
1021
  borderBottomRadius = item.borderRadius;
1023
1022
  } else {
1024
1023
  borderTopRadius = floorData[index - 1]?.marginBottom === 0 ? 0 : item.borderRadius;
1025
1024
  borderBottomRadius = item?.marginBottom === 0 ? 0 : item.borderRadius;
1026
1025
  }
1027
1026
  borderStyle.borderTopLeftRadius = item?.borderTopLeftRadius
1028
1027
  ? `${item?.borderTopLeftRadius}px`
1029
1028
  : `${borderTopRadius}px`;
1030
1029
  borderStyle.borderTopRightRadius = item?.borderTopRightRadius
1031
1030
  ? `${item?.borderTopRightRadius}px`
1032
1031
  : `${borderTopRadius}px`;
1033
1032
  borderStyle.borderBottomLeftRadius = `${borderBottomRadius}px`;
1034
1033
  borderStyle.borderBottomRightRadius = `${borderBottomRadius}px`;
1035
1034
  } else {
1036
1035
  borderStyle.borderTopLeftRadius = borderStyle?.borderTopLeftRadius || '0px';
1037
1036
  borderStyle.borderTopRightRadius = borderStyle?.borderTopRightRadius || '0px';
1038
1037
  borderStyle.borderBottomRightRadius = borderStyle?.borderBottomRightRadius || '0px';
1039
1038
  borderStyle.borderBottomLeftRadius = borderStyle?.borderBottomLeftRadius || '0px';
1040
1039
  }
1041
1040
  return borderStyle;
1042
1041
  isJdApp,
1043
1042
  isWxApp,
1044
1043
  isAscfApp,
1045
1044
  isIosDevice,
1046
1045
  isAndroidDevice,
1047
1046
  isJdAndIosDevice,
1048
1047
  isJdAndAndroidDevice,
1049
1048
  isWxMin,
1050
1049
  isWxMinAndWxapp,
1051
1050
  isJdMin,
1052
1051
  isMin,
1053
1052
  isJdMinAndHarmony,
1054
1053
  isH5,
1055
1054
  isH5AndJdShopView,
1056
1055
  isImageOptimizeEnable,
1057
1056
  isChartH5,
1058
1057
  isH5AndJdShopViewNativeScroll,
1059
1058
  isH5AndJdShopViewH5Scroll,
1060
1059
  isH5AndJdShopH5CustomScrollView,
1061
1060
  isWxMiniH5View,
1062
1061
  sliceArrToChunkList,
1063
1062
  dealAddress,
1064
1063
  objectToUrlEncode,
1065
1064
  parseQueryUrlString,
1066
1065
  setLowSmallPicUrl,
1067
1066
  getJfsImage,
1068
1067
  getQualityImage,
1069
1068
  countStringify,
1070
1069
  setTaroStorage,
1071
1070
  getTaroStorageKeyValue,
1072
1071
  removeTaroStorageKey,
1073
1072
  clearTaroStorageKey,
1074
1073
  getSystemInfos,
1075
1074
  addHttps,
1076
1075
  dateFormat,
1077
1076
  throttle,
1078
1077
  lodashThrottle,
1079
1078
  debounce,
1080
1079
  getTelephone,
1081
1080
  rgbToHex,
1082
1081
  hexToRgb,
1083
1082
  getRandom,
1084
1083
  getWxAppCookieStr,
1085
1084
  pxTransformFromData,
1086
1085
  dealShopContentData,
1087
1086
  showSuccessToast,
1088
1087
  showFailToast,
1089
1088
  showNormalToast,
1090
1089
  showShopLoading,
1091
1090
  hideShopLoading,
1092
1091
  getAppChannelType,
1093
1092
  formatTabActiveMenuType,
1094
1093
  filterUrlQueryData,
1095
1094
  getAvifSupport,
1096
1095
  getWebpSupport,
1097
1096
  isMemberPage,
1098
1097
  draCustomReport,
1099
1098
  remoteCustomReport,
1100
1099
  draInterfaceCustomReport,
1101
1100
  draBusinessCustomReport,
1102
1101
  draBusinessCustomLogReport,
1103
1102
  isOpenJdAppUrl,
1104
1103
  jdOpenAppParams,
1105
1104
  createJdOpenAppUrl,
1106
1105
  dealJdOpenAppData,
1107
1106
  isEmpty,
1108
1107
  getJdAppReportPageSource,
1109
1108
  isAppClassifyPage,
1110
1109
  getQualityImageNew,
1111
1110
  getQualityImageOld,
1112
1111
  isPc,
1113
1112
  isPcClassifyPage,
1114
1113
  ipLoc_djd,
1115
1114
  jdAppVersionCompare,
1116
1115
  dealNativePixelToCssPixel,
1117
1116
  isAppStowShop,
1118
1117
  isIpadDevice,
1119
1118
  getBorderStyle,
1120
1119
  isLanguageForEn,
1121
1120
  sColor,
1122
1121
  isTabletDevice,
1123
1122
  isInHarmonyBlacklistByModuleFlag,
1124
1123
  isJdLiteApp,
1125
1124
  isJdAppForNotMain,
1125
+ import Taro from '@tarojs/taro';
1126
1126
  SHOP_MENU_ID_TYPE,
1127
1127
  SHOP_MENU_ID_QUERY_NAME,
1128
1128
  SECTION_HOME_TAB_TYPE,
1129
1129
  SECTION_HOME_TAB_NAME_TYPE,
1130
1130
  SECTION_HOME_TAB_QUERY_TYPE,
1131
1131
  SECTION_HOME_CUSTOM_TAB_TYPE_ARRAY,
1132
1132
  CHANNEL_TYPE,
1133
1133
  JDShopViewBusinessPathType,
1134
1134
  FloorModuleType,
1135
1135
  RemoteLoadFloorList,
1136
1136
  FLOOR_KIND,
1137
1137
  getBundleUrl,
1138
1138
  getBundleFileName,
1139
1139
  formatPackResult,
1140
1140
  getTaroVersion,
1141
1141
  /ipad/i.test(system) || (/android/i.test(system) && !/mobi|mini|fennec/i.test(system));
1142
1142
  key: string,
1143
1143
  value: string | object,
1144
1144
  successBack?: any,
1145
1145
  failBack?: any,
1146
1146
  try {
1147
1147
  if (isH5 && window && !window.localStorage) {
1148
1148
  console.log(`setTaroStorage key:${key} window.localStorage不存在:`);
1149
1149
  return Promise.resolve(null);
1150
1150
  }
1151
1151
  return Taro.setStorage({
1152
1152
  key: key,
1153
1153
  data: value,
1154
1154
  success: successBack,
1155
1155
  fail: failBack,
1156
1156
  }).catch((e) => {
1157
1157
  console.log(`setTaroStorage key:${key} 报错:`, e);
1158
1158
  return null;
1159
1159
  });
1160
1160
  } catch (e) {
1161
1161
  console.log(`setTaroStorage key:${key} 报错:`, e);
1162
1162
  return Promise.resolve(null);
1163
1163
  }
1164
1164
  try {
1165
1165
  if (isH5 && window && !window.localStorage) {
1166
1166
  console.log(`getTaroStorageKeyValue key:${key} window.localStorage不存在:`);
1167
1167
  return Promise.resolve(null);
1168
1168
  }
1169
1169
  return Taro.getStorageSync(key);
1170
1170
  } catch (e) {
1171
1171
  console.log(`getTaroStorageKeyValue key:${key} 报错:`, e);
1172
1172
  return null;
1173
1173
  }
1174
1174
  try {
1175
1175
  if (isH5 && window && !window.localStorage) {
1176
1176
  console.log(`removeTaroStorageKey key:${key} window.localStorage不存在:`);
1177
1177
  return Promise.resolve(null);
1178
1178
  }
1179
1179
  return Taro.removeStorage({
1180
1180
  key: key,
1181
1181
  }).catch((e) => {
1182
1182
  console.log(`removeTaroStorageKey key:${key} 报错:`, e);
1183
1183
  });
1184
1184
  } catch (e) {
1185
1185
  console.log(`removeTaroStorageKey key:${key} 报错:`, e);
1186
1186
  }
1187
1187
  try {
1188
1188
  if (isH5 && window && !window.localStorage) {
1189
1189
  console.log(`clearTaroStorageKey window.localStorage不存在`);
1190
1190
  return Promise.resolve(null);
1191
1191
  }
1192
1192
  return Taro.clearStorage().catch((e) => {
1193
1193
  console.log('clearTaroStorageKey报错:', e);
1194
1194
  });
1195
1195
  } catch (e) {
1196
1196
  console.log('clearTaroStorageKey报错:', e);
1197
1197
  }
1198
1198
  let hasChecked = false;
1199
1199
  if (isH5) {
1200
1200
  const avifCache = getTaroStorageKeyValue(KEY_AVIF);
1201
1201
  if (avifCache === null || avifCache === '' || forceUpdate) {
1202
1202
  hasChecked = true;
1203
1203
  const img = new Image();
1204
1204
  img.onload = function () {
1205
1205
  if (img.height > 0 && img.width > 0) {
1206
1206
  setTaroStorage(KEY_AVIF, '1');
1207
1207
  } else {
1208
1208
  setTaroStorage(KEY_AVIF, '0');
1209
1209
  }
1210
1210
  };
1211
1211
  img.onerror = () => {
1212
1212
  setTaroStorage(KEY_AVIF, '0');
1213
1213
  };
1214
1214
  img.src =
1215
1215
  'data:image/avif;base64,AAAAIGZ0eXBhdmlmAAAAAGF2aWZtaWYxbWlhZk1BMUIAAADybWV0YQAAAAAAAAAoaGRscgAAAAAAAAAAcGljdAAAAAAAAAAAAAAAAGxpYmF2aWYAAAAADnBpdG0AAAAAAAEAAAAeaWxvYwAAAABEAAABAAEAAAABAAABGgAAAB0AAAAoaWluZgAAAAAAAQAAABppbmZlAgAAAAABAABhdjAxQ29sb3IAAAAAamlwcnAAAABLaXBjbwAAABRpc3BlAAAAAAAAAAIAAAACAAAAEHBpeGkAAAAAAwgICAAAAAxhdjFDgQ0MAAAAABNjb2xybmNseAACAAIAAYAAAAAXaXBtYQAAAAAAAAABAAEEAQKDBAAAACVtZGF0EgAKCBgANogQEAwgMg8f8D///8WfhwB8+ErK42A=';
1216
1216
  }
1217
1217
  const webpCache = getTaroStorageKeyValue(KEY_WEBP);
1218
1218
  if (webpCache === null || webpCache === '' || forceUpdate) {
1219
1219
  hasChecked = true;
1220
1220
  const img = new Image();
1221
1221
  img.onload = function () {
1222
1222
  if (img.height > 0 && img.width > 0) {
1223
1223
  setTaroStorage(KEY_WEBP, '1');
1224
1224
  } else {
1225
1225
  setTaroStorage(KEY_WEBP, '0');
1226
1226
  }
1227
1227
  };
1228
1228
  img.onerror = () => {
1229
1229
  setTaroStorage(KEY_WEBP, '0');
1230
1230
  };
1231
1231
  img.src =
1232
1232
  'data:image/webp;base64,UklGRiQAAABXRUJQVlA4IBgAAAAwAQCdASoBAAEAAUAmJaQAA3AA/vz0AAA=';
1233
1233
  }
1234
1234
  }
1235
1235
  return hasChecked;
1236
1236
  const hasChecked = imageFormatSupport(false);
1237
1237
  if (!hasChecked) {
1238
1238
  setTimeout(imageFormatSupport, 5000);
1239
1239
  }
1240
1240
  const resultList: Array<any> = [],
1241
1241
  arrLen = arr.length;
1242
1242
  if (arrLen) {
1243
1243
  if (arrLen > size) {
1244
1244
  for (let i = 0; i < arrLen; i = i + size) {
1245
1245
  resultList.push(arr.slice(i, i + size));
1246
1246
  }
1247
1247
  } else {
1248
1248
  resultList.push(arr);
1249
1249
  }
1250
1250
  }
1251
1251
  return resultList;
1252
1252
  let _address = ids;
1253
1253
  const _areaAreaSplit = ids.split('.');
1254
1254
  const _areaAreaSplit2 = ids.split('_');
1255
1255
  _address = _areaAreaSplit.length === 2 ? _areaAreaSplit[0] : _address;
1256
1256
  _address = _areaAreaSplit2.length === 3 ? `${_areaAreaSplit2}_0` : _address;
1257
1257
  return _address;
1258
1258
  let paramStr = '';
1259
1259
  obj &&
1260
1260
  Object.keys(obj).forEach((key, index) => {
1261
1261
  const getValue = `${obj[key]}`.replace(/undefined/, '').replace(/null/, '');
1262
1262
  paramStr += `${index === 0 ? '' : '&'}${key}=${encodeURIComponent(getValue)}`;
1263
1263
  });
1264
1264
  return paramStr;
1265
1265
  const result = {};
1266
1266
  if (
1267
1267
  !urlOrQueryStr ||
1268
1268
  ('string' !== typeof urlOrQueryStr && String !== urlOrQueryStr.constructor)
1269
1269
  ) {
1270
1270
  return result;
1271
1271
  }
1272
1272
  if (urlOrQueryStr && urlOrQueryStr.indexOf('channelSource=appShop') > -1) {
1273
1273
  result['channelSource'] = 'appShop';
1274
1274
  }
1275
1275
  if (urlOrQueryStr.indexOf('?') > -1) {
1276
1276
  const queryStr = urlOrQueryStr.split('?');
1277
1277
  const queryItemList = queryStr && queryStr.length > 1 ? queryStr[1].split('&') : [];
1278
1278
  const queryItemListLen = queryItemList.length;
1279
1279
  queryItemListLen > 0 &&
1280
1280
  queryItemList.forEach((item) => {
1281
1281
  const thisItemList = item.split('=');
1282
1282
  result[thisItemList[0]] = thisItemList[1];
1283
1283
  });
1284
1284
  } else {
1285
1285
  const queryItemList =
1286
1286
  urlOrQueryStr.indexOf('&') > -1 ? urlOrQueryStr.split('&') : [urlOrQueryStr];
1287
1287
  const queryItemListLen = queryItemList.length;
1288
1288
  queryItemListLen > 0 &&
1289
1289
  queryItemList.forEach((item) => {
1290
1290
  const thisItemList = item.split('=');
1291
1291
  result[thisItemList[0]] = thisItemList[1];
1292
1292
  });
1293
1293
  }
1294
1294
  return result;
1295
1295
  url: string,
1296
1296
  size?: {
1297
1297
  w: number;
1298
1298
  h: number;
1299
1299
  },
1300
1300
  quality?: number,
1301
1301
  if (url && size) {
1302
1302
  const _w = Math.floor(size.w);
1303
1303
  const _h = Math.floor(size.h);
1304
1304
  if (url.match(/gif$/i)) {
1305
1305
  return url;
1306
1306
  } else {
1307
1307
  if (_w > 0 && _h > 0) {
1308
1308
  url = url.replace('jfs/', `s${_w}x${_h}_jfs/`);
1309
1309
  }
1310
1310
  url += quality != null ? `!q${quality}.dpg` : '.dpg';
1311
1311
  }
1312
1312
  }
1313
1313
  return url;
1314
1314
  if (url.match(/\.(jpg|png|dpg)$/i)) {
1315
1315
  const { width, height, quality } = jfsImgInfo;
1316
1316
  if (typeof width === 'number' || typeof height === 'number') {
1317
1317
  url = url.replace('/jfs/', `/s${Math.floor(width || 0)}x${Math.floor(height || 0)}_jfs/`);
1318
1318
  }
1319
1319
  if (typeof quality === 'number' && quality > 0 && quality < 100 && url.match(/\.jpg$/i)) {
1320
1320
  url += `!q${quality}.dpg`;
1321
1321
  }
1322
1322
  }
1323
1323
  return addHttps(url);
1324
1324
  if (imgUrl) {
1325
1325
  if (
1326
1326
  !imgUrl.match(
1327
1327
  /(storage\.360buyimg\.com)|(jdcloud-oss\.com)|(imgcps\.jd\.com)|((\w+)\.300hu\.com)|(thirdwx\.qlogo\.cn)|(!q)|gif|dpg$/i,
1328
1328
  )
1329
1329
  ) {
1330
1330
  if (!imgUrl.includes('360buyimg.com')) {
1331
1331
  imgUrl = '//m.360buyimg.com/cms/' + imgUrl;
1332
1332
  }
1333
1333
  if (quality != 100) imgUrl += /\.png/.test(imgUrl) ? '.dpg' : `!q${quality}`;
1334
1334
  }
1335
1335
  imgUrl = imgUrl.match(/^\/\//) ? `https:${imgUrl}` : imgUrl;
1336
1336
  }
1337
1337
  return imgUrl;
1338
1338
  const result = value % step;
1339
1339
  return result === 0 ? value : Math.ceil(value / step) * step;
1340
1340
  const MAX = 3.5;
1341
1341
  return Math.min(window?.devicePixelRatio ?? 2, MAX);
1342
1342
  isSkuImage: boolean;
1343
1343
  size: number;
1344
1344
  sizeScale: number;
1345
1345
  imgUrl: string,
1346
1346
  options: QualityOptions,
1347
1347
  isIgnoreOptimizeFromServer: boolean = false,
1348
1348
  if (!imgUrl) {
1349
1349
  console.error('The input parameter imageUrl for the getQualityImage() cannot be empty!');
1350
1350
  return imgUrl;
1351
1351
  }
1352
1352
  if (isIgnoreOptimizeFromServer) {
1353
1353
  imgUrl = imgUrl.replace(/\.(jpe?g|png).*/, '.$1');
1354
1354
  }
1355
1355
  if (!/^((https?):)?\/\//.test(imgUrl)) {
1356
1356
  imgUrl = '//m.360buyimg.com/cms/' + imgUrl;
1357
1357
  }
1358
1358
  const imgServerRegExp = /(img|m)\d{0,2}\.360buyimg\.com\/.*\.(jpe?g|png)/i;
1359
1359
  if (!imgServerRegExp.test(imgUrl)) {
1360
1360
  return imgUrl;
1361
1361
  }
1362
1362
  imgUrl = /^\/\//.test(imgUrl) ? `https:${imgUrl}` : imgUrl;
1363
1363
  const { isSkuImage, size, sizeScale = 1 } = options || {};
1364
1364
  const getSizeScale = Number(sizeScale);
1365
1365
  const needReduceSize = isSkuImage && size;
1366
1366
  if (needReduceSize) {
1367
1367
  const devicePixelRatio = getDevicePixelRatio();
1368
1368
  const useWidth = getValueByStep(size * devicePixelRatio, 40);
1369
1369
  const useHeight =
1370
1370
  getSizeScale > 0 && getSizeScale !== 1 ? Math.round(useWidth * Number(sizeScale)) : useWidth;
1371
1371
  imgUrl = imgUrl.replace(/\/[^\/]*jfs\//, `/s${useWidth}x${useHeight}_jfs/`);
1372
1372
  }
1373
1373
  const needCompress = !global?.info?.pageInfo?.isVipShop;
1374
1374
  const result = imgUrl.match(/\/\w+\.(jpe?g|png)$/);
1375
1375
  if (needCompress && result) {
1376
1376
  if (getAvifSupport() === '1') {
1377
1377
  imgUrl += '.avif';
1378
1378
  } else if (getWebpSupport() === '1') {
1379
1379
  imgUrl += '.webp';
1380
1380
  } else if (/jpe?g/.test(result[1])) {
1381
1381
  imgUrl += '!q80';
1382
1382
  }
1383
1383
  }
1384
1384
  if (needReduceSize) {
1385
1385
  imgUrl += '!z2';
1386
1386
  }
1387
1387
  return imgUrl;
1388
1388
  if (imgUrl) {
1389
1389
  if (
1390
1390
  !imgUrl.match(
1391
1391
  /(storage\.360buyimg\.com)|(jdcloud-oss\.com)|((\w+)\.300hu\.com)|(thirdwx\.qlogo\.cn)|(!q)|gif|dpg$/i,
1392
1392
  )
1393
1393
  ) {
1394
1394
  if (!imgUrl.includes('360buyimg.com')) {
1395
1395
  imgUrl = '//m.360buyimg.com/cms/' + imgUrl;
1396
1396
  }
1397
1397
  if (quality != 100) imgUrl += /\.png/.test(imgUrl) ? '.dpg' : `!q${quality}`;
1398
1398
  }
1399
1399
  imgUrl = imgUrl.match(/^\/\//) ? `https:${imgUrl}` : imgUrl;
1400
1400
  }
1401
1401
  return imgUrl;
1402
1402
  return getTaroStorageKeyValue(KEY_AVIF) || '0';
1403
1403
  return getTaroStorageKeyValue(KEY_WEBP) || '0';
1404
1404
  count: number,
1405
1405
  fixedNum = 1,
1406
1406
  unit = '万',
1407
1407
  maxNum = 10000,
1408
1408
  count = Number(count);
1409
1409
  const getMaxNum = count > 100000000 ? 100000000 : maxNum;
1410
1410
  const getUnit = count > 100000000 ? '亿' : unit;
1411
1411
  if (count >= getMaxNum) {
1412
1412
  return (count / getMaxNum).toFixed(fixedNum) + getUnit;
1413
1413
  }
1414
1414
  return count;
1415
1415
  const systemInfo: UtilsInterFace.taroGetSystemInfoSyncRes = getSystemInfo || {
1416
1416
  platform: '',
1417
1417
  model: '',
1418
1418
  system: '',
1419
1419
  };
1420
1420
  const isIOS = !!systemInfo.system.match(/ios/i);
1421
1421
  const isAndroid = !!systemInfo.system.match(/android/i);
1422
1422
  if (!systemInfo.statusBarHeight) {
1423
1423
  systemInfo.statusBarHeight = screenHeight - windowHeight - 20;
1424
1424
  systemInfo.navBarExtendHeight = 0;
1425
1425
  } else {
1426
1426
  if (isIOS) {
1427
1427
  systemInfo.navBarExtendHeight = 4;
1428
1428
  } else {
1429
1429
  systemInfo.navBarExtendHeight = 0;
1430
1430
  }
1431
1431
  }
1432
1432
  let rect = Taro.getMenuButtonBoundingClientRect ? Taro.getMenuButtonBoundingClientRect() : null;
1433
1433
  if (!rect || !rect.width || !rect.top || !rect.left || !rect.height) {
1434
1434
  let gap = 0;
1435
1435
  let width = 96;
1436
1436
  if (systemInfo.platform === 'android') {
1437
1437
  gap = 8;
1438
1438
  width = 96;
1439
1439
  } else if (systemInfo.platform === 'devtools') {
1440
1440
  if (isIOS) {
1441
1441
  gap = 5.5;
1442
1442
  } else {
1443
1443
  gap = 7.5;
1444
1444
  }
1445
1445
  } else {
1446
1446
  gap = 4;
1447
1447
  width = 88;
1448
1448
  }
1449
1449
  rect = {
1450
1450
  bottom: systemInfo.statusBarHeight + gap + 32,
1451
1451
  height: 32,
1452
1452
  left: systemInfo.windowWidth - width - 10,
1453
1453
  right: systemInfo.windowWidth - 10,
1454
1454
  top: systemInfo.statusBarHeight + gap,
1455
1455
  width,
1456
1456
  };
1457
1457
  }
1458
1458
  const gap = rect.top - systemInfo.statusBarHeight;
1459
1459
  systemInfo.navBarTopToStatusBar = gap;
1460
1460
  systemInfo.navBarHeight = 2 * gap + rect.height;
1461
1461
  systemInfo.capsulePosition = rect;
1462
1462
  systemInfo.isIOS = isIOS;
1463
1463
  systemInfo.isAndroid = isAndroid;
1464
1464
  return systemInfo;
1465
1465
  if (str.match(/^\/\//)) {
1466
1466
  str = 'https:' + str;
1467
1467
  }
1468
1468
  return str;
1469
1469
  dateTimeOrdate: Date | string | number | null,
1470
1470
  format = 'yyyy-MM-dd HH:mm:ss',
1471
1471
  noPadStart = {
1472
1472
  M: '0',
1473
1473
  d: '0',
1474
1474
  H: '0',
1475
1475
  m: '0',
1476
1476
  s: '0',
1477
1477
  },
1478
1478
  let dateResult = '';
1479
1479
  const padStarts = Object.assign(
1480
1480
  {
1481
1481
  M: '0',
1482
1482
  d: '0',
1483
1483
  H: '0',
1484
1484
  m: '0',
1485
1485
  s: '0',
1486
1486
  },
1487
1487
  noPadStart,
1488
1488
  );
1489
1489
  if (dateTimeOrdate) {
1490
1490
  let changeDateTimeOrdate = dateTimeOrdate;
1491
1491
  const getChangeDateTimeToNumber = Number(changeDateTimeOrdate);
1492
1492
  if (getChangeDateTimeToNumber) {
1493
1493
  changeDateTimeOrdate = getChangeDateTimeToNumber;
1494
1494
  } else {
1495
1495
  changeDateTimeOrdate = `${changeDateTimeOrdate}`.replace(/-/g, '/').replace(/\./g, '/');
1496
1496
  }
1497
1497
  const nowDate =
1498
1498
  dateTimeOrdate instanceof Date ? dateTimeOrdate : new Date(changeDateTimeOrdate);
1499
1499
  const dateMap = {
1500
1500
  y: `${nowDate.getFullYear()}`,
1501
1501
  M: `${nowDate.getMonth() + 1}`.padStart(2, padStarts['M']),
1502
1502
  d: `${nowDate.getDate()}`.padStart(2, padStarts['d']),
1503
1503
  H: `${nowDate.getHours()}`.padStart(2, padStarts['H']),
1504
1504
  m: `${nowDate.getMinutes()}`.padStart(2, padStarts['m']),
1505
1505
  s: `${nowDate.getSeconds()}`.padStart(2, padStarts['s']),
1506
1506
  };
1507
1507
  const regDate = new RegExp('y+|M+|d+|H+|m+|s+', 'g');
1508
1508
  const regYear = new RegExp('y');
1509
1509
  dateResult = format.replace(regDate, (v) => {
1510
1510
  let changeValue = v;
1511
1511
  if (regYear.test(changeValue)) {
1512
1512
  const thisYear = dateMap.y;
1513
1513
  const subValueLen = 4 - changeValue.length;
1514
1514
  changeValue = thisYear.substr(subValueLen);
1515
1515
  } else {
1516
1516
  const dateKey = v.substr(0, 1);
1517
1517
  changeValue = dateMap[dateKey];
1518
1518
  }
1519
1519
  return changeValue;
1520
1520
  });
1521
1521
  }
1522
1522
  return dateResult;
1523
1523
  let timer: any = null;
1524
1524
  let startTime = Date.now();
1525
1525
  return function () {
1526
1526
  const curTime = Date.now();
1527
1527
  const remaining = delay - (curTime - startTime);
1528
1528
  const context = this;
1529
1529
  const args = arguments;
1530
1530
  clearTimeout(timer);
1531
1531
  if (remaining <= 0) {
1532
1532
  func.apply(context, args);
1533
1533
  startTime = Date.now();
1534
1534
  } else {
1535
1535
  timer = setTimeout(func, remaining);
1536
1536
  }
1537
1537
  };
1538
1538
  let context, args, result;
1539
1539
  let timeout = null;
1540
1540
  let previous = 0;
1541
1541
  if (!options) options = {};
1542
1542
  const later = function () {
1543
1543
  previous = options.leading === false ? 0 : Date.now();
1544
1544
  timeout = null;
1545
1545
  result = func.apply(context, args);
1546
1546
  if (!timeout) context = args = null;
1547
1547
  };
1548
1548
  return function () {
1549
1549
  const now = Date.now();
1550
1550
  if (!previous && options.leading === false) previous = now;
1551
1551
  const remaining = wait - (now - previous);
1552
1552
  context = this;
1553
1553
  args = arguments;
1554
1554
  if (remaining <= 0 || remaining > wait) {
1555
1555
  if (timeout) {
1556
1556
  clearTimeout(timeout);
1557
1557
  timeout = null;
1558
1558
  }
1559
1559
  previous = now;
1560
1560
  result = func.apply(context, args);
1561
1561
  if (!timeout) context = args = null;
1562
1562
  } else if (!timeout && options.trailing !== false) {
1563
1563
  timeout = setTimeout(later, remaining);
1564
1564
  }
1565
1565
  return result;
1566
1566
  };
1567
1567
  let timer: any = null;
1568
1568
  return function () {
1569
1569
  const context: any = this;
1570
1570
  const args = arguments;
1571
1571
  timer && clearTimeout(timer);
1572
1572
  timer = setTimeout(function () {
1573
1573
  fn.apply(context, args);
1574
1574
  }, delay);
1575
1575
  };
1576
1576
  if (txt) {
1577
1577
  txt = txt.trim();
1578
1578
  const reg = new RegExp(/[\d-]+/);
1579
1579
  const res = reg.exec(txt);
1580
1580
  if (res && res.length > 0) {
1581
1581
  let tel = res[0];
1582
1582
  if (tel && delSeparator) {
1583
1583
  tel = tel.replace(/-/g, '');
1584
1584
  }
1585
1585
  return tel;
1586
1586
  }
1587
1587
  }
1588
1588
  return '';
1589
1589
  if (rgb) {
1590
1590
  const reg = /^(rgb|RGB)/;
1591
1591
  const color = rgb;
1592
1592
  if (reg.test(color)) {
1593
1593
  let strHex = '#';
1594
1594
  const colorArr = color.replace(/(?:\(|\)|rgb|RGB)*/g, '').split(',');
1595
1595
  for (let i = 0; i < colorArr.length; i++) {
1596
1596
  let hex = Number(colorArr[i]).toString(16);
1597
1597
  if (hex === '0') {
1598
1598
  hex += hex;
1599
1599
  }
1600
1600
  strHex += hex;
1601
1601
  }
1602
1602
  return strHex;
1603
1603
  } else {
1604
1604
  return String(color);
1605
1605
  }
1606
1606
  } else {
1607
1607
  return '';
1608
1608
  }
1609
1609
  if (hex) {
1610
1610
  const reg = /^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/;
1611
1611
  let color = hex.toLowerCase();
1612
1612
  if (reg.test(color)) {
1613
1613
  if (color.length === 4) {
1614
1614
  let colorNew = '#';
1615
1615
  for (let i = 1; i < 4; i += 1) {
1616
1616
  colorNew += color.slice(i, i + 1).concat(color.slice(i, i + 1));
1617
1617
  }
1618
1618
  color = colorNew;
1619
1619
  }
1620
1620
  const colorChange: number[] = [];
1621
1621
  for (let i = 1; i < 7; i += 2) {
1622
1622
  colorChange.push(parseInt('0x' + color.slice(i, i + 2)));
1623
1623
  }
1624
1624
  if (returnList) {
1625
1625
  return colorChange;
1626
1626
  } else {
1627
1627
  return 'RGB(' + colorChange.join(',') + ')';
1628
1628
  }
1629
1629
  } else {
1630
1630
  return color;
1631
1631
  }
1632
1632
  } else {
1633
1633
  return '';
1634
1634
  }
1635
1635
  const c = m - n + 1;
1636
1636
  const res = Math.floor(Math.random() * c + n);
1637
1637
  if (filterNum && filterNum == res) {
1638
1638
  console.log('随机数二次开始', res, filterNum);
1639
1639
  return getRandom(n, m, filterNum);
1640
1640
  } else {
1641
1641
  return res;
1642
1642
  }
1643
1643
  wqCookieStr: string;
1644
1644
  wqCookie: {
1645
1645
  pin?: string;
1646
1646
  visitkey?: string;
1647
1647
  [key: string]: any;
1648
1648
  };
1649
1649
 
1650
1650
  const {
1651
1651
  jdpin,
1652
1652
  pinStatus,
1653
1653
  visitkey,
1654
1654
  unionid,
1655
1655
  skey,
1656
1656
  __jda,
1657
1657
  __jdv,
1658
1658
  __wga,
1659
1659
  wid,
1660
1660
  wq_skey,
1661
1661
  wq_uin,
1662
1662
  wq_auth_token,
1663
1663
  wxapp_scene,
1664
1664
  wq_unionid,
1665
1665
  wxapp_openid,
1666
1666
  wxapp_version,
1667
1667
  wxapp_type,
1668
1668
  appType,
1669
1669
  lbs_addr,
1670
1670
  pt_key,
1671
1671
  pt_pin,
1672
1672
  } = cookie;
1673
1673
  const ret: string[] = [];
1674
1674
  const getUserCookieObj = {};
1675
1675
  const createUseCookieArr = [
1676
1676
  jdpin,
1677
1677
  pinStatus,
1678
1678
  visitkey,
1679
1679
  unionid,
1680
1680
  skey,
1681
1681
  __jda,
1682
1682
  __jdv,
1683
1683
  __wga,
1684
1684
  wid,
1685
1685
  wq_skey,
1686
1686
  wq_uin,
1687
1687
  wq_auth_token,
1688
1688
  wxapp_scene,
1689
1689
  wq_unionid,
1690
1690
  wxapp_openid,
1691
1691
  wxapp_version,
1692
1692
  wxapp_type,
1693
1693
  appType,
1694
1694
  lbs_addr,
1695
1695
  pt_key,
1696
1696
  pt_pin,
1697
1697
  ];
1698
1698
 
1699
1699
  createUseCookieArr.forEach((keyItem) => {
1700
1700
  if (keyItem && keyItem['name']) {
1701
1701
  let { name, value } = keyItem;
1702
1702
  name = name === 'jdpin' ? 'pin' : name;
1703
1703
  name === 'pin' && value && ret.push(`pt_pin=${encodeURIComponent(value)}`);
1704
1704
  ret.push(`${name}=${encodeURIComponent(value)}`);
1705
1705
  getUserCookieObj[name] = value;
1706
1706
  }
1707
1707
  });
1708
1708
  return {
1709
1709
  wqCookieStr: ret.join(';'),
1710
1710
  wqCookie: getUserCookieObj,
1711
1711
  };
1712
1712
  const getLayoutWidth = layoutWidth || global.info?.sysInfo?.windowWidth || windowWidth;
1713
1713
  const getNum = Number(num);
1714
1714
  return Math.round((getNum / widthSize) * getLayoutWidth);
1715
1715
  let checkState = false;
1716
1716
  const couponFloorModuleType = floorData?.floorExtInfo?.moduleFlag;
1717
1717
  if (couponFloorModuleType === FloorModuleType.COUPON) {
1718
1718
  try {
1719
1719
  const dataDefines = getFloorDataToDataDefines(floorData);
1720
1720
  const couponDataDefine = dataDefines
1721
1721
  ? dataDefines.filter((item) => {
1722
1722
  return item.type === 'coupon';
1723
1723
  })
1724
1724
  : [],
1725
1725
  couponList = couponDataDefine[0]?.nodeText?.data ? couponDataDefine[0]?.nodeText?.data : [],
1726
1726
  couponLength = couponList.length,
1727
1727
  numShowPerLine = couponDataDefine[0]?.nodeText?.numShowPerLine
1728
1728
  ? couponDataDefine[0]?.nodeText?.numShowPerLine
1729
1729
  : 0;
1730
1730
  if (numShowPerLine === 0 && couponLength > 3) {
1731
1731
  checkState = true;
1732
1732
  }
1733
1733
  } catch (e) {
1734
1734
  checkState = false;
1735
1735
  }
1736
1736
  return checkState;
1737
1737
  }
1738
1738
  const {
1739
1739
  containers = [],
1740
1740
  floors = [],
1741
1741
  homeExtInfo = {},
1742
1742
  clearFirstContaierMarginTop = false,
1743
1743
  } = pageData;
1744
1744
  console.log('dealShopContentData:', pageData, 'isvdev:', isvdev, 'homeExtInfo:', homeExtInfo);
1745
1745
  const getThisTimeKey = Date.now();
1746
1746
  let shopContentContainerListData = containers?.filter(
1747
1747
  (item) => (!isvdev && item.typeCode !== 'mShopHeader') || isvdev,
1748
1748
  );
1749
1749
  const shopContentFloorListData = floors?.filter(
1750
1750
  ({ floorPosition }) =>
1751
1751
  (!isvdev && floorPosition !== 'header' && floorPosition !== 'footer') || isvdev,
1752
1752
  );
1753
1753
  const unableIsvContainerListData = getUnableIsvContainerListData(
1754
1754
  shopContentFloorListData,
1755
1755
  shopContentContainerListData,
1756
1756
  exceptionReportFn,
1757
1757
  );
1758
1758
  shopContentContainerListData.forEach((item, index) => {
1759
1759
  item.key = `${getThisTimeKey + index}`;
1760
1760
  item.floors = [];
1761
1761
  item.includeUids &&
1762
1762
  item.includeUids.forEach((floorUid) => {
1763
1763
  const getFloorData = shopContentFloorListData.find(
1764
1764
  (floorItem) => floorItem.uid === floorUid,
1765
1765
  );
1766
1766
  if (getFloorData) {
1767
1767
  const changeFloorData = {
1768
1768
  containerId: item.containerId,
1769
1769
  containerIndex: index,
1770
1770
  ...getFloorData,
1771
1771
  };
1772
1772
  if (homeExtInfo?.pageThemColorType) {
1773
1773
  changeFloorData.pageThemColorType = homeExtInfo.pageThemColorType;
1774
1774
  }
1775
1775
  const getCheckMoreCouponState = checkCouponAndChangeContainerSetData(getFloorData);
1776
1776
  if (getCheckMoreCouponState) {
1777
1777
  item.marginLeft && (item.marginLeft = 0);
1778
1778
  item.marginRight && (item.marginRight = 0);
1779
1779
  item.borderRadius && (item.borderRadius = 0);
1780
1780
  }
1781
1781
  if (getFloorData?.floorExtInfo?.floorLoadWay === 2) {
1782
1782
  const getSysFloorToLoadTypeRes = isIsvFloorUseable(getFloorData, exceptionReportFn);
1783
1783
  !getSysFloorToLoadTypeRes && (getFloorData.floorExtInfo.floorLoadWay = 1);
1784
1784
  }
1785
1785
  item.floors.push(changeFloorData);
1786
1786
  }
1787
1787
  });
1788
1788
  if (
1789
1789
  ((!isvdev && index === 0) || (isvdev && index === 1)) &&
1790
1790
  item?.containerPosition == 'content' &&
1791
1791
  item?.marginBottom > 0 &&
1792
1792
  !clearFirstContaierMarginTop
1793
1793
  ) {
1794
1794
  item.marginTop = item.marginBottom;
1795
1795
  }
1796
1796
  });
1797
1797
  shopContentContainerListData = shopContentContainerListData.filter(
1798
1798
  (item) =>
1799
1799
  item.floors.length > 0 &&
1800
1800
  unableIsvContainerListData.every(
1801
1801
  (containerItem) => containerItem.containerId != item.containerId,
1802
1802
  ),
1803
1803
  );
1804
1804
  console.log(
1805
1805
  'dealShopContentData isWxMinAndWxapp:',
1806
1806
  isWxMinAndWxapp,
1807
1807
  'weappJumpToH5:',
1808
1808
  pageData?.homeExtInfo?.weappJumpToH5,
1809
1809
  );
1810
1810
  if (isProd && isWxMinAndWxapp) {
1811
1811
  shopContentContainerListData = shopContentContainerListData.filter(
1812
1812
  (item) =>
1813
1813
  item.floors.length > 0 &&
1814
1814
  !isIsvContainer(item.containerId, shopContentFloorListData, shopContentContainerListData),
1815
1815
  );
1816
1816
  }
1817
1817
  shopContentContainerListData = [].concat(shopContentContainerListData);
1818
1818
  return {
1819
1819
  shopContentContainerListData,
1820
1820
  shopContentFloorListData,
1821
1821
  };
1822
1822
  const changeOpts = {
1823
1823
  title: '',
1824
1824
  icon: 'success',
1825
1825
  duration: 1500,
1826
1826
  mask: true,
1827
1827
  ...options,
1828
1828
  };
1829
1829
  if (changeOpts.title.length > 7) {
1830
1830
  showNormalToast(options);
1831
1831
  } else {
1832
1832
  Taro.showToast(changeOpts as any);
1833
1833
  }
1834
1834
  const changeOpts = {
1835
1835
  title: '',
1836
1836
  icon: 'error',
1837
1837
  duration: 1500,
1838
1838
  mask: true,
1839
1839
  ...options,
1840
1840
  };
1841
1841
  if (changeOpts.title.length > 7) {
1842
1842
  showNormalToast(options);
1843
1843
  } else {
1844
1844
  Taro.showToast(changeOpts as any);
1845
1845
  }
1846
1846
  Taro.showToast({
1847
1847
  title: '',
1848
1848
  icon: 'none',
1849
1849
  duration: 1500,
1850
1850
  mask: true,
1851
1851
  ...options,
1852
1852
  });
1853
1853
  return Taro.showLoading({
1854
1854
  title: text,
1855
1855
  });
1856
1856
  return new Promise(() => {
1857
1857
  Taro.nextTick(() => {
1858
1858
  setTimeout(() => {
1859
1859
  Taro.hideLoading(options);
1860
1860
  }, 300);
1861
1861
  });
1862
1862
  });
1863
1863
  return CHANNEL_TYPE[JDShopViewBusinessPathType.HOME];
1864
1864
  const {
1865
1865
  tabActive = SECTION_HOME_TAB_NAME_TYPE[SECTION_HOME_TAB_TYPE.HOME_WELL_CHOSEN],
1866
1866
  sceneId,
1867
1867
  currentTabType,
1868
1868
  } = query;
1869
1869
  let changeTabActive = tabActive;
1870
1870
  if (sceneId) {
1871
1871
  if (isH5) {
1872
1872
  if (sceneId == '1002') {
1873
1873
  changeTabActive = SECTION_HOME_TAB_NAME_TYPE[SECTION_HOME_TAB_TYPE.HOME_PRODUCT];
1874
1874
  }
1875
1875
  else if (sceneId == '1003') {
1876
1876
  changeTabActive = SECTION_HOME_TAB_NAME_TYPE[SECTION_HOME_TAB_TYPE.HOME_ACTIVITY];
1877
1877
  }
1878
1878
  } else if (isWxMinAndWxapp) {
1879
1879
  if (sceneId == '1001' || sceneId == '1002') {
1880
1880
  changeTabActive = SECTION_HOME_TAB_NAME_TYPE[SECTION_HOME_TAB_TYPE.HOME_PRODUCT];
1881
1881
  }
1882
1882
  else if (sceneId == '1003') {
1883
1883
  changeTabActive = SECTION_HOME_TAB_NAME_TYPE[SECTION_HOME_TAB_TYPE.HOME_PROMOTION];
1884
1884
  }
1885
1885
  }
1886
1886
  }
1887
1887
  if (SECTION_HOME_TAB_QUERY_TYPE[changeTabActive]) {
1888
1888
  if (
1889
1889
  !isNaN(currentTabType) &&
1890
1890
  SECTION_HOME_CUSTOM_TAB_TYPE_ARRAY.indexOf(currentTabType) !== -1
1891
1891
  ) {
1892
1892
  return {
1893
1893
  menuType: SHOP_MENU_ID_TYPE.HOME,
1894
1894
  tabActiveType: currentTabType,
1895
1895
  queryMenuTabActiveStr: `${SHOP_MENU_ID_TYPE.HOME}@${currentTabType}`,
1896
1896
  };
1897
1897
  }
1898
1898
  return {
1899
1899
  menuType: SHOP_MENU_ID_TYPE.HOME,
1900
1900
  tabActiveType: SECTION_HOME_TAB_QUERY_TYPE[changeTabActive],
1901
1901
  queryMenuTabActiveStr: `${SHOP_MENU_ID_TYPE.HOME}@${SECTION_HOME_TAB_QUERY_TYPE[changeTabActive]}`,
1902
1902
  };
1903
1903
  } else if (SHOP_MENU_ID_QUERY_NAME[changeTabActive]) {
1904
1904
  return {
1905
1905
  menuType: SHOP_MENU_ID_QUERY_NAME[changeTabActive],
1906
1906
  tabActiveType: 0,
1907
1907
  queryMenuTabActiveStr: `${SHOP_MENU_ID_QUERY_NAME[changeTabActive]}@0`,
1908
1908
  };
1909
1909
  } else {
1910
1910
  const defaultMenuType = {
1911
1911
  menuType: SHOP_MENU_ID_TYPE.HOME,
1912
1912
  tabActiveType: SECTION_HOME_TAB_TYPE.HOME_WELL_CHOSEN,
1913
1913
  queryMenuTabActiveStr: `${SHOP_MENU_ID_TYPE.HOME}@${SECTION_HOME_TAB_TYPE.HOME_WELL_CHOSEN}`,
1914
1914
  };
1915
1915
  const isCustomTab = tabActive.indexOf(SECTION_HOME_TAB_NAME_TYPE.HOME_CUSTOM) !== -1;
1916
1916
  if (isCustomTab) {
1917
1917
  const customTabType = Number(tabActive.split('-')[2]);
1918
1918
  if (
1919
1919
  !isNaN(customTabType) &&
1920
1920
  SECTION_HOME_CUSTOM_TAB_TYPE_ARRAY.indexOf(customTabType) !== -1
1921
1921
  ) {
1922
1922
  return {
1923
1923
  menuType: SHOP_MENU_ID_TYPE.HOME,
1924
1924
  tabActiveType: customTabType,
1925
1925
  queryMenuTabActiveStr: `${SHOP_MENU_ID_TYPE.HOME}@${customTabType}`,
1926
1926
  };
1927
1927
  } else {
1928
1928
  return defaultMenuType;
1929
1929
  }
1930
1930
  } else {
1931
1931
  if (
1932
1932
  !isNaN(currentTabType) &&
1933
1933
  SECTION_HOME_CUSTOM_TAB_TYPE_ARRAY.indexOf(currentTabType) !== -1
1934
1934
  ) {
1935
1935
  return {
1936
1936
  menuType: SHOP_MENU_ID_TYPE.HOME,
1937
1937
  tabActiveType: currentTabType,
1938
1938
  queryMenuTabActiveStr: `${SHOP_MENU_ID_TYPE.HOME}@${currentTabType}`,
1939
1939
  };
1940
1940
  }
1941
1941
  return defaultMenuType;
1942
1942
  }
1943
1943
  }
1944
1944
  const deleteKeyList = [
1945
1945
  '$taroTimestamp',
1946
1946
  'cookie',
1947
1947
  'wdref',
1948
1948
  'navStart',
1949
1949
  'originOpts',
1950
1950
  'originParams',
1951
1951
  'originUrl',
1952
1952
  'referer',
1953
1953
  'stamp',
1954
1954
  'hybrid',
1955
1955
  'sr',
1956
1956
  'navh',
1957
1957
  'stath',
1958
1958
  ];
1959
1959
  let changeQueryData: any = { ...queryData };
1960
1960
  const qrCodeScene = changeQueryData?.scene ? changeQueryData?.scene : false;
1961
1961
  const sceneQuery =
1962
1962
  qrCodeScene && typeof qrCodeScene === 'string'
1963
1963
  ? parseQueryUrlString(decodeURIComponent(qrCodeScene))
1964
1964
  : {};
1965
1965
  changeQueryData = { ...changeQueryData, ...sceneQuery };
1966
1966
  deleteKeyList.forEach((key) => {
1967
1967
  changeQueryData[key] && delete changeQueryData[key];
1968
1968
  });
1969
1969
  Object.keys(changeQueryData).forEach((key) => {
1970
1970
  if (changeQueryData[key] && Array.isArray(changeQueryData[key])) {
1971
1971
  changeQueryData[key] = changeQueryData[key][0] || '';
1972
1972
  }
1973
1973
  });
1974
1974
  changeQueryData['shopid'] &&
1975
1975
  (changeQueryData['shopId'] = changeQueryData['shopid']) &&
1976
1976
  delete changeQueryData['shopid'];
1977
1977
  changeQueryData['venderid'] &&
1978
1978
  (changeQueryData['venderId'] = changeQueryData['venderid']) &&
1979
1979
  delete changeQueryData['venderid'];
1980
1980
  changeQueryData['vendorId'] &&
1981
1981
  (changeQueryData['venderId'] = changeQueryData['vendorId']) &&
1982
1982
  delete changeQueryData['vendorId'];
1983
1983
  changeQueryData['shopId'] &&
1984
1984
  changeQueryData['shopId'] === 'undefined' &&
1985
1985
  delete changeQueryData['shopId'];
1986
1986
  changeQueryData['venderId'] &&
1987
1987
  changeQueryData['venderId'] === 'undefined' &&
1988
1988
  delete changeQueryData['venderId'];
1989
1989
  return changeQueryData;
1990
1990
  let isUsable = false;
1991
1991
  const modularPackResult = floorData?.floorExtInfo?.modularPackResult;
1992
1992
  const modularPackResultObj = formatPackResult(modularPackResult);
1993
1993
  const bundleUrl = getBundleUrl(modularPackResultObj);
1994
1994
  const bundleFileName = getBundleFileName(modularPackResultObj);
1995
1995
  const taroVersion = getTaroVersion(modularPackResultObj);
1996
1996
  if (bundleUrl && bundleFileName) {
1997
1997
  isUsable = true;
1998
1998
  }
1999
1999
  if (!isUsable && typeof exceptionReportFn === 'function') {
2000
2000
  exceptionReportFn({
2001
2001
  eventName: 'business',
2002
2002
  errorName: `${NO_ENVIRONMENT_AND_PAGE_TYPE_FLAG}${
2003
2003
  floorData?.floorExtInfo?.floorKind === FLOOR_KIND.PDC_SYSTEM_MODULE
2004
2004
  ? SgmCustomCode.SYSTEMPDCMODULE_DATA
2005
2005
  : SgmCustomCode.REMOTEMODULE_DATA
2006
2006
  }`,
2007
2007
  errorMessage: JSON.stringify({
2008
2008
  msg: `店铺h5楼层隐藏不显示。原因:模块数据不完备,楼层过滤。`,
2009
2009
  floorIdx: floorData?.floorIdx,
2010
2010
  uid: floorData?.uid,
2011
2011
  shopId: floorData?.floorExtInfo?.shopId,
2012
2012
  moduleId: floorData?.moduleId,
2013
2013
  moduleDesignerType: floorData?.floorExtInfo?.moduleDesignerType,
2014
2014
  floorLoadWay: floorData?.floorExtInfo?.floorLoadWay,
2015
2015
  floorKind: floorData?.floorExtInfo?.floorKind,
2016
2016
  middleTemplateId: floorData?.middleTemplateId,
2017
2017
  modularPackResult: {
2018
2018
  bundleUrl,
2019
2019
  taroVersion,
2020
2020
  },
2021
2021
  }),
2022
2022
  });
2023
2023
  }
2024
2024
  return isUsable;
2025
2025
  const containerObj = containerList.find((item) => item.containerId === containerId);
2026
2026
  const blacklistModules = ['chatgroup'];
2027
2027
  return blacklistModules.includes(containerObj?.typeCode);
2028
2028
  const objContainer = containerListData.find((item) => item.containerId === containerId);
2029
2029
  return (
2030
2030
  objContainer?.includeUids?.some((itemUid) => {
2031
2031
  const objectFloor = floorListData.find((floorItem) => itemUid === floorItem.uid);
2032
2032
  return RemoteLoadFloorList.includes(objectFloor?.floorExtInfo?.moduleFlag);
2033
2033
  }) ?? false
2034
2034
  );
2035
2035
  const unableIsvFloorListData = floorListData.filter(
2036
2036
  (floorItem) =>
2037
2037
  RemoteLoadFloorList.includes(floorItem?.floorExtInfo?.moduleFlag) &&
2038
2038
  !isIsvFloorUseable(floorItem, exceptionReportFn),
2039
2039
  );
2040
2040
  const unableIsvFloorUidList = unableIsvFloorListData.map((floorItem) => floorItem.uid);
2041
2041
  const unableIsvContainerListData = containerListData.filter(
2042
2042
  (item) =>
2043
2043
  item.includeUids &&
2044
2044
  item.includeUids.every((itemUid) => unableIsvFloorUidList.indexOf(itemUid) != -1),
2045
2045
  );
2046
2046
  return unableIsvContainerListData;
2047
2047
  console.log('暂无对应渠道比较', compareVersion, nowVersion);
2048
2048
  return -2;
2049
2049
  return customObj;
2050
2050
  return customObj;
2051
2051
  return customObj;
2052
2052
  return customObj;
2053
2053
  return customObj;
2054
2054
  return /openApp\.jdMobile:\/\/virtual\?params=/i.test(openAppUrl);
2055
2055
  let getParams = false;
2056
2056
  if (isOpenJdAppUrl(openAppUrl)) {
2057
2057
  try {
2058
2058
  getParams = openAppUrl.replace(/openApp\.jdMobile:\/\/virtual\?params=/i, '');
2059
2059
  getParams = JSON.parse(String(getParams));
2060
2060
  } catch (e) {
2061
2061
  console.log(e);
2062
2062
  }
2063
2063
  }
2064
2064
  return getParams;
2065
2065
  const getLastParams = Object.assign({}, openParams);
2066
2066
  return `openapp.jdmobile://virtual?params=${JSON.stringify(getLastParams)}`;
2067
2067
  if (val === null || val === '' || typeof val === 'undefined') {
2068
2068
  return true;
2069
2069
  }
2070
2070
  return false;
2071
2071
  const {
2072
2072
  moduleId = 'none',
2073
2073
  entrance = 'none',
2074
2074
  sourceType = 'none',
2075
2075
  sourceValue = 'none',
2076
2076
  } = params;
2077
2077
  if (isIosDevice) {
2078
2078
  return `${moduleId}#${entrance}`;
2079
2079
  } else if (isAndroidDevice) {
2080
2080
  return `${sourceType}#${sourceValue}`;
2081
2081
  }
2082
2082
  return 'none#none';
2083
2083
  if (data && typeof data === 'object') {
2084
2084
  let getOpenAppData = { ...data };
2085
2085
  try {
2086
2086
  const { sourceInfo, designerId, templateId, source } = getOpenAppData;
2087
2087
  if (designerId && templateId) {
2088
2088
  getOpenAppData = Object.assign({}, getOpenAppData, {
2089
2089
  sourceInfo: {
2090
2090
  entrance: '设计师预览',
2091
2091
  },
2092
2092
  });
2093
2093
  } else if (sourceInfo) {
2094
2094
  const { entrance } = sourceInfo;
2095
2095
  getOpenAppData.sourceInfo.entrance = entrance && entrance.length > 0 ? entrance : '其他';
2096
2096
  } else if (source && !sourceInfo) {
2097
2097
  if (typeof source === 'object') {
2098
2098
  const { sourceType, entrance, sourceValue, moduleId } = source;
2099
2099
  getOpenAppData = Object.assign({}, getOpenAppData, {
2100
2100
  sourceInfo: {
2101
2101
  entrance: sourceType || entrance || '其他',
2102
2102
  moduleId: sourceValue || moduleId || '-100',
2103
2103
  },
2104
2104
  });
2105
2105
  if (sourceType === 'shop_from_product_detail' && sourceValue) {
2106
2106
  getOpenAppData.sourceSku = sourceValue;
2107
2107
  }
2108
2108
  } else {
2109
2109
  getOpenAppData = Object.assign({}, getOpenAppData, {
2110
2110
  sourceInfo: {
2111
2111
  entrance: source,
2112
2112
  },
2113
2113
  });
2114
2114
  }
2115
2115
  } else {
2116
2116
  getOpenAppData = Object.assign({}, getOpenAppData, {
2117
2117
  sourceInfo: {
2118
2118
  entrance: '其他',
2119
2119
  },
2120
2120
  });
2121
2121
  }
2122
2122
  } catch (e) {
2123
2123
  console.log(e);
2124
2124
  }
2125
2125
  return getOpenAppData;
2126
2126
  }
2127
2127
  return data;
2128
2128
  return displayObj;
2129
2129
  if (typeof input === 'string') {
2130
2130
  try {
2131
2131
  return JSON.parse(input);
2132
2132
  } catch (e) {
2133
2133
  console.error('JSON解析失败', e);
2134
2134
  return {};
2135
2135
  }
2136
2136
  }
2137
2137
  return input || {};
2138
2138
  return false;
2139
2139
  const borderStyle: { [key: string]: any } = {};
2140
2140
  if (item?.borderRadius) {
2141
2141
  let borderTopRadius = 0;
2142
2142
  let borderBottomRadius = 0;
2143
2143
  if (index === 0) {
2144
2144
  borderTopRadius = item.borderRadius;
2145
2145
  borderBottomRadius = floorDataLen === 1 || item?.marginBottom !== 0 ? item.borderRadius : 0;
2146
2146
  } else if (index === floorDataLen - 1) {
2147
2147
  borderTopRadius = floorData[index - 1]?.marginBottom === 0 ? 0 : item.borderRadius;
2148
2148
  borderBottomRadius = item.borderRadius;
2149
2149
  } else {
2150
2150
  borderTopRadius = floorData[index - 1]?.marginBottom === 0 ? 0 : item.borderRadius;
2151
2151
  borderBottomRadius = item?.marginBottom === 0 ? 0 : item.borderRadius;
2152
2152
  }
2153
2153
  borderStyle.borderTopLeftRadius = item?.borderTopLeftRadius
2154
2154
  ? `${item?.borderTopLeftRadius}px`
2155
2155
  : `${borderTopRadius}px`;
2156
2156
  borderStyle.borderTopRightRadius = item?.borderTopRightRadius
2157
2157
  ? `${item?.borderTopRightRadius}px`
2158
2158
  : `${borderTopRadius}px`;
2159
2159
  borderStyle.borderBottomLeftRadius = `${borderBottomRadius}px`;
2160
2160
  borderStyle.borderBottomRightRadius = `${borderBottomRadius}px`;
2161
2161
  } else {
2162
2162
  borderStyle.borderTopLeftRadius = borderStyle?.borderTopLeftRadius || '0px';
2163
2163
  borderStyle.borderTopRightRadius = borderStyle?.borderTopRightRadius || '0px';
2164
2164
  borderStyle.borderBottomRightRadius = borderStyle?.borderBottomRightRadius || '0px';
2165
2165
  borderStyle.borderBottomLeftRadius = borderStyle?.borderBottomLeftRadius || '0px';
2166
2166
  }
2167
2167
  return borderStyle;
2168
2168
  isJdApp,
2169
2169
  isWxApp,
2170
2170
  isAscfApp,
2171
2171
  isIosDevice,
2172
2172
  isAndroidDevice,
2173
2173
  isJdAndIosDevice,
2174
2174
  isJdAndAndroidDevice,
2175
2175
  isWxMin,
2176
2176
  isWxMinAndWxapp,
2177
2177
  isJdMin,
2178
2178
  isMin,
2179
2179
  isJdMinAndHarmony,
2180
2180
  isH5,
2181
2181
  isH5AndJdShopView,
2182
2182
  isImageOptimizeEnable,
2183
2183
  isChartH5,
2184
2184
  isH5AndJdShopViewNativeScroll,
2185
2185
  isH5AndJdShopViewH5Scroll,
2186
2186
  isH5AndJdShopH5CustomScrollView,
2187
2187
  isWxMiniH5View,
2188
2188
  sliceArrToChunkList,
2189
2189
  dealAddress,
2190
2190
  objectToUrlEncode,
2191
2191
  parseQueryUrlString,
2192
2192
  setLowSmallPicUrl,
2193
2193
  getJfsImage,
2194
2194
  getQualityImage,
2195
2195
  countStringify,
2196
2196
  setTaroStorage,
2197
2197
  getTaroStorageKeyValue,
2198
2198
  removeTaroStorageKey,
2199
2199
  clearTaroStorageKey,
2200
2200
  getSystemInfos,
2201
2201
  addHttps,
2202
2202
  dateFormat,
2203
2203
  throttle,
2204
2204
  lodashThrottle,
2205
2205
  debounce,
2206
2206
  getTelephone,
2207
2207
  rgbToHex,
2208
2208
  hexToRgb,
2209
2209
  getRandom,
2210
2210
  getWxAppCookieStr,
2211
2211
  pxTransformFromData,
2212
2212
  dealShopContentData,
2213
2213
  showSuccessToast,
2214
2214
  showFailToast,
2215
2215
  showNormalToast,
2216
2216
  showShopLoading,
2217
2217
  hideShopLoading,
2218
2218
  getAppChannelType,
2219
2219
  formatTabActiveMenuType,
2220
2220
  filterUrlQueryData,
2221
2221
  getAvifSupport,
2222
2222
  getWebpSupport,
2223
2223
  isMemberPage,
2224
2224
  draCustomReport,
2225
2225
  remoteCustomReport,
2226
2226
  draInterfaceCustomReport,
2227
2227
  draBusinessCustomReport,
2228
2228
  draBusinessCustomLogReport,
2229
2229
  isOpenJdAppUrl,
2230
2230
  jdOpenAppParams,
2231
2231
  createJdOpenAppUrl,
2232
2232
  dealJdOpenAppData,
2233
2233
  isEmpty,
2234
2234
  getJdAppReportPageSource,
2235
2235
  isAppClassifyPage,
2236
2236
  getQualityImageNew,
2237
2237
  getQualityImageOld,
2238
2238
  isPc,
2239
2239
  isPcClassifyPage,
2240
2240
  ipLoc_djd,
2241
2241
  jdAppVersionCompare,
2242
2242
  dealNativePixelToCssPixel,
2243
2243
  isAppStowShop,
2244
2244
  isIpadDevice,
2245
2245
  getBorderStyle,
2246
2246
  isLanguageForEn,
2247
2247
  sColor,
2248
2248
  isTabletDevice,
2249
2249
  isInHarmonyBlacklistByModuleFlag,
2250
2250
  isJdLiteApp,
2251
2251
  isJdAppForNotMain,