@conecli/cone-render 0.10.1-shop3.87 → 0.10.1-shop3.88

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
  clearFirstContaierMarginTop = false,
616
615
  } = pageData;
617
616
  console.log('dealShopContentData:', pageData, 'isvdev:', isvdev);
618
617
  const getThisTimeKey = Date.now();
619
618
  let shopContentContainerListData = containers?.filter(
620
619
  (item) => (!isvdev && item.typeCode !== 'mShopHeader') || isvdev,
621
620
  );
622
621
  const shopContentFloorListData = floors?.filter(
623
622
  ({ floorPosition }) =>
624
623
  (!isvdev && floorPosition !== 'header' && floorPosition !== 'footer') || isvdev,
625
624
  );
626
625
  const unableIsvContainerListData = getUnableIsvContainerListData(
627
626
  shopContentFloorListData,
628
627
  shopContentContainerListData,
629
628
  exceptionReportFn,
630
629
  );
631
630
  shopContentContainerListData.forEach((item, index) => {
632
631
  item.key = `${getThisTimeKey + index}`;
633
632
  item.floors = [];
634
633
  item.includeUids &&
635
634
  item.includeUids.forEach((floorUid) => {
636
635
  const getFloorData = shopContentFloorListData.find(
637
636
  (floorItem) => floorItem.uid === floorUid,
638
637
  );
639
638
  if (getFloorData) {
640
639
  const changeFloorData = {
641
640
  containerId: item.containerId,
642
641
  containerIndex: index,
643
642
  ...getFloorData,
644
643
  };
645
644
  const getCheckMoreCouponState = checkCouponAndChangeContainerSetData(getFloorData);
646
645
  if (getCheckMoreCouponState) {
647
646
  item.marginLeft && (item.marginLeft = 0);
648
647
  item.marginRight && (item.marginRight = 0);
649
648
  item.borderRadius && (item.borderRadius = 0);
650
649
  }
651
650
  if (getFloorData?.floorExtInfo?.floorLoadWay === 2) {
652
651
  const getSysFloorToLoadTypeRes = isIsvFloorUseable(getFloorData, exceptionReportFn);
653
652
  !getSysFloorToLoadTypeRes && (getFloorData.floorExtInfo.floorLoadWay = 1);
654
653
  }
655
654
  item.floors.push(changeFloorData);
656
655
  }
657
656
  });
658
657
  if (
659
658
  ((!isvdev && index === 0) || (isvdev && index === 1)) &&
660
659
  item?.containerPosition == 'content' &&
661
660
  item?.marginBottom > 0 &&
662
661
  !clearFirstContaierMarginTop
663
662
  ) {
664
663
  item.marginTop = item.marginBottom;
665
664
  }
666
665
  });
667
666
  shopContentContainerListData = shopContentContainerListData.filter(
668
667
  (item) =>
669
668
  item.floors.length > 0 &&
670
669
  unableIsvContainerListData.every(
671
670
  (containerItem) => containerItem.containerId != item.containerId,
672
671
  ),
673
672
  );
674
673
  console.log(
675
674
  'dealShopContentData isWxMinAndWxapp:',
676
675
  isWxMinAndWxapp,
677
676
  'weappJumpToH5:',
678
677
  pageData?.homeExtInfo?.weappJumpToH5,
679
678
  );
680
679
  if (isProd && isWxMinAndWxapp) {
681
680
  shopContentContainerListData = shopContentContainerListData.filter(
682
681
  (item) =>
683
682
  item.floors.length > 0 &&
684
683
  !isIsvContainer(item.containerId, shopContentFloorListData, shopContentContainerListData),
685
684
  );
686
685
  }
687
686
  shopContentContainerListData = [].concat(shopContentContainerListData);
688
687
  return {
689
688
  shopContentContainerListData,
690
689
  shopContentFloorListData,
691
690
  };
692
691
  const changeOpts = {
693
692
  title: '',
694
693
  icon: 'success',
695
694
  duration: 1500,
696
695
  mask: true,
697
696
  ...options,
698
697
  };
699
698
  if (changeOpts.title.length > 7) {
700
699
  showNormalToast(options);
701
700
  } else {
702
701
  Taro.showToast(changeOpts as any);
703
702
  }
704
703
  const changeOpts = {
705
704
  title: '',
706
705
  icon: 'error',
707
706
  duration: 1500,
708
707
  mask: true,
709
708
  ...options,
710
709
  };
711
710
  if (changeOpts.title.length > 7) {
712
711
  showNormalToast(options);
713
712
  } else {
714
713
  Taro.showToast(changeOpts as any);
715
714
  }
716
715
  Taro.showToast({
717
716
  title: '',
718
717
  icon: 'none',
719
718
  duration: 1500,
720
719
  mask: true,
721
720
  ...options,
722
721
  });
723
722
  return Taro.showLoading({
724
723
  title: text,
725
724
  });
726
725
  return new Promise(() => {
727
726
  Taro.nextTick(() => {
728
727
  setTimeout(() => {
729
728
  Taro.hideLoading(options);
730
729
  }, 300);
731
730
  });
732
731
  });
733
732
  return CHANNEL_TYPE[JDShopViewBusinessPathType.HOME];
734
733
  const {
735
734
  tabActive = SECTION_HOME_TAB_NAME_TYPE[SECTION_HOME_TAB_TYPE.HOME_WELL_CHOSEN],
736
735
  sceneId,
737
736
  currentTabType,
738
737
  } = query;
739
738
  let changeTabActive = tabActive;
740
739
  if (sceneId) {
741
740
  if (isH5) {
742
741
  if (sceneId == '1002') {
743
742
  changeTabActive = SECTION_HOME_TAB_NAME_TYPE[SECTION_HOME_TAB_TYPE.HOME_PRODUCT];
744
743
  }
745
744
  else if (sceneId == '1003') {
746
745
  changeTabActive = SECTION_HOME_TAB_NAME_TYPE[SECTION_HOME_TAB_TYPE.HOME_ACTIVITY];
747
746
  }
748
747
  } else if (isWxMinAndWxapp) {
749
748
  if (sceneId == '1001' || sceneId == '1002') {
750
749
  changeTabActive = SECTION_HOME_TAB_NAME_TYPE[SECTION_HOME_TAB_TYPE.HOME_PRODUCT];
751
750
  }
752
751
  else if (sceneId == '1003') {
753
752
  changeTabActive = SECTION_HOME_TAB_NAME_TYPE[SECTION_HOME_TAB_TYPE.HOME_PROMOTION];
754
753
  }
755
754
  }
756
755
  }
757
756
  if (SECTION_HOME_TAB_QUERY_TYPE[changeTabActive]) {
758
757
  if (
759
758
  !isNaN(currentTabType) &&
760
759
  SECTION_HOME_CUSTOM_TAB_TYPE_ARRAY.indexOf(currentTabType) !== -1
761
760
  ) {
762
761
  return {
763
762
  menuType: SHOP_MENU_ID_TYPE.HOME,
764
763
  tabActiveType: currentTabType,
765
764
  queryMenuTabActiveStr: `${SHOP_MENU_ID_TYPE.HOME}@${currentTabType}`,
766
765
  };
767
766
  }
768
767
  return {
769
768
  menuType: SHOP_MENU_ID_TYPE.HOME,
770
769
  tabActiveType: SECTION_HOME_TAB_QUERY_TYPE[changeTabActive],
771
770
  queryMenuTabActiveStr: `${SHOP_MENU_ID_TYPE.HOME}@${SECTION_HOME_TAB_QUERY_TYPE[changeTabActive]}`,
772
771
  };
773
772
  } else if (SHOP_MENU_ID_QUERY_NAME[changeTabActive]) {
774
773
  return {
775
774
  menuType: SHOP_MENU_ID_QUERY_NAME[changeTabActive],
776
775
  tabActiveType: 0,
777
776
  queryMenuTabActiveStr: `${SHOP_MENU_ID_QUERY_NAME[changeTabActive]}@0`,
778
777
  };
779
778
  } else {
780
779
  const defaultMenuType = {
781
780
  menuType: SHOP_MENU_ID_TYPE.HOME,
782
781
  tabActiveType: SECTION_HOME_TAB_TYPE.HOME_WELL_CHOSEN,
783
782
  queryMenuTabActiveStr: `${SHOP_MENU_ID_TYPE.HOME}@${SECTION_HOME_TAB_TYPE.HOME_WELL_CHOSEN}`,
784
783
  };
785
784
  const isCustomTab = tabActive.indexOf(SECTION_HOME_TAB_NAME_TYPE.HOME_CUSTOM) !== -1;
786
785
  if (isCustomTab) {
787
786
  const customTabType = Number(tabActive.split('-')[2]);
788
787
  if (
789
788
  !isNaN(customTabType) &&
790
789
  SECTION_HOME_CUSTOM_TAB_TYPE_ARRAY.indexOf(customTabType) !== -1
791
790
  ) {
792
791
  return {
793
792
  menuType: SHOP_MENU_ID_TYPE.HOME,
794
793
  tabActiveType: customTabType,
795
794
  queryMenuTabActiveStr: `${SHOP_MENU_ID_TYPE.HOME}@${customTabType}`,
796
795
  };
797
796
  } else {
798
797
  return defaultMenuType;
799
798
  }
800
799
  } else {
801
800
  if (
802
801
  !isNaN(currentTabType) &&
803
802
  SECTION_HOME_CUSTOM_TAB_TYPE_ARRAY.indexOf(currentTabType) !== -1
804
803
  ) {
805
804
  return {
806
805
  menuType: SHOP_MENU_ID_TYPE.HOME,
807
806
  tabActiveType: currentTabType,
808
807
  queryMenuTabActiveStr: `${SHOP_MENU_ID_TYPE.HOME}@${currentTabType}`,
809
808
  };
810
809
  }
811
810
  return defaultMenuType;
812
811
  }
813
812
  }
814
813
  const deleteKeyList = [
815
814
  '$taroTimestamp',
816
815
  'cookie',
817
816
  'wdref',
818
817
  'navStart',
819
818
  'originOpts',
820
819
  'originParams',
821
820
  'originUrl',
822
821
  'referer',
823
822
  'stamp',
824
823
  'hybrid',
825
824
  'sr',
826
825
  'navh',
827
826
  'stath',
828
827
  ];
829
828
  let changeQueryData: any = { ...queryData };
830
829
  const qrCodeScene = changeQueryData?.scene ? changeQueryData?.scene : false;
831
830
  const sceneQuery =
832
831
  qrCodeScene && typeof qrCodeScene === 'string'
833
832
  ? parseQueryUrlString(decodeURIComponent(qrCodeScene))
834
833
  : {};
835
834
  changeQueryData = { ...changeQueryData, ...sceneQuery };
836
835
  deleteKeyList.forEach((key) => {
837
836
  changeQueryData[key] && delete changeQueryData[key];
838
837
  });
839
838
  Object.keys(changeQueryData).forEach((key) => {
840
839
  if (changeQueryData[key] && Array.isArray(changeQueryData[key])) {
841
840
  changeQueryData[key] = changeQueryData[key][0] || '';
842
841
  }
843
842
  });
844
843
  changeQueryData['shopid'] &&
845
844
  (changeQueryData['shopId'] = changeQueryData['shopid']) &&
846
845
  delete changeQueryData['shopid'];
847
846
  changeQueryData['venderid'] &&
848
847
  (changeQueryData['venderId'] = changeQueryData['venderid']) &&
849
848
  delete changeQueryData['venderid'];
850
849
  changeQueryData['vendorId'] &&
851
850
  (changeQueryData['venderId'] = changeQueryData['vendorId']) &&
852
851
  delete changeQueryData['vendorId'];
853
852
  changeQueryData['shopId'] &&
854
853
  changeQueryData['shopId'] === 'undefined' &&
855
854
  delete changeQueryData['shopId'];
856
855
  changeQueryData['venderId'] &&
857
856
  changeQueryData['venderId'] === 'undefined' &&
858
857
  delete changeQueryData['venderId'];
859
858
  return changeQueryData;
860
859
  let isUsable = false;
861
860
  const modularPackResult = floorData?.floorExtInfo?.modularPackResult;
862
861
  const modularPackResultObj = formatPackResult(modularPackResult);
863
862
  const bundleUrl = getBundleUrl(modularPackResultObj);
864
863
  const bundleFileName = getBundleFileName(modularPackResultObj);
865
864
  const taroVersion = getTaroVersion(modularPackResultObj);
866
865
  if (bundleUrl && bundleFileName) {
867
866
  isUsable = true;
868
867
  }
869
868
  if (!isUsable && typeof exceptionReportFn === 'function') {
870
869
  exceptionReportFn({
871
870
  eventName: 'business',
872
871
  errorName: `${NO_ENVIRONMENT_AND_PAGE_TYPE_FLAG}${
873
872
  floorData?.floorExtInfo?.floorKind === FLOOR_KIND.PDC_SYSTEM_MODULE
874
873
  ? SgmCustomCode.SYSTEMPDCMODULE_DATA
875
874
  : SgmCustomCode.REMOTEMODULE_DATA
876
875
  }`,
877
876
  errorMessage: JSON.stringify({
878
877
  msg: `店铺h5楼层隐藏不显示。原因:模块数据不完备,楼层过滤。`,
879
878
  floorIdx: floorData?.floorIdx,
880
879
  uid: floorData?.uid,
881
880
  shopId: floorData?.floorExtInfo?.shopId,
882
881
  moduleId: floorData?.moduleId,
883
882
  moduleDesignerType: floorData?.floorExtInfo?.moduleDesignerType,
884
883
  floorLoadWay: floorData?.floorExtInfo?.floorLoadWay,
885
884
  floorKind: floorData?.floorExtInfo?.floorKind,
886
885
  middleTemplateId: floorData?.middleTemplateId,
887
886
  modularPackResult: {
888
887
  bundleUrl,
889
888
  taroVersion,
890
889
  },
891
890
  }),
892
891
  });
893
892
  }
894
893
  return isUsable;
895
894
  const containerObj = containerList.find((item) => item.containerId === containerId);
896
895
  const blacklistModules = ['chatgroup'];
897
896
  return blacklistModules.includes(containerObj?.typeCode);
898
897
  const objContainer = containerListData.find((item) => item.containerId === containerId);
899
898
  return (
900
899
  objContainer?.includeUids?.some((itemUid) => {
901
900
  const objectFloor = floorListData.find((floorItem) => itemUid === floorItem.uid);
902
901
  return RemoteLoadFloorList.includes(objectFloor?.floorExtInfo?.moduleFlag);
903
902
  }) ?? false
904
903
  );
905
904
  const unableIsvFloorListData = floorListData.filter(
906
905
  (floorItem) =>
907
906
  RemoteLoadFloorList.includes(floorItem?.floorExtInfo?.moduleFlag) &&
908
907
  !isIsvFloorUseable(floorItem, exceptionReportFn),
909
908
  );
910
909
  const unableIsvFloorUidList = unableIsvFloorListData.map((floorItem) => floorItem.uid);
911
910
  const unableIsvContainerListData = containerListData.filter(
912
911
  (item) =>
913
912
  item.includeUids &&
914
913
  item.includeUids.every((itemUid) => unableIsvFloorUidList.indexOf(itemUid) != -1),
915
914
  );
916
915
  return unableIsvContainerListData;
917
916
  console.log('暂无对应渠道比较', compareVersion, nowVersion);
918
917
  return -2;
919
918
  return customObj;
920
919
  return customObj;
921
920
  return customObj;
922
921
  return customObj;
923
922
  return customObj;
924
923
  return /openApp\.jdMobile:\/\/virtual\?params=/i.test(openAppUrl);
925
924
  let getParams = false;
926
925
  if (isOpenJdAppUrl(openAppUrl)) {
927
926
  try {
928
927
  getParams = openAppUrl.replace(/openApp\.jdMobile:\/\/virtual\?params=/i, '');
929
928
  getParams = JSON.parse(String(getParams));
930
929
  } catch (e) {
931
930
  console.log(e);
932
931
  }
933
932
  }
934
933
  return getParams;
935
934
  const getLastParams = Object.assign({}, openParams);
936
935
  return `openapp.jdmobile://virtual?params=${JSON.stringify(getLastParams)}`;
937
936
  if (val === null || val === '' || typeof val === 'undefined') {
938
937
  return true;
939
938
  }
940
939
  return false;
941
940
  const {
942
941
  moduleId = 'none',
943
942
  entrance = 'none',
944
943
  sourceType = 'none',
945
944
  sourceValue = 'none',
946
945
  } = params;
947
946
  if (isIosDevice) {
948
947
  return `${moduleId}#${entrance}`;
949
948
  } else if (isAndroidDevice) {
950
949
  return `${sourceType}#${sourceValue}`;
951
950
  }
952
951
  return 'none#none';
953
952
  if (data && typeof data === 'object') {
954
953
  let getOpenAppData = { ...data };
955
954
  try {
956
955
  const { sourceInfo, designerId, templateId, source } = getOpenAppData;
957
956
  if (designerId && templateId) {
958
957
  getOpenAppData = Object.assign({}, getOpenAppData, {
959
958
  sourceInfo: {
960
959
  entrance: '设计师预览',
961
960
  },
962
961
  });
963
962
  } else if (sourceInfo) {
964
963
  const { entrance } = sourceInfo;
965
964
  getOpenAppData.sourceInfo.entrance = entrance && entrance.length > 0 ? entrance : '其他';
966
965
  } else if (source && !sourceInfo) {
967
966
  if (typeof source === 'object') {
968
967
  const { sourceType, entrance, sourceValue, moduleId } = source;
969
968
  getOpenAppData = Object.assign({}, getOpenAppData, {
970
969
  sourceInfo: {
971
970
  entrance: sourceType || entrance || '其他',
972
971
  moduleId: sourceValue || moduleId || '-100',
973
972
  },
974
973
  });
975
974
  if (sourceType === 'shop_from_product_detail' && sourceValue) {
976
975
  getOpenAppData.sourceSku = sourceValue;
977
976
  }
978
977
  } else {
979
978
  getOpenAppData = Object.assign({}, getOpenAppData, {
980
979
  sourceInfo: {
981
980
  entrance: source,
982
981
  },
983
982
  });
984
983
  }
985
984
  } else {
986
985
  getOpenAppData = Object.assign({}, getOpenAppData, {
987
986
  sourceInfo: {
988
987
  entrance: '其他',
989
988
  },
990
989
  });
991
990
  }
992
991
  } catch (e) {
993
992
  console.log(e);
994
993
  }
995
994
  return getOpenAppData;
996
995
  }
997
996
  return data;
998
997
  return displayObj;
999
998
  if (typeof input === 'string') {
1000
999
  try {
1001
1000
  return JSON.parse(input);
1002
1001
  } catch (e) {
1003
1002
  console.error('JSON解析失败', e);
1004
1003
  return {};
1005
1004
  }
1006
1005
  }
1007
1006
  return input || {};
1008
1007
  return false;
1009
1008
  const borderStyle: { [key: string]: any } = {};
1010
1009
  if (item?.borderRadius) {
1011
1010
  let borderTopRadius = 0;
1012
1011
  let borderBottomRadius = 0;
1013
1012
  if (index === 0) {
1014
1013
  borderTopRadius = item.borderRadius;
1015
1014
  borderBottomRadius = floorDataLen === 1 || item?.marginBottom !== 0 ? item.borderRadius : 0;
1016
1015
  } else if (index === floorDataLen - 1) {
1017
1016
  borderTopRadius = floorData[index - 1]?.marginBottom === 0 ? 0 : item.borderRadius;
1018
1017
  borderBottomRadius = item.borderRadius;
1019
1018
  } else {
1020
1019
  borderTopRadius = floorData[index - 1]?.marginBottom === 0 ? 0 : item.borderRadius;
1021
1020
  borderBottomRadius = item?.marginBottom === 0 ? 0 : item.borderRadius;
1022
1021
  }
1023
1022
  borderStyle.borderTopLeftRadius = item?.borderTopLeftRadius
1024
1023
  ? `${item?.borderTopLeftRadius}px`
1025
1024
  : `${borderTopRadius}px`;
1026
1025
  borderStyle.borderTopRightRadius = item?.borderTopRightRadius
1027
1026
  ? `${item?.borderTopRightRadius}px`
1028
1027
  : `${borderTopRadius}px`;
1029
1028
  borderStyle.borderBottomLeftRadius = `${borderBottomRadius}px`;
1030
1029
  borderStyle.borderBottomRightRadius = `${borderBottomRadius}px`;
1031
1030
  } else {
1032
1031
  borderStyle.borderTopLeftRadius = borderStyle?.borderTopLeftRadius || '0px';
1033
1032
  borderStyle.borderTopRightRadius = borderStyle?.borderTopRightRadius || '0px';
1034
1033
  borderStyle.borderBottomRightRadius = borderStyle?.borderBottomRightRadius || '0px';
1035
1034
  borderStyle.borderBottomLeftRadius = borderStyle?.borderBottomLeftRadius || '0px';
1036
1035
  }
1037
1036
  return borderStyle;
1038
1037
  isJdApp,
1039
1038
  isWxApp,
1040
1039
  isAscfApp,
1041
1040
  isIosDevice,
1042
1041
  isAndroidDevice,
1043
1042
  isJdAndIosDevice,
1044
1043
  isJdAndAndroidDevice,
1045
1044
  isWxMin,
1046
1045
  isWxMinAndWxapp,
1047
1046
  isJdMin,
1048
1047
  isMin,
1049
1048
  isJdMinAndHarmony,
1050
1049
  isH5,
1051
1050
  isH5AndJdShopView,
1052
1051
  isImageOptimizeEnable,
1053
1052
  isChartH5,
1054
1053
  isH5AndJdShopViewNativeScroll,
1055
1054
  isH5AndJdShopViewH5Scroll,
1056
1055
  isH5AndJdShopH5CustomScrollView,
1057
1056
  isWxMiniH5View,
1058
1057
  sliceArrToChunkList,
1059
1058
  dealAddress,
1060
1059
  objectToUrlEncode,
1061
1060
  parseQueryUrlString,
1062
1061
  setLowSmallPicUrl,
1063
1062
  getJfsImage,
1064
1063
  getQualityImage,
1065
1064
  countStringify,
1066
1065
  setTaroStorage,
1067
1066
  getTaroStorageKeyValue,
1068
1067
  removeTaroStorageKey,
1069
1068
  clearTaroStorageKey,
1070
1069
  getSystemInfos,
1071
1070
  addHttps,
1072
1071
  dateFormat,
1073
1072
  throttle,
1074
1073
  lodashThrottle,
1075
1074
  debounce,
1076
1075
  getTelephone,
1077
1076
  rgbToHex,
1078
1077
  hexToRgb,
1079
1078
  getRandom,
1080
1079
  getWxAppCookieStr,
1081
1080
  pxTransformFromData,
1082
1081
  dealShopContentData,
1083
1082
  showSuccessToast,
1084
1083
  showFailToast,
1085
1084
  showNormalToast,
1086
1085
  showShopLoading,
1087
1086
  hideShopLoading,
1088
1087
  getAppChannelType,
1089
1088
  formatTabActiveMenuType,
1090
1089
  filterUrlQueryData,
1091
1090
  getAvifSupport,
1092
1091
  getWebpSupport,
1093
1092
  isMemberPage,
1094
1093
  draCustomReport,
1095
1094
  remoteCustomReport,
1096
1095
  draInterfaceCustomReport,
1097
1096
  draBusinessCustomReport,
1098
1097
  draBusinessCustomLogReport,
1099
1098
  isOpenJdAppUrl,
1100
1099
  jdOpenAppParams,
1101
1100
  createJdOpenAppUrl,
1102
1101
  dealJdOpenAppData,
1103
1102
  isEmpty,
1104
1103
  getJdAppReportPageSource,
1105
1104
  isAppClassifyPage,
1106
1105
  getQualityImageNew,
1107
1106
  getQualityImageOld,
1108
1107
  isPc,
1109
1108
  isPcClassifyPage,
1110
1109
  ipLoc_djd,
1111
1110
  jdAppVersionCompare,
1112
1111
  dealNativePixelToCssPixel,
1113
1112
  isAppStowShop,
1114
1113
  isIpadDevice,
1115
1114
  getBorderStyle,
1116
1115
  isLanguageForEn,
1117
1116
  sColor,
1118
1117
  isTabletDevice,
1119
1118
  isInHarmonyBlacklistByModuleFlag,
1120
1119
  isJdLiteApp,
1121
1120
  isJdAppForNotMain,
1121
+ import Taro from '@tarojs/taro';
1122
1122
  SHOP_MENU_ID_TYPE,
1123
1123
  SHOP_MENU_ID_QUERY_NAME,
1124
1124
  SECTION_HOME_TAB_TYPE,
1125
1125
  SECTION_HOME_TAB_NAME_TYPE,
1126
1126
  SECTION_HOME_TAB_QUERY_TYPE,
1127
1127
  SECTION_HOME_CUSTOM_TAB_TYPE_ARRAY,
1128
1128
  CHANNEL_TYPE,
1129
1129
  JDShopViewBusinessPathType,
1130
1130
  FloorModuleType,
1131
1131
  RemoteLoadFloorList,
1132
1132
  FLOOR_KIND,
1133
1133
  getBundleUrl,
1134
1134
  getBundleFileName,
1135
1135
  formatPackResult,
1136
1136
  getTaroVersion,
1137
1137
  /ipad/i.test(system) || (/android/i.test(system) && !/mobi|mini|fennec/i.test(system));
1138
1138
  key: string,
1139
1139
  value: string | object,
1140
1140
  successBack?: any,
1141
1141
  failBack?: any,
1142
1142
  try {
1143
1143
  if (isH5 && window && !window.localStorage) {
1144
1144
  console.log(`setTaroStorage key:${key} window.localStorage不存在:`);
1145
1145
  return Promise.resolve(null);
1146
1146
  }
1147
1147
  return Taro.setStorage({
1148
1148
  key: key,
1149
1149
  data: value,
1150
1150
  success: successBack,
1151
1151
  fail: failBack,
1152
1152
  }).catch((e) => {
1153
1153
  console.log(`setTaroStorage key:${key} 报错:`, e);
1154
1154
  return null;
1155
1155
  });
1156
1156
  } catch (e) {
1157
1157
  console.log(`setTaroStorage key:${key} 报错:`, e);
1158
1158
  return Promise.resolve(null);
1159
1159
  }
1160
1160
  try {
1161
1161
  if (isH5 && window && !window.localStorage) {
1162
1162
  console.log(`getTaroStorageKeyValue key:${key} window.localStorage不存在:`);
1163
1163
  return Promise.resolve(null);
1164
1164
  }
1165
1165
  return Taro.getStorageSync(key);
1166
1166
  } catch (e) {
1167
1167
  console.log(`getTaroStorageKeyValue key:${key} 报错:`, e);
1168
1168
  return null;
1169
1169
  }
1170
1170
  try {
1171
1171
  if (isH5 && window && !window.localStorage) {
1172
1172
  console.log(`removeTaroStorageKey key:${key} window.localStorage不存在:`);
1173
1173
  return Promise.resolve(null);
1174
1174
  }
1175
1175
  return Taro.removeStorage({
1176
1176
  key: key,
1177
1177
  }).catch((e) => {
1178
1178
  console.log(`removeTaroStorageKey key:${key} 报错:`, e);
1179
1179
  });
1180
1180
  } catch (e) {
1181
1181
  console.log(`removeTaroStorageKey key:${key} 报错:`, e);
1182
1182
  }
1183
1183
  try {
1184
1184
  if (isH5 && window && !window.localStorage) {
1185
1185
  console.log(`clearTaroStorageKey window.localStorage不存在`);
1186
1186
  return Promise.resolve(null);
1187
1187
  }
1188
1188
  return Taro.clearStorage().catch((e) => {
1189
1189
  console.log('clearTaroStorageKey报错:', e);
1190
1190
  });
1191
1191
  } catch (e) {
1192
1192
  console.log('clearTaroStorageKey报错:', e);
1193
1193
  }
1194
1194
  let hasChecked = false;
1195
1195
  if (isH5) {
1196
1196
  const avifCache = getTaroStorageKeyValue(KEY_AVIF);
1197
1197
  if (avifCache === null || avifCache === '' || forceUpdate) {
1198
1198
  hasChecked = true;
1199
1199
  const img = new Image();
1200
1200
  img.onload = function () {
1201
1201
  if (img.height > 0 && img.width > 0) {
1202
1202
  setTaroStorage(KEY_AVIF, '1');
1203
1203
  } else {
1204
1204
  setTaroStorage(KEY_AVIF, '0');
1205
1205
  }
1206
1206
  };
1207
1207
  img.onerror = () => {
1208
1208
  setTaroStorage(KEY_AVIF, '0');
1209
1209
  };
1210
1210
  img.src =
1211
1211
  'data:image/avif;base64,AAAAIGZ0eXBhdmlmAAAAAGF2aWZtaWYxbWlhZk1BMUIAAADybWV0YQAAAAAAAAAoaGRscgAAAAAAAAAAcGljdAAAAAAAAAAAAAAAAGxpYmF2aWYAAAAADnBpdG0AAAAAAAEAAAAeaWxvYwAAAABEAAABAAEAAAABAAABGgAAAB0AAAAoaWluZgAAAAAAAQAAABppbmZlAgAAAAABAABhdjAxQ29sb3IAAAAAamlwcnAAAABLaXBjbwAAABRpc3BlAAAAAAAAAAIAAAACAAAAEHBpeGkAAAAAAwgICAAAAAxhdjFDgQ0MAAAAABNjb2xybmNseAACAAIAAYAAAAAXaXBtYQAAAAAAAAABAAEEAQKDBAAAACVtZGF0EgAKCBgANogQEAwgMg8f8D///8WfhwB8+ErK42A=';
1212
1212
  }
1213
1213
  const webpCache = getTaroStorageKeyValue(KEY_WEBP);
1214
1214
  if (webpCache === null || webpCache === '' || forceUpdate) {
1215
1215
  hasChecked = true;
1216
1216
  const img = new Image();
1217
1217
  img.onload = function () {
1218
1218
  if (img.height > 0 && img.width > 0) {
1219
1219
  setTaroStorage(KEY_WEBP, '1');
1220
1220
  } else {
1221
1221
  setTaroStorage(KEY_WEBP, '0');
1222
1222
  }
1223
1223
  };
1224
1224
  img.onerror = () => {
1225
1225
  setTaroStorage(KEY_WEBP, '0');
1226
1226
  };
1227
1227
  img.src =
1228
1228
  'data:image/webp;base64,UklGRiQAAABXRUJQVlA4IBgAAAAwAQCdASoBAAEAAUAmJaQAA3AA/vz0AAA=';
1229
1229
  }
1230
1230
  }
1231
1231
  return hasChecked;
1232
1232
  const hasChecked = imageFormatSupport(false);
1233
1233
  if (!hasChecked) {
1234
1234
  setTimeout(imageFormatSupport, 5000);
1235
1235
  }
1236
1236
  const resultList: Array<any> = [],
1237
1237
  arrLen = arr.length;
1238
1238
  if (arrLen) {
1239
1239
  if (arrLen > size) {
1240
1240
  for (let i = 0; i < arrLen; i = i + size) {
1241
1241
  resultList.push(arr.slice(i, i + size));
1242
1242
  }
1243
1243
  } else {
1244
1244
  resultList.push(arr);
1245
1245
  }
1246
1246
  }
1247
1247
  return resultList;
1248
1248
  let _address = ids;
1249
1249
  const _areaAreaSplit = ids.split('.');
1250
1250
  const _areaAreaSplit2 = ids.split('_');
1251
1251
  _address = _areaAreaSplit.length === 2 ? _areaAreaSplit[0] : _address;
1252
1252
  _address = _areaAreaSplit2.length === 3 ? `${_areaAreaSplit2}_0` : _address;
1253
1253
  return _address;
1254
1254
  let paramStr = '';
1255
1255
  obj &&
1256
1256
  Object.keys(obj).forEach((key, index) => {
1257
1257
  const getValue = `${obj[key]}`.replace(/undefined/, '').replace(/null/, '');
1258
1258
  paramStr += `${index === 0 ? '' : '&'}${key}=${encodeURIComponent(getValue)}`;
1259
1259
  });
1260
1260
  return paramStr;
1261
1261
  const result = {};
1262
1262
  if (
1263
1263
  !urlOrQueryStr ||
1264
1264
  ('string' !== typeof urlOrQueryStr && String !== urlOrQueryStr.constructor)
1265
1265
  ) {
1266
1266
  return result;
1267
1267
  }
1268
1268
  if (urlOrQueryStr && urlOrQueryStr.indexOf('channelSource=appShop') > -1) {
1269
1269
  result['channelSource'] = 'appShop';
1270
1270
  }
1271
1271
  if (urlOrQueryStr.indexOf('?') > -1) {
1272
1272
  const queryStr = urlOrQueryStr.split('?');
1273
1273
  const queryItemList = queryStr && queryStr.length > 1 ? queryStr[1].split('&') : [];
1274
1274
  const queryItemListLen = queryItemList.length;
1275
1275
  queryItemListLen > 0 &&
1276
1276
  queryItemList.forEach((item) => {
1277
1277
  const thisItemList = item.split('=');
1278
1278
  result[thisItemList[0]] = thisItemList[1];
1279
1279
  });
1280
1280
  } else {
1281
1281
  const queryItemList =
1282
1282
  urlOrQueryStr.indexOf('&') > -1 ? urlOrQueryStr.split('&') : [urlOrQueryStr];
1283
1283
  const queryItemListLen = queryItemList.length;
1284
1284
  queryItemListLen > 0 &&
1285
1285
  queryItemList.forEach((item) => {
1286
1286
  const thisItemList = item.split('=');
1287
1287
  result[thisItemList[0]] = thisItemList[1];
1288
1288
  });
1289
1289
  }
1290
1290
  return result;
1291
1291
  url: string,
1292
1292
  size?: {
1293
1293
  w: number;
1294
1294
  h: number;
1295
1295
  },
1296
1296
  quality?: number,
1297
1297
  if (url && size) {
1298
1298
  const _w = Math.floor(size.w);
1299
1299
  const _h = Math.floor(size.h);
1300
1300
  if (url.match(/gif$/i)) {
1301
1301
  return url;
1302
1302
  } else {
1303
1303
  if (_w > 0 && _h > 0) {
1304
1304
  url = url.replace('jfs/', `s${_w}x${_h}_jfs/`);
1305
1305
  }
1306
1306
  url += quality != null ? `!q${quality}.dpg` : '.dpg';
1307
1307
  }
1308
1308
  }
1309
1309
  return url;
1310
1310
  if (url.match(/\.(jpg|png|dpg)$/i)) {
1311
1311
  const { width, height, quality } = jfsImgInfo;
1312
1312
  if (typeof width === 'number' || typeof height === 'number') {
1313
1313
  url = url.replace('/jfs/', `/s${Math.floor(width || 0)}x${Math.floor(height || 0)}_jfs/`);
1314
1314
  }
1315
1315
  if (typeof quality === 'number' && quality > 0 && quality < 100 && url.match(/\.jpg$/i)) {
1316
1316
  url += `!q${quality}.dpg`;
1317
1317
  }
1318
1318
  }
1319
1319
  return addHttps(url);
1320
1320
  if (imgUrl) {
1321
1321
  if (
1322
1322
  !imgUrl.match(
1323
1323
  /(storage\.360buyimg\.com)|(jdcloud-oss\.com)|(imgcps\.jd\.com)|((\w+)\.300hu\.com)|(thirdwx\.qlogo\.cn)|(!q)|gif|dpg$/i,
1324
1324
  )
1325
1325
  ) {
1326
1326
  if (!imgUrl.includes('360buyimg.com')) {
1327
1327
  imgUrl = '//m.360buyimg.com/cms/' + imgUrl;
1328
1328
  }
1329
1329
  if (quality != 100) imgUrl += /\.png/.test(imgUrl) ? '.dpg' : `!q${quality}`;
1330
1330
  }
1331
1331
  imgUrl = imgUrl.match(/^\/\//) ? `https:${imgUrl}` : imgUrl;
1332
1332
  }
1333
1333
  return imgUrl;
1334
1334
  const result = value % step;
1335
1335
  return result === 0 ? value : Math.ceil(value / step) * step;
1336
1336
  const MAX = 3.5;
1337
1337
  return Math.min(window?.devicePixelRatio ?? 2, MAX);
1338
1338
  isSkuImage: boolean;
1339
1339
  size: number;
1340
1340
  sizeScale: number;
1341
1341
  imgUrl: string,
1342
1342
  options: QualityOptions,
1343
1343
  isIgnoreOptimizeFromServer: boolean = false,
1344
1344
  if (!imgUrl) {
1345
1345
  console.error('The input parameter imageUrl for the getQualityImage() cannot be empty!');
1346
1346
  return imgUrl;
1347
1347
  }
1348
1348
  if (isIgnoreOptimizeFromServer) {
1349
1349
  imgUrl = imgUrl.replace(/\.(jpe?g|png).*/, '.$1');
1350
1350
  }
1351
1351
  if (!/^((https?):)?\/\//.test(imgUrl)) {
1352
1352
  imgUrl = '//m.360buyimg.com/cms/' + imgUrl;
1353
1353
  }
1354
1354
  const imgServerRegExp = /(img|m)\d{0,2}\.360buyimg\.com\/.*\.(jpe?g|png)/i;
1355
1355
  if (!imgServerRegExp.test(imgUrl)) {
1356
1356
  return imgUrl;
1357
1357
  }
1358
1358
  imgUrl = /^\/\//.test(imgUrl) ? `https:${imgUrl}` : imgUrl;
1359
1359
  const { isSkuImage, size, sizeScale = 1 } = options || {};
1360
1360
  const getSizeScale = Number(sizeScale);
1361
1361
  const needReduceSize = isSkuImage && size;
1362
1362
  if (needReduceSize) {
1363
1363
  const devicePixelRatio = getDevicePixelRatio();
1364
1364
  const useWidth = getValueByStep(size * devicePixelRatio, 40);
1365
1365
  const useHeight =
1366
1366
  getSizeScale > 0 && getSizeScale !== 1 ? Math.round(useWidth * Number(sizeScale)) : useWidth;
1367
1367
  imgUrl = imgUrl.replace(/\/[^\/]*jfs\//, `/s${useWidth}x${useHeight}_jfs/`);
1368
1368
  }
1369
1369
  const needCompress = !global?.info?.pageInfo?.isVipShop;
1370
1370
  const result = imgUrl.match(/\/\w+\.(jpe?g|png)$/);
1371
1371
  if (needCompress && result) {
1372
1372
  if (getAvifSupport() === '1') {
1373
1373
  imgUrl += '.avif';
1374
1374
  } else if (getWebpSupport() === '1') {
1375
1375
  imgUrl += '.webp';
1376
1376
  } else if (/jpe?g/.test(result[1])) {
1377
1377
  imgUrl += '!q80';
1378
1378
  }
1379
1379
  }
1380
1380
  if (needReduceSize) {
1381
1381
  imgUrl += '!z2';
1382
1382
  }
1383
1383
  return imgUrl;
1384
1384
  if (imgUrl) {
1385
1385
  if (
1386
1386
  !imgUrl.match(
1387
1387
  /(storage\.360buyimg\.com)|(jdcloud-oss\.com)|((\w+)\.300hu\.com)|(thirdwx\.qlogo\.cn)|(!q)|gif|dpg$/i,
1388
1388
  )
1389
1389
  ) {
1390
1390
  if (!imgUrl.includes('360buyimg.com')) {
1391
1391
  imgUrl = '//m.360buyimg.com/cms/' + imgUrl;
1392
1392
  }
1393
1393
  if (quality != 100) imgUrl += /\.png/.test(imgUrl) ? '.dpg' : `!q${quality}`;
1394
1394
  }
1395
1395
  imgUrl = imgUrl.match(/^\/\//) ? `https:${imgUrl}` : imgUrl;
1396
1396
  }
1397
1397
  return imgUrl;
1398
1398
  return getTaroStorageKeyValue(KEY_AVIF) || '0';
1399
1399
  return getTaroStorageKeyValue(KEY_WEBP) || '0';
1400
1400
  count: number,
1401
1401
  fixedNum = 1,
1402
1402
  unit = '万',
1403
1403
  maxNum = 10000,
1404
1404
  count = Number(count);
1405
1405
  const getMaxNum = count > 100000000 ? 100000000 : maxNum;
1406
1406
  const getUnit = count > 100000000 ? '亿' : unit;
1407
1407
  if (count >= getMaxNum) {
1408
1408
  return (count / getMaxNum).toFixed(fixedNum) + getUnit;
1409
1409
  }
1410
1410
  return count;
1411
1411
  const systemInfo: UtilsInterFace.taroGetSystemInfoSyncRes = getSystemInfo || {
1412
1412
  platform: '',
1413
1413
  model: '',
1414
1414
  system: '',
1415
1415
  };
1416
1416
  const isIOS = !!systemInfo.system.match(/ios/i);
1417
1417
  const isAndroid = !!systemInfo.system.match(/android/i);
1418
1418
  if (!systemInfo.statusBarHeight) {
1419
1419
  systemInfo.statusBarHeight = screenHeight - windowHeight - 20;
1420
1420
  systemInfo.navBarExtendHeight = 0;
1421
1421
  } else {
1422
1422
  if (isIOS) {
1423
1423
  systemInfo.navBarExtendHeight = 4;
1424
1424
  } else {
1425
1425
  systemInfo.navBarExtendHeight = 0;
1426
1426
  }
1427
1427
  }
1428
1428
  let rect = Taro.getMenuButtonBoundingClientRect ? Taro.getMenuButtonBoundingClientRect() : null;
1429
1429
  if (!rect || !rect.width || !rect.top || !rect.left || !rect.height) {
1430
1430
  let gap = 0;
1431
1431
  let width = 96;
1432
1432
  if (systemInfo.platform === 'android') {
1433
1433
  gap = 8;
1434
1434
  width = 96;
1435
1435
  } else if (systemInfo.platform === 'devtools') {
1436
1436
  if (isIOS) {
1437
1437
  gap = 5.5;
1438
1438
  } else {
1439
1439
  gap = 7.5;
1440
1440
  }
1441
1441
  } else {
1442
1442
  gap = 4;
1443
1443
  width = 88;
1444
1444
  }
1445
1445
  rect = {
1446
1446
  bottom: systemInfo.statusBarHeight + gap + 32,
1447
1447
  height: 32,
1448
1448
  left: systemInfo.windowWidth - width - 10,
1449
1449
  right: systemInfo.windowWidth - 10,
1450
1450
  top: systemInfo.statusBarHeight + gap,
1451
1451
  width,
1452
1452
  };
1453
1453
  }
1454
1454
  const gap = rect.top - systemInfo.statusBarHeight;
1455
1455
  systemInfo.navBarTopToStatusBar = gap;
1456
1456
  systemInfo.navBarHeight = 2 * gap + rect.height;
1457
1457
  systemInfo.capsulePosition = rect;
1458
1458
  systemInfo.isIOS = isIOS;
1459
1459
  systemInfo.isAndroid = isAndroid;
1460
1460
  return systemInfo;
1461
1461
  if (str.match(/^\/\//)) {
1462
1462
  str = 'https:' + str;
1463
1463
  }
1464
1464
  return str;
1465
1465
  dateTimeOrdate: Date | string | number | null,
1466
1466
  format = 'yyyy-MM-dd HH:mm:ss',
1467
1467
  noPadStart = {
1468
1468
  M: '0',
1469
1469
  d: '0',
1470
1470
  H: '0',
1471
1471
  m: '0',
1472
1472
  s: '0',
1473
1473
  },
1474
1474
  let dateResult = '';
1475
1475
  const padStarts = Object.assign(
1476
1476
  {
1477
1477
  M: '0',
1478
1478
  d: '0',
1479
1479
  H: '0',
1480
1480
  m: '0',
1481
1481
  s: '0',
1482
1482
  },
1483
1483
  noPadStart,
1484
1484
  );
1485
1485
  if (dateTimeOrdate) {
1486
1486
  let changeDateTimeOrdate = dateTimeOrdate;
1487
1487
  const getChangeDateTimeToNumber = Number(changeDateTimeOrdate);
1488
1488
  if (getChangeDateTimeToNumber) {
1489
1489
  changeDateTimeOrdate = getChangeDateTimeToNumber;
1490
1490
  } else {
1491
1491
  changeDateTimeOrdate = `${changeDateTimeOrdate}`.replace(/-/g, '/').replace(/\./g, '/');
1492
1492
  }
1493
1493
  const nowDate =
1494
1494
  dateTimeOrdate instanceof Date ? dateTimeOrdate : new Date(changeDateTimeOrdate);
1495
1495
  const dateMap = {
1496
1496
  y: `${nowDate.getFullYear()}`,
1497
1497
  M: `${nowDate.getMonth() + 1}`.padStart(2, padStarts['M']),
1498
1498
  d: `${nowDate.getDate()}`.padStart(2, padStarts['d']),
1499
1499
  H: `${nowDate.getHours()}`.padStart(2, padStarts['H']),
1500
1500
  m: `${nowDate.getMinutes()}`.padStart(2, padStarts['m']),
1501
1501
  s: `${nowDate.getSeconds()}`.padStart(2, padStarts['s']),
1502
1502
  };
1503
1503
  const regDate = new RegExp('y+|M+|d+|H+|m+|s+', 'g');
1504
1504
  const regYear = new RegExp('y');
1505
1505
  dateResult = format.replace(regDate, (v) => {
1506
1506
  let changeValue = v;
1507
1507
  if (regYear.test(changeValue)) {
1508
1508
  const thisYear = dateMap.y;
1509
1509
  const subValueLen = 4 - changeValue.length;
1510
1510
  changeValue = thisYear.substr(subValueLen);
1511
1511
  } else {
1512
1512
  const dateKey = v.substr(0, 1);
1513
1513
  changeValue = dateMap[dateKey];
1514
1514
  }
1515
1515
  return changeValue;
1516
1516
  });
1517
1517
  }
1518
1518
  return dateResult;
1519
1519
  let timer: any = null;
1520
1520
  let startTime = Date.now();
1521
1521
  return function () {
1522
1522
  const curTime = Date.now();
1523
1523
  const remaining = delay - (curTime - startTime);
1524
1524
  const context = this;
1525
1525
  const args = arguments;
1526
1526
  clearTimeout(timer);
1527
1527
  if (remaining <= 0) {
1528
1528
  func.apply(context, args);
1529
1529
  startTime = Date.now();
1530
1530
  } else {
1531
1531
  timer = setTimeout(func, remaining);
1532
1532
  }
1533
1533
  };
1534
1534
  let context, args, result;
1535
1535
  let timeout = null;
1536
1536
  let previous = 0;
1537
1537
  if (!options) options = {};
1538
1538
  const later = function () {
1539
1539
  previous = options.leading === false ? 0 : Date.now();
1540
1540
  timeout = null;
1541
1541
  result = func.apply(context, args);
1542
1542
  if (!timeout) context = args = null;
1543
1543
  };
1544
1544
  return function () {
1545
1545
  const now = Date.now();
1546
1546
  if (!previous && options.leading === false) previous = now;
1547
1547
  const remaining = wait - (now - previous);
1548
1548
  context = this;
1549
1549
  args = arguments;
1550
1550
  if (remaining <= 0 || remaining > wait) {
1551
1551
  if (timeout) {
1552
1552
  clearTimeout(timeout);
1553
1553
  timeout = null;
1554
1554
  }
1555
1555
  previous = now;
1556
1556
  result = func.apply(context, args);
1557
1557
  if (!timeout) context = args = null;
1558
1558
  } else if (!timeout && options.trailing !== false) {
1559
1559
  timeout = setTimeout(later, remaining);
1560
1560
  }
1561
1561
  return result;
1562
1562
  };
1563
1563
  let timer: any = null;
1564
1564
  return function () {
1565
1565
  const context: any = this;
1566
1566
  const args = arguments;
1567
1567
  timer && clearTimeout(timer);
1568
1568
  timer = setTimeout(function () {
1569
1569
  fn.apply(context, args);
1570
1570
  }, delay);
1571
1571
  };
1572
1572
  if (txt) {
1573
1573
  txt = txt.trim();
1574
1574
  const reg = new RegExp(/[\d-]+/);
1575
1575
  const res = reg.exec(txt);
1576
1576
  if (res && res.length > 0) {
1577
1577
  let tel = res[0];
1578
1578
  if (tel && delSeparator) {
1579
1579
  tel = tel.replace(/-/g, '');
1580
1580
  }
1581
1581
  return tel;
1582
1582
  }
1583
1583
  }
1584
1584
  return '';
1585
1585
  if (rgb) {
1586
1586
  const reg = /^(rgb|RGB)/;
1587
1587
  const color = rgb;
1588
1588
  if (reg.test(color)) {
1589
1589
  let strHex = '#';
1590
1590
  const colorArr = color.replace(/(?:\(|\)|rgb|RGB)*/g, '').split(',');
1591
1591
  for (let i = 0; i < colorArr.length; i++) {
1592
1592
  let hex = Number(colorArr[i]).toString(16);
1593
1593
  if (hex === '0') {
1594
1594
  hex += hex;
1595
1595
  }
1596
1596
  strHex += hex;
1597
1597
  }
1598
1598
  return strHex;
1599
1599
  } else {
1600
1600
  return String(color);
1601
1601
  }
1602
1602
  } else {
1603
1603
  return '';
1604
1604
  }
1605
1605
  if (hex) {
1606
1606
  const reg = /^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/;
1607
1607
  let color = hex.toLowerCase();
1608
1608
  if (reg.test(color)) {
1609
1609
  if (color.length === 4) {
1610
1610
  let colorNew = '#';
1611
1611
  for (let i = 1; i < 4; i += 1) {
1612
1612
  colorNew += color.slice(i, i + 1).concat(color.slice(i, i + 1));
1613
1613
  }
1614
1614
  color = colorNew;
1615
1615
  }
1616
1616
  const colorChange: number[] = [];
1617
1617
  for (let i = 1; i < 7; i += 2) {
1618
1618
  colorChange.push(parseInt('0x' + color.slice(i, i + 2)));
1619
1619
  }
1620
1620
  if (returnList) {
1621
1621
  return colorChange;
1622
1622
  } else {
1623
1623
  return 'RGB(' + colorChange.join(',') + ')';
1624
1624
  }
1625
1625
  } else {
1626
1626
  return color;
1627
1627
  }
1628
1628
  } else {
1629
1629
  return '';
1630
1630
  }
1631
1631
  const c = m - n + 1;
1632
1632
  const res = Math.floor(Math.random() * c + n);
1633
1633
  if (filterNum && filterNum == res) {
1634
1634
  console.log('随机数二次开始', res, filterNum);
1635
1635
  return getRandom(n, m, filterNum);
1636
1636
  } else {
1637
1637
  return res;
1638
1638
  }
1639
1639
  wqCookieStr: string;
1640
1640
  wqCookie: {
1641
1641
  pin?: string;
1642
1642
  visitkey?: string;
1643
1643
  [key: string]: any;
1644
1644
  };
1645
1645
 
1646
1646
  const {
1647
1647
  jdpin,
1648
1648
  pinStatus,
1649
1649
  visitkey,
1650
1650
  unionid,
1651
1651
  skey,
1652
1652
  __jda,
1653
1653
  __jdv,
1654
1654
  __wga,
1655
1655
  wid,
1656
1656
  wq_skey,
1657
1657
  wq_uin,
1658
1658
  wq_auth_token,
1659
1659
  wxapp_scene,
1660
1660
  wq_unionid,
1661
1661
  wxapp_openid,
1662
1662
  wxapp_version,
1663
1663
  wxapp_type,
1664
1664
  appType,
1665
1665
  lbs_addr,
1666
1666
  pt_key,
1667
1667
  } = cookie;
1668
1668
  const ret: string[] = [];
1669
1669
  const getUserCookieObj = {};
1670
1670
  const createUseCookieArr = [
1671
1671
  jdpin,
1672
1672
  pinStatus,
1673
1673
  visitkey,
1674
1674
  unionid,
1675
1675
  skey,
1676
1676
  __jda,
1677
1677
  __jdv,
1678
1678
  __wga,
1679
1679
  wid,
1680
1680
  wq_skey,
1681
1681
  wq_uin,
1682
1682
  wq_auth_token,
1683
1683
  wxapp_scene,
1684
1684
  wq_unionid,
1685
1685
  wxapp_openid,
1686
1686
  wxapp_version,
1687
1687
  wxapp_type,
1688
1688
  appType,
1689
1689
  lbs_addr,
1690
1690
  pt_key,
1691
1691
  ];
1692
1692
 
1693
1693
  createUseCookieArr.forEach((keyItem) => {
1694
1694
  if (keyItem && keyItem['name']) {
1695
1695
  let { name, value } = keyItem;
1696
1696
  name = name === 'jdpin' ? 'pin' : name;
1697
1697
  name === 'pin' && ret.push(`pt_pin=${encodeURIComponent(value)}`);
1698
1698
  ret.push(`${name}=${encodeURIComponent(value)}`);
1699
1699
  getUserCookieObj[name] = value;
1700
1700
  }
1701
1701
  });
1702
1702
  return {
1703
1703
  wqCookieStr: ret.join(';'),
1704
1704
  wqCookie: getUserCookieObj,
1705
1705
  };
1706
1706
  const getLayoutWidth = layoutWidth || global.info?.sysInfo?.windowWidth || windowWidth;
1707
1707
  const getNum = Number(num);
1708
1708
  return Math.round((getNum / widthSize) * getLayoutWidth);
1709
1709
  let checkState = false;
1710
1710
  const couponFloorModuleType = floorData?.floorExtInfo?.moduleFlag;
1711
1711
  if (couponFloorModuleType === FloorModuleType.COUPON) {
1712
1712
  try {
1713
1713
  const dataDefines = getFloorDataToDataDefines(floorData);
1714
1714
  const couponDataDefine = dataDefines
1715
1715
  ? dataDefines.filter((item) => {
1716
1716
  return item.type === 'coupon';
1717
1717
  })
1718
1718
  : [],
1719
1719
  couponList = couponDataDefine[0]?.nodeText?.data ? couponDataDefine[0]?.nodeText?.data : [],
1720
1720
  couponLength = couponList.length,
1721
1721
  numShowPerLine = couponDataDefine[0]?.nodeText?.numShowPerLine
1722
1722
  ? couponDataDefine[0]?.nodeText?.numShowPerLine
1723
1723
  : 0;
1724
1724
  if (numShowPerLine === 0 && couponLength > 3) {
1725
1725
  checkState = true;
1726
1726
  }
1727
1727
  } catch (e) {
1728
1728
  checkState = false;
1729
1729
  }
1730
1730
  return checkState;
1731
1731
  }
1732
1732
  const {
1733
1733
  containers = [],
1734
1734
  floors = [],
1735
1735
  homeExtInfo = {},
1736
1736
  clearFirstContaierMarginTop = false,
1737
1737
  } = pageData;
1738
1738
  console.log('dealShopContentData:', pageData, 'isvdev:', isvdev, 'homeExtInfo:', homeExtInfo);
1739
1739
  const getThisTimeKey = Date.now();
1740
1740
  let shopContentContainerListData = containers?.filter(
1741
1741
  (item) => (!isvdev && item.typeCode !== 'mShopHeader') || isvdev,
1742
1742
  );
1743
1743
  const shopContentFloorListData = floors?.filter(
1744
1744
  ({ floorPosition }) =>
1745
1745
  (!isvdev && floorPosition !== 'header' && floorPosition !== 'footer') || isvdev,
1746
1746
  );
1747
1747
  const unableIsvContainerListData = getUnableIsvContainerListData(
1748
1748
  shopContentFloorListData,
1749
1749
  shopContentContainerListData,
1750
1750
  exceptionReportFn,
1751
1751
  );
1752
1752
  shopContentContainerListData.forEach((item, index) => {
1753
1753
  item.key = `${getThisTimeKey + index}`;
1754
1754
  item.floors = [];
1755
1755
  item.includeUids &&
1756
1756
  item.includeUids.forEach((floorUid) => {
1757
1757
  const getFloorData = shopContentFloorListData.find(
1758
1758
  (floorItem) => floorItem.uid === floorUid,
1759
1759
  );
1760
1760
  if (getFloorData) {
1761
1761
  const changeFloorData = {
1762
1762
  containerId: item.containerId,
1763
1763
  containerIndex: index,
1764
1764
  ...getFloorData,
1765
1765
  };
1766
1766
  if (homeExtInfo?.pageThemColorType) {
1767
1767
  changeFloorData.pageThemColorType = homeExtInfo.pageThemColorType;
1768
1768
  }
1769
1769
  const getCheckMoreCouponState = checkCouponAndChangeContainerSetData(getFloorData);
1770
1770
  if (getCheckMoreCouponState) {
1771
1771
  item.marginLeft && (item.marginLeft = 0);
1772
1772
  item.marginRight && (item.marginRight = 0);
1773
1773
  item.borderRadius && (item.borderRadius = 0);
1774
1774
  }
1775
1775
  if (getFloorData?.floorExtInfo?.floorLoadWay === 2) {
1776
1776
  const getSysFloorToLoadTypeRes = isIsvFloorUseable(getFloorData, exceptionReportFn);
1777
1777
  !getSysFloorToLoadTypeRes && (getFloorData.floorExtInfo.floorLoadWay = 1);
1778
1778
  }
1779
1779
  item.floors.push(changeFloorData);
1780
1780
  }
1781
1781
  });
1782
1782
  if (
1783
1783
  ((!isvdev && index === 0) || (isvdev && index === 1)) &&
1784
1784
  item?.containerPosition == 'content' &&
1785
1785
  item?.marginBottom > 0 &&
1786
1786
  !clearFirstContaierMarginTop
1787
1787
  ) {
1788
1788
  item.marginTop = item.marginBottom;
1789
1789
  }
1790
1790
  });
1791
1791
  shopContentContainerListData = shopContentContainerListData.filter(
1792
1792
  (item) =>
1793
1793
  item.floors.length > 0 &&
1794
1794
  unableIsvContainerListData.every(
1795
1795
  (containerItem) => containerItem.containerId != item.containerId,
1796
1796
  ),
1797
1797
  );
1798
1798
  console.log(
1799
1799
  'dealShopContentData isWxMinAndWxapp:',
1800
1800
  isWxMinAndWxapp,
1801
1801
  'weappJumpToH5:',
1802
1802
  pageData?.homeExtInfo?.weappJumpToH5,
1803
1803
  );
1804
1804
  if (isProd && isWxMinAndWxapp) {
1805
1805
  shopContentContainerListData = shopContentContainerListData.filter(
1806
1806
  (item) =>
1807
1807
  item.floors.length > 0 &&
1808
1808
  !isIsvContainer(item.containerId, shopContentFloorListData, shopContentContainerListData),
1809
1809
  );
1810
1810
  }
1811
1811
  shopContentContainerListData = [].concat(shopContentContainerListData);
1812
1812
  return {
1813
1813
  shopContentContainerListData,
1814
1814
  shopContentFloorListData,
1815
1815
  };
1816
1816
  const changeOpts = {
1817
1817
  title: '',
1818
1818
  icon: 'success',
1819
1819
  duration: 1500,
1820
1820
  mask: true,
1821
1821
  ...options,
1822
1822
  };
1823
1823
  if (changeOpts.title.length > 7) {
1824
1824
  showNormalToast(options);
1825
1825
  } else {
1826
1826
  Taro.showToast(changeOpts as any);
1827
1827
  }
1828
1828
  const changeOpts = {
1829
1829
  title: '',
1830
1830
  icon: 'error',
1831
1831
  duration: 1500,
1832
1832
  mask: true,
1833
1833
  ...options,
1834
1834
  };
1835
1835
  if (changeOpts.title.length > 7) {
1836
1836
  showNormalToast(options);
1837
1837
  } else {
1838
1838
  Taro.showToast(changeOpts as any);
1839
1839
  }
1840
1840
  Taro.showToast({
1841
1841
  title: '',
1842
1842
  icon: 'none',
1843
1843
  duration: 1500,
1844
1844
  mask: true,
1845
1845
  ...options,
1846
1846
  });
1847
1847
  return Taro.showLoading({
1848
1848
  title: text,
1849
1849
  });
1850
1850
  return new Promise(() => {
1851
1851
  Taro.nextTick(() => {
1852
1852
  setTimeout(() => {
1853
1853
  Taro.hideLoading(options);
1854
1854
  }, 300);
1855
1855
  });
1856
1856
  });
1857
1857
  return CHANNEL_TYPE[JDShopViewBusinessPathType.HOME];
1858
1858
  const {
1859
1859
  tabActive = SECTION_HOME_TAB_NAME_TYPE[SECTION_HOME_TAB_TYPE.HOME_WELL_CHOSEN],
1860
1860
  sceneId,
1861
1861
  currentTabType,
1862
1862
  } = query;
1863
1863
  let changeTabActive = tabActive;
1864
1864
  if (sceneId) {
1865
1865
  if (isH5) {
1866
1866
  if (sceneId == '1002') {
1867
1867
  changeTabActive = SECTION_HOME_TAB_NAME_TYPE[SECTION_HOME_TAB_TYPE.HOME_PRODUCT];
1868
1868
  }
1869
1869
  else if (sceneId == '1003') {
1870
1870
  changeTabActive = SECTION_HOME_TAB_NAME_TYPE[SECTION_HOME_TAB_TYPE.HOME_ACTIVITY];
1871
1871
  }
1872
1872
  } else if (isWxMinAndWxapp) {
1873
1873
  if (sceneId == '1001' || sceneId == '1002') {
1874
1874
  changeTabActive = SECTION_HOME_TAB_NAME_TYPE[SECTION_HOME_TAB_TYPE.HOME_PRODUCT];
1875
1875
  }
1876
1876
  else if (sceneId == '1003') {
1877
1877
  changeTabActive = SECTION_HOME_TAB_NAME_TYPE[SECTION_HOME_TAB_TYPE.HOME_PROMOTION];
1878
1878
  }
1879
1879
  }
1880
1880
  }
1881
1881
  if (SECTION_HOME_TAB_QUERY_TYPE[changeTabActive]) {
1882
1882
  if (
1883
1883
  !isNaN(currentTabType) &&
1884
1884
  SECTION_HOME_CUSTOM_TAB_TYPE_ARRAY.indexOf(currentTabType) !== -1
1885
1885
  ) {
1886
1886
  return {
1887
1887
  menuType: SHOP_MENU_ID_TYPE.HOME,
1888
1888
  tabActiveType: currentTabType,
1889
1889
  queryMenuTabActiveStr: `${SHOP_MENU_ID_TYPE.HOME}@${currentTabType}`,
1890
1890
  };
1891
1891
  }
1892
1892
  return {
1893
1893
  menuType: SHOP_MENU_ID_TYPE.HOME,
1894
1894
  tabActiveType: SECTION_HOME_TAB_QUERY_TYPE[changeTabActive],
1895
1895
  queryMenuTabActiveStr: `${SHOP_MENU_ID_TYPE.HOME}@${SECTION_HOME_TAB_QUERY_TYPE[changeTabActive]}`,
1896
1896
  };
1897
1897
  } else if (SHOP_MENU_ID_QUERY_NAME[changeTabActive]) {
1898
1898
  return {
1899
1899
  menuType: SHOP_MENU_ID_QUERY_NAME[changeTabActive],
1900
1900
  tabActiveType: 0,
1901
1901
  queryMenuTabActiveStr: `${SHOP_MENU_ID_QUERY_NAME[changeTabActive]}@0`,
1902
1902
  };
1903
1903
  } else {
1904
1904
  const defaultMenuType = {
1905
1905
  menuType: SHOP_MENU_ID_TYPE.HOME,
1906
1906
  tabActiveType: SECTION_HOME_TAB_TYPE.HOME_WELL_CHOSEN,
1907
1907
  queryMenuTabActiveStr: `${SHOP_MENU_ID_TYPE.HOME}@${SECTION_HOME_TAB_TYPE.HOME_WELL_CHOSEN}`,
1908
1908
  };
1909
1909
  const isCustomTab = tabActive.indexOf(SECTION_HOME_TAB_NAME_TYPE.HOME_CUSTOM) !== -1;
1910
1910
  if (isCustomTab) {
1911
1911
  const customTabType = Number(tabActive.split('-')[2]);
1912
1912
  if (
1913
1913
  !isNaN(customTabType) &&
1914
1914
  SECTION_HOME_CUSTOM_TAB_TYPE_ARRAY.indexOf(customTabType) !== -1
1915
1915
  ) {
1916
1916
  return {
1917
1917
  menuType: SHOP_MENU_ID_TYPE.HOME,
1918
1918
  tabActiveType: customTabType,
1919
1919
  queryMenuTabActiveStr: `${SHOP_MENU_ID_TYPE.HOME}@${customTabType}`,
1920
1920
  };
1921
1921
  } else {
1922
1922
  return defaultMenuType;
1923
1923
  }
1924
1924
  } else {
1925
1925
  if (
1926
1926
  !isNaN(currentTabType) &&
1927
1927
  SECTION_HOME_CUSTOM_TAB_TYPE_ARRAY.indexOf(currentTabType) !== -1
1928
1928
  ) {
1929
1929
  return {
1930
1930
  menuType: SHOP_MENU_ID_TYPE.HOME,
1931
1931
  tabActiveType: currentTabType,
1932
1932
  queryMenuTabActiveStr: `${SHOP_MENU_ID_TYPE.HOME}@${currentTabType}`,
1933
1933
  };
1934
1934
  }
1935
1935
  return defaultMenuType;
1936
1936
  }
1937
1937
  }
1938
1938
  const deleteKeyList = [
1939
1939
  '$taroTimestamp',
1940
1940
  'cookie',
1941
1941
  'wdref',
1942
1942
  'navStart',
1943
1943
  'originOpts',
1944
1944
  'originParams',
1945
1945
  'originUrl',
1946
1946
  'referer',
1947
1947
  'stamp',
1948
1948
  'hybrid',
1949
1949
  'sr',
1950
1950
  'navh',
1951
1951
  'stath',
1952
1952
  ];
1953
1953
  let changeQueryData: any = { ...queryData };
1954
1954
  const qrCodeScene = changeQueryData?.scene ? changeQueryData?.scene : false;
1955
1955
  const sceneQuery =
1956
1956
  qrCodeScene && typeof qrCodeScene === 'string'
1957
1957
  ? parseQueryUrlString(decodeURIComponent(qrCodeScene))
1958
1958
  : {};
1959
1959
  changeQueryData = { ...changeQueryData, ...sceneQuery };
1960
1960
  deleteKeyList.forEach((key) => {
1961
1961
  changeQueryData[key] && delete changeQueryData[key];
1962
1962
  });
1963
1963
  Object.keys(changeQueryData).forEach((key) => {
1964
1964
  if (changeQueryData[key] && Array.isArray(changeQueryData[key])) {
1965
1965
  changeQueryData[key] = changeQueryData[key][0] || '';
1966
1966
  }
1967
1967
  });
1968
1968
  changeQueryData['shopid'] &&
1969
1969
  (changeQueryData['shopId'] = changeQueryData['shopid']) &&
1970
1970
  delete changeQueryData['shopid'];
1971
1971
  changeQueryData['venderid'] &&
1972
1972
  (changeQueryData['venderId'] = changeQueryData['venderid']) &&
1973
1973
  delete changeQueryData['venderid'];
1974
1974
  changeQueryData['vendorId'] &&
1975
1975
  (changeQueryData['venderId'] = changeQueryData['vendorId']) &&
1976
1976
  delete changeQueryData['vendorId'];
1977
1977
  changeQueryData['shopId'] &&
1978
1978
  changeQueryData['shopId'] === 'undefined' &&
1979
1979
  delete changeQueryData['shopId'];
1980
1980
  changeQueryData['venderId'] &&
1981
1981
  changeQueryData['venderId'] === 'undefined' &&
1982
1982
  delete changeQueryData['venderId'];
1983
1983
  return changeQueryData;
1984
1984
  let isUsable = false;
1985
1985
  const modularPackResult = floorData?.floorExtInfo?.modularPackResult;
1986
1986
  const modularPackResultObj = formatPackResult(modularPackResult);
1987
1987
  const bundleUrl = getBundleUrl(modularPackResultObj);
1988
1988
  const bundleFileName = getBundleFileName(modularPackResultObj);
1989
1989
  const taroVersion = getTaroVersion(modularPackResultObj);
1990
1990
  if (bundleUrl && bundleFileName) {
1991
1991
  isUsable = true;
1992
1992
  }
1993
1993
  if (!isUsable && typeof exceptionReportFn === 'function') {
1994
1994
  exceptionReportFn({
1995
1995
  eventName: 'business',
1996
1996
  errorName: `${NO_ENVIRONMENT_AND_PAGE_TYPE_FLAG}${
1997
1997
  floorData?.floorExtInfo?.floorKind === FLOOR_KIND.PDC_SYSTEM_MODULE
1998
1998
  ? SgmCustomCode.SYSTEMPDCMODULE_DATA
1999
1999
  : SgmCustomCode.REMOTEMODULE_DATA
2000
2000
  }`,
2001
2001
  errorMessage: JSON.stringify({
2002
2002
  msg: `店铺h5楼层隐藏不显示。原因:模块数据不完备,楼层过滤。`,
2003
2003
  floorIdx: floorData?.floorIdx,
2004
2004
  uid: floorData?.uid,
2005
2005
  shopId: floorData?.floorExtInfo?.shopId,
2006
2006
  moduleId: floorData?.moduleId,
2007
2007
  moduleDesignerType: floorData?.floorExtInfo?.moduleDesignerType,
2008
2008
  floorLoadWay: floorData?.floorExtInfo?.floorLoadWay,
2009
2009
  floorKind: floorData?.floorExtInfo?.floorKind,
2010
2010
  middleTemplateId: floorData?.middleTemplateId,
2011
2011
  modularPackResult: {
2012
2012
  bundleUrl,
2013
2013
  taroVersion,
2014
2014
  },
2015
2015
  }),
2016
2016
  });
2017
2017
  }
2018
2018
  return isUsable;
2019
2019
  const containerObj = containerList.find((item) => item.containerId === containerId);
2020
2020
  const blacklistModules = ['chatgroup'];
2021
2021
  return blacklistModules.includes(containerObj?.typeCode);
2022
2022
  const objContainer = containerListData.find((item) => item.containerId === containerId);
2023
2023
  return (
2024
2024
  objContainer?.includeUids?.some((itemUid) => {
2025
2025
  const objectFloor = floorListData.find((floorItem) => itemUid === floorItem.uid);
2026
2026
  return RemoteLoadFloorList.includes(objectFloor?.floorExtInfo?.moduleFlag);
2027
2027
  }) ?? false
2028
2028
  );
2029
2029
  const unableIsvFloorListData = floorListData.filter(
2030
2030
  (floorItem) =>
2031
2031
  RemoteLoadFloorList.includes(floorItem?.floorExtInfo?.moduleFlag) &&
2032
2032
  !isIsvFloorUseable(floorItem, exceptionReportFn),
2033
2033
  );
2034
2034
  const unableIsvFloorUidList = unableIsvFloorListData.map((floorItem) => floorItem.uid);
2035
2035
  const unableIsvContainerListData = containerListData.filter(
2036
2036
  (item) =>
2037
2037
  item.includeUids &&
2038
2038
  item.includeUids.every((itemUid) => unableIsvFloorUidList.indexOf(itemUid) != -1),
2039
2039
  );
2040
2040
  return unableIsvContainerListData;
2041
2041
  console.log('暂无对应渠道比较', compareVersion, nowVersion);
2042
2042
  return -2;
2043
2043
  return customObj;
2044
2044
  return customObj;
2045
2045
  return customObj;
2046
2046
  return customObj;
2047
2047
  return customObj;
2048
2048
  return /openApp\.jdMobile:\/\/virtual\?params=/i.test(openAppUrl);
2049
2049
  let getParams = false;
2050
2050
  if (isOpenJdAppUrl(openAppUrl)) {
2051
2051
  try {
2052
2052
  getParams = openAppUrl.replace(/openApp\.jdMobile:\/\/virtual\?params=/i, '');
2053
2053
  getParams = JSON.parse(String(getParams));
2054
2054
  } catch (e) {
2055
2055
  console.log(e);
2056
2056
  }
2057
2057
  }
2058
2058
  return getParams;
2059
2059
  const getLastParams = Object.assign({}, openParams);
2060
2060
  return `openapp.jdmobile://virtual?params=${JSON.stringify(getLastParams)}`;
2061
2061
  if (val === null || val === '' || typeof val === 'undefined') {
2062
2062
  return true;
2063
2063
  }
2064
2064
  return false;
2065
2065
  const {
2066
2066
  moduleId = 'none',
2067
2067
  entrance = 'none',
2068
2068
  sourceType = 'none',
2069
2069
  sourceValue = 'none',
2070
2070
  } = params;
2071
2071
  if (isIosDevice) {
2072
2072
  return `${moduleId}#${entrance}`;
2073
2073
  } else if (isAndroidDevice) {
2074
2074
  return `${sourceType}#${sourceValue}`;
2075
2075
  }
2076
2076
  return 'none#none';
2077
2077
  if (data && typeof data === 'object') {
2078
2078
  let getOpenAppData = { ...data };
2079
2079
  try {
2080
2080
  const { sourceInfo, designerId, templateId, source } = getOpenAppData;
2081
2081
  if (designerId && templateId) {
2082
2082
  getOpenAppData = Object.assign({}, getOpenAppData, {
2083
2083
  sourceInfo: {
2084
2084
  entrance: '设计师预览',
2085
2085
  },
2086
2086
  });
2087
2087
  } else if (sourceInfo) {
2088
2088
  const { entrance } = sourceInfo;
2089
2089
  getOpenAppData.sourceInfo.entrance = entrance && entrance.length > 0 ? entrance : '其他';
2090
2090
  } else if (source && !sourceInfo) {
2091
2091
  if (typeof source === 'object') {
2092
2092
  const { sourceType, entrance, sourceValue, moduleId } = source;
2093
2093
  getOpenAppData = Object.assign({}, getOpenAppData, {
2094
2094
  sourceInfo: {
2095
2095
  entrance: sourceType || entrance || '其他',
2096
2096
  moduleId: sourceValue || moduleId || '-100',
2097
2097
  },
2098
2098
  });
2099
2099
  if (sourceType === 'shop_from_product_detail' && sourceValue) {
2100
2100
  getOpenAppData.sourceSku = sourceValue;
2101
2101
  }
2102
2102
  } else {
2103
2103
  getOpenAppData = Object.assign({}, getOpenAppData, {
2104
2104
  sourceInfo: {
2105
2105
  entrance: source,
2106
2106
  },
2107
2107
  });
2108
2108
  }
2109
2109
  } else {
2110
2110
  getOpenAppData = Object.assign({}, getOpenAppData, {
2111
2111
  sourceInfo: {
2112
2112
  entrance: '其他',
2113
2113
  },
2114
2114
  });
2115
2115
  }
2116
2116
  } catch (e) {
2117
2117
  console.log(e);
2118
2118
  }
2119
2119
  return getOpenAppData;
2120
2120
  }
2121
2121
  return data;
2122
2122
  return displayObj;
2123
2123
  if (typeof input === 'string') {
2124
2124
  try {
2125
2125
  return JSON.parse(input);
2126
2126
  } catch (e) {
2127
2127
  console.error('JSON解析失败', e);
2128
2128
  return {};
2129
2129
  }
2130
2130
  }
2131
2131
  return input || {};
2132
2132
  return false;
2133
2133
  const borderStyle: { [key: string]: any } = {};
2134
2134
  if (item?.borderRadius) {
2135
2135
  let borderTopRadius = 0;
2136
2136
  let borderBottomRadius = 0;
2137
2137
  if (index === 0) {
2138
2138
  borderTopRadius = item.borderRadius;
2139
2139
  borderBottomRadius = floorDataLen === 1 || item?.marginBottom !== 0 ? item.borderRadius : 0;
2140
2140
  } else if (index === floorDataLen - 1) {
2141
2141
  borderTopRadius = floorData[index - 1]?.marginBottom === 0 ? 0 : item.borderRadius;
2142
2142
  borderBottomRadius = item.borderRadius;
2143
2143
  } else {
2144
2144
  borderTopRadius = floorData[index - 1]?.marginBottom === 0 ? 0 : item.borderRadius;
2145
2145
  borderBottomRadius = item?.marginBottom === 0 ? 0 : item.borderRadius;
2146
2146
  }
2147
2147
  borderStyle.borderTopLeftRadius = item?.borderTopLeftRadius
2148
2148
  ? `${item?.borderTopLeftRadius}px`
2149
2149
  : `${borderTopRadius}px`;
2150
2150
  borderStyle.borderTopRightRadius = item?.borderTopRightRadius
2151
2151
  ? `${item?.borderTopRightRadius}px`
2152
2152
  : `${borderTopRadius}px`;
2153
2153
  borderStyle.borderBottomLeftRadius = `${borderBottomRadius}px`;
2154
2154
  borderStyle.borderBottomRightRadius = `${borderBottomRadius}px`;
2155
2155
  } else {
2156
2156
  borderStyle.borderTopLeftRadius = borderStyle?.borderTopLeftRadius || '0px';
2157
2157
  borderStyle.borderTopRightRadius = borderStyle?.borderTopRightRadius || '0px';
2158
2158
  borderStyle.borderBottomRightRadius = borderStyle?.borderBottomRightRadius || '0px';
2159
2159
  borderStyle.borderBottomLeftRadius = borderStyle?.borderBottomLeftRadius || '0px';
2160
2160
  }
2161
2161
  return borderStyle;
2162
2162
  isJdApp,
2163
2163
  isWxApp,
2164
2164
  isAscfApp,
2165
2165
  isIosDevice,
2166
2166
  isAndroidDevice,
2167
2167
  isJdAndIosDevice,
2168
2168
  isJdAndAndroidDevice,
2169
2169
  isWxMin,
2170
2170
  isWxMinAndWxapp,
2171
2171
  isJdMin,
2172
2172
  isMin,
2173
2173
  isJdMinAndHarmony,
2174
2174
  isH5,
2175
2175
  isH5AndJdShopView,
2176
2176
  isImageOptimizeEnable,
2177
2177
  isChartH5,
2178
2178
  isH5AndJdShopViewNativeScroll,
2179
2179
  isH5AndJdShopViewH5Scroll,
2180
2180
  isH5AndJdShopH5CustomScrollView,
2181
2181
  isWxMiniH5View,
2182
2182
  sliceArrToChunkList,
2183
2183
  dealAddress,
2184
2184
  objectToUrlEncode,
2185
2185
  parseQueryUrlString,
2186
2186
  setLowSmallPicUrl,
2187
2187
  getJfsImage,
2188
2188
  getQualityImage,
2189
2189
  countStringify,
2190
2190
  setTaroStorage,
2191
2191
  getTaroStorageKeyValue,
2192
2192
  removeTaroStorageKey,
2193
2193
  clearTaroStorageKey,
2194
2194
  getSystemInfos,
2195
2195
  addHttps,
2196
2196
  dateFormat,
2197
2197
  throttle,
2198
2198
  lodashThrottle,
2199
2199
  debounce,
2200
2200
  getTelephone,
2201
2201
  rgbToHex,
2202
2202
  hexToRgb,
2203
2203
  getRandom,
2204
2204
  getWxAppCookieStr,
2205
2205
  pxTransformFromData,
2206
2206
  dealShopContentData,
2207
2207
  showSuccessToast,
2208
2208
  showFailToast,
2209
2209
  showNormalToast,
2210
2210
  showShopLoading,
2211
2211
  hideShopLoading,
2212
2212
  getAppChannelType,
2213
2213
  formatTabActiveMenuType,
2214
2214
  filterUrlQueryData,
2215
2215
  getAvifSupport,
2216
2216
  getWebpSupport,
2217
2217
  isMemberPage,
2218
2218
  draCustomReport,
2219
2219
  remoteCustomReport,
2220
2220
  draInterfaceCustomReport,
2221
2221
  draBusinessCustomReport,
2222
2222
  draBusinessCustomLogReport,
2223
2223
  isOpenJdAppUrl,
2224
2224
  jdOpenAppParams,
2225
2225
  createJdOpenAppUrl,
2226
2226
  dealJdOpenAppData,
2227
2227
  isEmpty,
2228
2228
  getJdAppReportPageSource,
2229
2229
  isAppClassifyPage,
2230
2230
  getQualityImageNew,
2231
2231
  getQualityImageOld,
2232
2232
  isPc,
2233
2233
  isPcClassifyPage,
2234
2234
  ipLoc_djd,
2235
2235
  jdAppVersionCompare,
2236
2236
  dealNativePixelToCssPixel,
2237
2237
  isAppStowShop,
2238
2238
  isIpadDevice,
2239
2239
  getBorderStyle,
2240
2240
  isLanguageForEn,
2241
2241
  sColor,
2242
2242
  isTabletDevice,
2243
2243
  isInHarmonyBlacklistByModuleFlag,
2244
2244
  isJdLiteApp,
2245
2245
  isJdAppForNotMain,