@conecli/cone-render 0.10.1-shop3.95 → 0.10.1-shop3.96

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