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

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
  } = cookie;
1672
1672
  const ret: string[] = [];
1673
1673
  const getUserCookieObj = {};
1674
1674
  const createUseCookieArr = [
1675
1675
  jdpin,
1676
1676
  pinStatus,
1677
1677
  visitkey,
1678
1678
  unionid,
1679
1679
  skey,
1680
1680
  __jda,
1681
1681
  __jdv,
1682
1682
  __wga,
1683
1683
  wid,
1684
1684
  wq_skey,
1685
1685
  wq_uin,
1686
1686
  wq_auth_token,
1687
1687
  wxapp_scene,
1688
1688
  wq_unionid,
1689
1689
  wxapp_openid,
1690
1690
  wxapp_version,
1691
1691
  wxapp_type,
1692
1692
  appType,
1693
1693
  lbs_addr,
1694
1694
  pt_key,
1695
1695
  ];
1696
1696
 
1697
1697
  createUseCookieArr.forEach((keyItem) => {
1698
1698
  if (keyItem && keyItem['name']) {
1699
1699
  let { name, value } = keyItem;
1700
1700
  name = name === 'jdpin' ? 'pin' : name;
1701
1701
  name === 'pin' && ret.push(`pt_pin=${encodeURIComponent(value)}`);
1702
1702
  ret.push(`${name}=${encodeURIComponent(value)}`);
1703
1703
  getUserCookieObj[name] = value;
1704
1704
  }
1705
1705
  });
1706
1706
  return {
1707
1707
  wqCookieStr: ret.join(';'),
1708
1708
  wqCookie: getUserCookieObj,
1709
1709
  };
1710
1710
  const getLayoutWidth = layoutWidth || global.info?.sysInfo?.windowWidth || windowWidth;
1711
1711
  const getNum = Number(num);
1712
1712
  return Math.round((getNum / widthSize) * getLayoutWidth);
1713
1713
  let checkState = false;
1714
1714
  const couponFloorModuleType = floorData?.floorExtInfo?.moduleFlag;
1715
1715
  if (couponFloorModuleType === FloorModuleType.COUPON) {
1716
1716
  try {
1717
1717
  const dataDefines = getFloorDataToDataDefines(floorData);
1718
1718
  const couponDataDefine = dataDefines
1719
1719
  ? dataDefines.filter((item) => {
1720
1720
  return item.type === 'coupon';
1721
1721
  })
1722
1722
  : [],
1723
1723
  couponList = couponDataDefine[0]?.nodeText?.data ? couponDataDefine[0]?.nodeText?.data : [],
1724
1724
  couponLength = couponList.length,
1725
1725
  numShowPerLine = couponDataDefine[0]?.nodeText?.numShowPerLine
1726
1726
  ? couponDataDefine[0]?.nodeText?.numShowPerLine
1727
1727
  : 0;
1728
1728
  if (numShowPerLine === 0 && couponLength > 3) {
1729
1729
  checkState = true;
1730
1730
  }
1731
1731
  } catch (e) {
1732
1732
  checkState = false;
1733
1733
  }
1734
1734
  return checkState;
1735
1735
  }
1736
1736
  const {
1737
1737
  containers = [],
1738
1738
  floors = [],
1739
1739
  homeExtInfo = {},
1740
1740
  clearFirstContaierMarginTop = false,
1741
1741
  } = pageData;
1742
1742
  console.log('dealShopContentData:', pageData, 'isvdev:', isvdev, 'homeExtInfo:', homeExtInfo);
1743
1743
  const getThisTimeKey = Date.now();
1744
1744
  let shopContentContainerListData = containers?.filter(
1745
1745
  (item) => (!isvdev && item.typeCode !== 'mShopHeader') || isvdev,
1746
1746
  );
1747
1747
  const shopContentFloorListData = floors?.filter(
1748
1748
  ({ floorPosition }) =>
1749
1749
  (!isvdev && floorPosition !== 'header' && floorPosition !== 'footer') || isvdev,
1750
1750
  );
1751
1751
  const unableIsvContainerListData = getUnableIsvContainerListData(
1752
1752
  shopContentFloorListData,
1753
1753
  shopContentContainerListData,
1754
1754
  exceptionReportFn,
1755
1755
  );
1756
1756
  shopContentContainerListData.forEach((item, index) => {
1757
1757
  item.key = `${getThisTimeKey + index}`;
1758
1758
  item.floors = [];
1759
1759
  item.includeUids &&
1760
1760
  item.includeUids.forEach((floorUid) => {
1761
1761
  const getFloorData = shopContentFloorListData.find(
1762
1762
  (floorItem) => floorItem.uid === floorUid,
1763
1763
  );
1764
1764
  if (getFloorData) {
1765
1765
  const changeFloorData = {
1766
1766
  containerId: item.containerId,
1767
1767
  containerIndex: index,
1768
1768
  ...getFloorData,
1769
1769
  };
1770
1770
  if (homeExtInfo?.pageThemColorType) {
1771
1771
  changeFloorData.pageThemColorType = homeExtInfo.pageThemColorType;
1772
1772
  }
1773
1773
  const getCheckMoreCouponState = checkCouponAndChangeContainerSetData(getFloorData);
1774
1774
  if (getCheckMoreCouponState) {
1775
1775
  item.marginLeft && (item.marginLeft = 0);
1776
1776
  item.marginRight && (item.marginRight = 0);
1777
1777
  item.borderRadius && (item.borderRadius = 0);
1778
1778
  }
1779
1779
  if (getFloorData?.floorExtInfo?.floorLoadWay === 2) {
1780
1780
  const getSysFloorToLoadTypeRes = isIsvFloorUseable(getFloorData, exceptionReportFn);
1781
1781
  !getSysFloorToLoadTypeRes && (getFloorData.floorExtInfo.floorLoadWay = 1);
1782
1782
  }
1783
1783
  item.floors.push(changeFloorData);
1784
1784
  }
1785
1785
  });
1786
1786
  if (
1787
1787
  ((!isvdev && index === 0) || (isvdev && index === 1)) &&
1788
1788
  item?.containerPosition == 'content' &&
1789
1789
  item?.marginBottom > 0 &&
1790
1790
  !clearFirstContaierMarginTop
1791
1791
  ) {
1792
1792
  item.marginTop = item.marginBottom;
1793
1793
  }
1794
1794
  });
1795
1795
  shopContentContainerListData = shopContentContainerListData.filter(
1796
1796
  (item) =>
1797
1797
  item.floors.length > 0 &&
1798
1798
  unableIsvContainerListData.every(
1799
1799
  (containerItem) => containerItem.containerId != item.containerId,
1800
1800
  ),
1801
1801
  );
1802
1802
  console.log(
1803
1803
  'dealShopContentData isWxMinAndWxapp:',
1804
1804
  isWxMinAndWxapp,
1805
1805
  'weappJumpToH5:',
1806
1806
  pageData?.homeExtInfo?.weappJumpToH5,
1807
1807
  );
1808
1808
  if (isProd && isWxMinAndWxapp) {
1809
1809
  shopContentContainerListData = shopContentContainerListData.filter(
1810
1810
  (item) =>
1811
1811
  item.floors.length > 0 &&
1812
1812
  !isIsvContainer(item.containerId, shopContentFloorListData, shopContentContainerListData),
1813
1813
  );
1814
1814
  }
1815
1815
  shopContentContainerListData = [].concat(shopContentContainerListData);
1816
1816
  return {
1817
1817
  shopContentContainerListData,
1818
1818
  shopContentFloorListData,
1819
1819
  };
1820
1820
  const changeOpts = {
1821
1821
  title: '',
1822
1822
  icon: 'success',
1823
1823
  duration: 1500,
1824
1824
  mask: true,
1825
1825
  ...options,
1826
1826
  };
1827
1827
  if (changeOpts.title.length > 7) {
1828
1828
  showNormalToast(options);
1829
1829
  } else {
1830
1830
  Taro.showToast(changeOpts as any);
1831
1831
  }
1832
1832
  const changeOpts = {
1833
1833
  title: '',
1834
1834
  icon: 'error',
1835
1835
  duration: 1500,
1836
1836
  mask: true,
1837
1837
  ...options,
1838
1838
  };
1839
1839
  if (changeOpts.title.length > 7) {
1840
1840
  showNormalToast(options);
1841
1841
  } else {
1842
1842
  Taro.showToast(changeOpts as any);
1843
1843
  }
1844
1844
  Taro.showToast({
1845
1845
  title: '',
1846
1846
  icon: 'none',
1847
1847
  duration: 1500,
1848
1848
  mask: true,
1849
1849
  ...options,
1850
1850
  });
1851
1851
  return Taro.showLoading({
1852
1852
  title: text,
1853
1853
  });
1854
1854
  return new Promise(() => {
1855
1855
  Taro.nextTick(() => {
1856
1856
  setTimeout(() => {
1857
1857
  Taro.hideLoading(options);
1858
1858
  }, 300);
1859
1859
  });
1860
1860
  });
1861
1861
  return CHANNEL_TYPE[JDShopViewBusinessPathType.HOME];
1862
1862
  const {
1863
1863
  tabActive = SECTION_HOME_TAB_NAME_TYPE[SECTION_HOME_TAB_TYPE.HOME_WELL_CHOSEN],
1864
1864
  sceneId,
1865
1865
  currentTabType,
1866
1866
  } = query;
1867
1867
  let changeTabActive = tabActive;
1868
1868
  if (sceneId) {
1869
1869
  if (isH5) {
1870
1870
  if (sceneId == '1002') {
1871
1871
  changeTabActive = SECTION_HOME_TAB_NAME_TYPE[SECTION_HOME_TAB_TYPE.HOME_PRODUCT];
1872
1872
  }
1873
1873
  else if (sceneId == '1003') {
1874
1874
  changeTabActive = SECTION_HOME_TAB_NAME_TYPE[SECTION_HOME_TAB_TYPE.HOME_ACTIVITY];
1875
1875
  }
1876
1876
  } else if (isWxMinAndWxapp) {
1877
1877
  if (sceneId == '1001' || sceneId == '1002') {
1878
1878
  changeTabActive = SECTION_HOME_TAB_NAME_TYPE[SECTION_HOME_TAB_TYPE.HOME_PRODUCT];
1879
1879
  }
1880
1880
  else if (sceneId == '1003') {
1881
1881
  changeTabActive = SECTION_HOME_TAB_NAME_TYPE[SECTION_HOME_TAB_TYPE.HOME_PROMOTION];
1882
1882
  }
1883
1883
  }
1884
1884
  }
1885
1885
  if (SECTION_HOME_TAB_QUERY_TYPE[changeTabActive]) {
1886
1886
  if (
1887
1887
  !isNaN(currentTabType) &&
1888
1888
  SECTION_HOME_CUSTOM_TAB_TYPE_ARRAY.indexOf(currentTabType) !== -1
1889
1889
  ) {
1890
1890
  return {
1891
1891
  menuType: SHOP_MENU_ID_TYPE.HOME,
1892
1892
  tabActiveType: currentTabType,
1893
1893
  queryMenuTabActiveStr: `${SHOP_MENU_ID_TYPE.HOME}@${currentTabType}`,
1894
1894
  };
1895
1895
  }
1896
1896
  return {
1897
1897
  menuType: SHOP_MENU_ID_TYPE.HOME,
1898
1898
  tabActiveType: SECTION_HOME_TAB_QUERY_TYPE[changeTabActive],
1899
1899
  queryMenuTabActiveStr: `${SHOP_MENU_ID_TYPE.HOME}@${SECTION_HOME_TAB_QUERY_TYPE[changeTabActive]}`,
1900
1900
  };
1901
1901
  } else if (SHOP_MENU_ID_QUERY_NAME[changeTabActive]) {
1902
1902
  return {
1903
1903
  menuType: SHOP_MENU_ID_QUERY_NAME[changeTabActive],
1904
1904
  tabActiveType: 0,
1905
1905
  queryMenuTabActiveStr: `${SHOP_MENU_ID_QUERY_NAME[changeTabActive]}@0`,
1906
1906
  };
1907
1907
  } else {
1908
1908
  const defaultMenuType = {
1909
1909
  menuType: SHOP_MENU_ID_TYPE.HOME,
1910
1910
  tabActiveType: SECTION_HOME_TAB_TYPE.HOME_WELL_CHOSEN,
1911
1911
  queryMenuTabActiveStr: `${SHOP_MENU_ID_TYPE.HOME}@${SECTION_HOME_TAB_TYPE.HOME_WELL_CHOSEN}`,
1912
1912
  };
1913
1913
  const isCustomTab = tabActive.indexOf(SECTION_HOME_TAB_NAME_TYPE.HOME_CUSTOM) !== -1;
1914
1914
  if (isCustomTab) {
1915
1915
  const customTabType = Number(tabActive.split('-')[2]);
1916
1916
  if (
1917
1917
  !isNaN(customTabType) &&
1918
1918
  SECTION_HOME_CUSTOM_TAB_TYPE_ARRAY.indexOf(customTabType) !== -1
1919
1919
  ) {
1920
1920
  return {
1921
1921
  menuType: SHOP_MENU_ID_TYPE.HOME,
1922
1922
  tabActiveType: customTabType,
1923
1923
  queryMenuTabActiveStr: `${SHOP_MENU_ID_TYPE.HOME}@${customTabType}`,
1924
1924
  };
1925
1925
  } else {
1926
1926
  return defaultMenuType;
1927
1927
  }
1928
1928
  } else {
1929
1929
  if (
1930
1930
  !isNaN(currentTabType) &&
1931
1931
  SECTION_HOME_CUSTOM_TAB_TYPE_ARRAY.indexOf(currentTabType) !== -1
1932
1932
  ) {
1933
1933
  return {
1934
1934
  menuType: SHOP_MENU_ID_TYPE.HOME,
1935
1935
  tabActiveType: currentTabType,
1936
1936
  queryMenuTabActiveStr: `${SHOP_MENU_ID_TYPE.HOME}@${currentTabType}`,
1937
1937
  };
1938
1938
  }
1939
1939
  return defaultMenuType;
1940
1940
  }
1941
1941
  }
1942
1942
  const deleteKeyList = [
1943
1943
  '$taroTimestamp',
1944
1944
  'cookie',
1945
1945
  'wdref',
1946
1946
  'navStart',
1947
1947
  'originOpts',
1948
1948
  'originParams',
1949
1949
  'originUrl',
1950
1950
  'referer',
1951
1951
  'stamp',
1952
1952
  'hybrid',
1953
1953
  'sr',
1954
1954
  'navh',
1955
1955
  'stath',
1956
1956
  ];
1957
1957
  let changeQueryData: any = { ...queryData };
1958
1958
  const qrCodeScene = changeQueryData?.scene ? changeQueryData?.scene : false;
1959
1959
  const sceneQuery =
1960
1960
  qrCodeScene && typeof qrCodeScene === 'string'
1961
1961
  ? parseQueryUrlString(decodeURIComponent(qrCodeScene))
1962
1962
  : {};
1963
1963
  changeQueryData = { ...changeQueryData, ...sceneQuery };
1964
1964
  deleteKeyList.forEach((key) => {
1965
1965
  changeQueryData[key] && delete changeQueryData[key];
1966
1966
  });
1967
1967
  Object.keys(changeQueryData).forEach((key) => {
1968
1968
  if (changeQueryData[key] && Array.isArray(changeQueryData[key])) {
1969
1969
  changeQueryData[key] = changeQueryData[key][0] || '';
1970
1970
  }
1971
1971
  });
1972
1972
  changeQueryData['shopid'] &&
1973
1973
  (changeQueryData['shopId'] = changeQueryData['shopid']) &&
1974
1974
  delete changeQueryData['shopid'];
1975
1975
  changeQueryData['venderid'] &&
1976
1976
  (changeQueryData['venderId'] = changeQueryData['venderid']) &&
1977
1977
  delete changeQueryData['venderid'];
1978
1978
  changeQueryData['vendorId'] &&
1979
1979
  (changeQueryData['venderId'] = changeQueryData['vendorId']) &&
1980
1980
  delete changeQueryData['vendorId'];
1981
1981
  changeQueryData['shopId'] &&
1982
1982
  changeQueryData['shopId'] === 'undefined' &&
1983
1983
  delete changeQueryData['shopId'];
1984
1984
  changeQueryData['venderId'] &&
1985
1985
  changeQueryData['venderId'] === 'undefined' &&
1986
1986
  delete changeQueryData['venderId'];
1987
1987
  return changeQueryData;
1988
1988
  let isUsable = false;
1989
1989
  const modularPackResult = floorData?.floorExtInfo?.modularPackResult;
1990
1990
  const modularPackResultObj = formatPackResult(modularPackResult);
1991
1991
  const bundleUrl = getBundleUrl(modularPackResultObj);
1992
1992
  const bundleFileName = getBundleFileName(modularPackResultObj);
1993
1993
  const taroVersion = getTaroVersion(modularPackResultObj);
1994
1994
  if (bundleUrl && bundleFileName) {
1995
1995
  isUsable = true;
1996
1996
  }
1997
1997
  if (!isUsable && typeof exceptionReportFn === 'function') {
1998
1998
  exceptionReportFn({
1999
1999
  eventName: 'business',
2000
2000
  errorName: `${NO_ENVIRONMENT_AND_PAGE_TYPE_FLAG}${
2001
2001
  floorData?.floorExtInfo?.floorKind === FLOOR_KIND.PDC_SYSTEM_MODULE
2002
2002
  ? SgmCustomCode.SYSTEMPDCMODULE_DATA
2003
2003
  : SgmCustomCode.REMOTEMODULE_DATA
2004
2004
  }`,
2005
2005
  errorMessage: JSON.stringify({
2006
2006
  msg: `店铺h5楼层隐藏不显示。原因:模块数据不完备,楼层过滤。`,
2007
2007
  floorIdx: floorData?.floorIdx,
2008
2008
  uid: floorData?.uid,
2009
2009
  shopId: floorData?.floorExtInfo?.shopId,
2010
2010
  moduleId: floorData?.moduleId,
2011
2011
  moduleDesignerType: floorData?.floorExtInfo?.moduleDesignerType,
2012
2012
  floorLoadWay: floorData?.floorExtInfo?.floorLoadWay,
2013
2013
  floorKind: floorData?.floorExtInfo?.floorKind,
2014
2014
  middleTemplateId: floorData?.middleTemplateId,
2015
2015
  modularPackResult: {
2016
2016
  bundleUrl,
2017
2017
  taroVersion,
2018
2018
  },
2019
2019
  }),
2020
2020
  });
2021
2021
  }
2022
2022
  return isUsable;
2023
2023
  const containerObj = containerList.find((item) => item.containerId === containerId);
2024
2024
  const blacklistModules = ['chatgroup'];
2025
2025
  return blacklistModules.includes(containerObj?.typeCode);
2026
2026
  const objContainer = containerListData.find((item) => item.containerId === containerId);
2027
2027
  return (
2028
2028
  objContainer?.includeUids?.some((itemUid) => {
2029
2029
  const objectFloor = floorListData.find((floorItem) => itemUid === floorItem.uid);
2030
2030
  return RemoteLoadFloorList.includes(objectFloor?.floorExtInfo?.moduleFlag);
2031
2031
  }) ?? false
2032
2032
  );
2033
2033
  const unableIsvFloorListData = floorListData.filter(
2034
2034
  (floorItem) =>
2035
2035
  RemoteLoadFloorList.includes(floorItem?.floorExtInfo?.moduleFlag) &&
2036
2036
  !isIsvFloorUseable(floorItem, exceptionReportFn),
2037
2037
  );
2038
2038
  const unableIsvFloorUidList = unableIsvFloorListData.map((floorItem) => floorItem.uid);
2039
2039
  const unableIsvContainerListData = containerListData.filter(
2040
2040
  (item) =>
2041
2041
  item.includeUids &&
2042
2042
  item.includeUids.every((itemUid) => unableIsvFloorUidList.indexOf(itemUid) != -1),
2043
2043
  );
2044
2044
  return unableIsvContainerListData;
2045
2045
  console.log('暂无对应渠道比较', compareVersion, nowVersion);
2046
2046
  return -2;
2047
2047
  return customObj;
2048
2048
  return customObj;
2049
2049
  return customObj;
2050
2050
  return customObj;
2051
2051
  return customObj;
2052
2052
  return /openApp\.jdMobile:\/\/virtual\?params=/i.test(openAppUrl);
2053
2053
  let getParams = false;
2054
2054
  if (isOpenJdAppUrl(openAppUrl)) {
2055
2055
  try {
2056
2056
  getParams = openAppUrl.replace(/openApp\.jdMobile:\/\/virtual\?params=/i, '');
2057
2057
  getParams = JSON.parse(String(getParams));
2058
2058
  } catch (e) {
2059
2059
  console.log(e);
2060
2060
  }
2061
2061
  }
2062
2062
  return getParams;
2063
2063
  const getLastParams = Object.assign({}, openParams);
2064
2064
  return `openapp.jdmobile://virtual?params=${JSON.stringify(getLastParams)}`;
2065
2065
  if (val === null || val === '' || typeof val === 'undefined') {
2066
2066
  return true;
2067
2067
  }
2068
2068
  return false;
2069
2069
  const {
2070
2070
  moduleId = 'none',
2071
2071
  entrance = 'none',
2072
2072
  sourceType = 'none',
2073
2073
  sourceValue = 'none',
2074
2074
  } = params;
2075
2075
  if (isIosDevice) {
2076
2076
  return `${moduleId}#${entrance}`;
2077
2077
  } else if (isAndroidDevice) {
2078
2078
  return `${sourceType}#${sourceValue}`;
2079
2079
  }
2080
2080
  return 'none#none';
2081
2081
  if (data && typeof data === 'object') {
2082
2082
  let getOpenAppData = { ...data };
2083
2083
  try {
2084
2084
  const { sourceInfo, designerId, templateId, source } = getOpenAppData;
2085
2085
  if (designerId && templateId) {
2086
2086
  getOpenAppData = Object.assign({}, getOpenAppData, {
2087
2087
  sourceInfo: {
2088
2088
  entrance: '设计师预览',
2089
2089
  },
2090
2090
  });
2091
2091
  } else if (sourceInfo) {
2092
2092
  const { entrance } = sourceInfo;
2093
2093
  getOpenAppData.sourceInfo.entrance = entrance && entrance.length > 0 ? entrance : '其他';
2094
2094
  } else if (source && !sourceInfo) {
2095
2095
  if (typeof source === 'object') {
2096
2096
  const { sourceType, entrance, sourceValue, moduleId } = source;
2097
2097
  getOpenAppData = Object.assign({}, getOpenAppData, {
2098
2098
  sourceInfo: {
2099
2099
  entrance: sourceType || entrance || '其他',
2100
2100
  moduleId: sourceValue || moduleId || '-100',
2101
2101
  },
2102
2102
  });
2103
2103
  if (sourceType === 'shop_from_product_detail' && sourceValue) {
2104
2104
  getOpenAppData.sourceSku = sourceValue;
2105
2105
  }
2106
2106
  } else {
2107
2107
  getOpenAppData = Object.assign({}, getOpenAppData, {
2108
2108
  sourceInfo: {
2109
2109
  entrance: source,
2110
2110
  },
2111
2111
  });
2112
2112
  }
2113
2113
  } else {
2114
2114
  getOpenAppData = Object.assign({}, getOpenAppData, {
2115
2115
  sourceInfo: {
2116
2116
  entrance: '其他',
2117
2117
  },
2118
2118
  });
2119
2119
  }
2120
2120
  } catch (e) {
2121
2121
  console.log(e);
2122
2122
  }
2123
2123
  return getOpenAppData;
2124
2124
  }
2125
2125
  return data;
2126
2126
  return displayObj;
2127
2127
  if (typeof input === 'string') {
2128
2128
  try {
2129
2129
  return JSON.parse(input);
2130
2130
  } catch (e) {
2131
2131
  console.error('JSON解析失败', e);
2132
2132
  return {};
2133
2133
  }
2134
2134
  }
2135
2135
  return input || {};
2136
2136
  return false;
2137
2137
  const borderStyle: { [key: string]: any } = {};
2138
2138
  if (item?.borderRadius) {
2139
2139
  let borderTopRadius = 0;
2140
2140
  let borderBottomRadius = 0;
2141
2141
  if (index === 0) {
2142
2142
  borderTopRadius = item.borderRadius;
2143
2143
  borderBottomRadius = floorDataLen === 1 || item?.marginBottom !== 0 ? item.borderRadius : 0;
2144
2144
  } else if (index === floorDataLen - 1) {
2145
2145
  borderTopRadius = floorData[index - 1]?.marginBottom === 0 ? 0 : item.borderRadius;
2146
2146
  borderBottomRadius = item.borderRadius;
2147
2147
  } else {
2148
2148
  borderTopRadius = floorData[index - 1]?.marginBottom === 0 ? 0 : item.borderRadius;
2149
2149
  borderBottomRadius = item?.marginBottom === 0 ? 0 : item.borderRadius;
2150
2150
  }
2151
2151
  borderStyle.borderTopLeftRadius = item?.borderTopLeftRadius
2152
2152
  ? `${item?.borderTopLeftRadius}px`
2153
2153
  : `${borderTopRadius}px`;
2154
2154
  borderStyle.borderTopRightRadius = item?.borderTopRightRadius
2155
2155
  ? `${item?.borderTopRightRadius}px`
2156
2156
  : `${borderTopRadius}px`;
2157
2157
  borderStyle.borderBottomLeftRadius = `${borderBottomRadius}px`;
2158
2158
  borderStyle.borderBottomRightRadius = `${borderBottomRadius}px`;
2159
2159
  } else {
2160
2160
  borderStyle.borderTopLeftRadius = borderStyle?.borderTopLeftRadius || '0px';
2161
2161
  borderStyle.borderTopRightRadius = borderStyle?.borderTopRightRadius || '0px';
2162
2162
  borderStyle.borderBottomRightRadius = borderStyle?.borderBottomRightRadius || '0px';
2163
2163
  borderStyle.borderBottomLeftRadius = borderStyle?.borderBottomLeftRadius || '0px';
2164
2164
  }
2165
2165
  return borderStyle;
2166
2166
  isJdApp,
2167
2167
  isWxApp,
2168
2168
  isAscfApp,
2169
2169
  isIosDevice,
2170
2170
  isAndroidDevice,
2171
2171
  isJdAndIosDevice,
2172
2172
  isJdAndAndroidDevice,
2173
2173
  isWxMin,
2174
2174
  isWxMinAndWxapp,
2175
2175
  isJdMin,
2176
2176
  isMin,
2177
2177
  isJdMinAndHarmony,
2178
2178
  isH5,
2179
2179
  isH5AndJdShopView,
2180
2180
  isImageOptimizeEnable,
2181
2181
  isChartH5,
2182
2182
  isH5AndJdShopViewNativeScroll,
2183
2183
  isH5AndJdShopViewH5Scroll,
2184
2184
  isH5AndJdShopH5CustomScrollView,
2185
2185
  isWxMiniH5View,
2186
2186
  sliceArrToChunkList,
2187
2187
  dealAddress,
2188
2188
  objectToUrlEncode,
2189
2189
  parseQueryUrlString,
2190
2190
  setLowSmallPicUrl,
2191
2191
  getJfsImage,
2192
2192
  getQualityImage,
2193
2193
  countStringify,
2194
2194
  setTaroStorage,
2195
2195
  getTaroStorageKeyValue,
2196
2196
  removeTaroStorageKey,
2197
2197
  clearTaroStorageKey,
2198
2198
  getSystemInfos,
2199
2199
  addHttps,
2200
2200
  dateFormat,
2201
2201
  throttle,
2202
2202
  lodashThrottle,
2203
2203
  debounce,
2204
2204
  getTelephone,
2205
2205
  rgbToHex,
2206
2206
  hexToRgb,
2207
2207
  getRandom,
2208
2208
  getWxAppCookieStr,
2209
2209
  pxTransformFromData,
2210
2210
  dealShopContentData,
2211
2211
  showSuccessToast,
2212
2212
  showFailToast,
2213
2213
  showNormalToast,
2214
2214
  showShopLoading,
2215
2215
  hideShopLoading,
2216
2216
  getAppChannelType,
2217
2217
  formatTabActiveMenuType,
2218
2218
  filterUrlQueryData,
2219
2219
  getAvifSupport,
2220
2220
  getWebpSupport,
2221
2221
  isMemberPage,
2222
2222
  draCustomReport,
2223
2223
  remoteCustomReport,
2224
2224
  draInterfaceCustomReport,
2225
2225
  draBusinessCustomReport,
2226
2226
  draBusinessCustomLogReport,
2227
2227
  isOpenJdAppUrl,
2228
2228
  jdOpenAppParams,
2229
2229
  createJdOpenAppUrl,
2230
2230
  dealJdOpenAppData,
2231
2231
  isEmpty,
2232
2232
  getJdAppReportPageSource,
2233
2233
  isAppClassifyPage,
2234
2234
  getQualityImageNew,
2235
2235
  getQualityImageOld,
2236
2236
  isPc,
2237
2237
  isPcClassifyPage,
2238
2238
  ipLoc_djd,
2239
2239
  jdAppVersionCompare,
2240
2240
  dealNativePixelToCssPixel,
2241
2241
  isAppStowShop,
2242
2242
  isIpadDevice,
2243
2243
  getBorderStyle,
2244
2244
  isLanguageForEn,
2245
2245
  sColor,
2246
2246
  isTabletDevice,
2247
2247
  isInHarmonyBlacklistByModuleFlag,
2248
2248
  isJdLiteApp,
2249
2249
  isJdAppForNotMain,