@kmkf-fe-packages/basic-components 0.7.15-alpha.70 → 0.7.15-alpha.73

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.
package/dist/index.esm.js CHANGED
@@ -10165,41 +10165,38 @@ var BsGoods = function BsGoods(props) {
10165
10165
  var valueRef = useRef(null);
10166
10166
  useEffect(function () {
10167
10167
  valueRef.current = value;
10168
- pubsub.subscribe('type', function (type, val) {
10168
+ pubsub.subscribe('type', function (type, data) {
10169
10169
  if (disabled) return;
10170
10170
  withInfo.current = {
10171
10171
  type: type,
10172
- val: val
10172
+ val: data.val
10173
10173
  };
10174
- setTableSelect(['2', '4'].includes(val));
10175
- if (['1', '3'].includes(val)) {
10176
- pubsub.publish('selectList', {
10177
- list: cloneDeep((value === null || value === void 0 ? void 0 : value.bsGoods) || [])
10174
+ setTableSelect(['2', '4'].includes(data.val));
10175
+ if (['1', '3'].includes(data.val)) {
10176
+ var _valueRef$current;
10177
+ pubsub.publish('selectListReturn', {
10178
+ list: cloneDeep((valueRef === null || valueRef === void 0 ? void 0 : (_valueRef$current = valueRef.current) === null || _valueRef$current === void 0 ? void 0 : _valueRef$current.bsGoods) || []),
10179
+ newValue: data === null || data === void 0 ? void 0 : data.newValue
10178
10180
  });
10179
10181
  }
10180
10182
  });
10181
10183
  //补发
10182
- pubsub.subscribe('reissueType', function (type, val) {
10184
+ pubsub.subscribe('reissueType', function (type, data) {
10183
10185
  if (disabled) return;
10184
10186
  withInfo.current = {
10185
10187
  type: type,
10186
- val: val
10188
+ val: data.val
10187
10189
  };
10188
- setTableSelect(['2', '4'].includes(val));
10189
- if (['1', '3'].includes(val)) {
10190
- pubsub.publish('reissueSelectList', {
10191
- list: cloneDeep((value === null || value === void 0 ? void 0 : value.bsGoods) || [])
10190
+ setTableSelect(['2', '4'].includes(data.val));
10191
+ if (['1', '3'].includes(data.val)) {
10192
+ var _valueRef$current2;
10193
+ pubsub.publish('reissueSelectListReturn', {
10194
+ list: cloneDeep((valueRef === null || valueRef === void 0 ? void 0 : (_valueRef$current2 = valueRef.current) === null || _valueRef$current2 === void 0 ? void 0 : _valueRef$current2.bsGoods) || []),
10195
+ newValue: data === null || data === void 0 ? void 0 : data.newValue
10192
10196
  });
10193
10197
  }
10194
10198
  });
10195
10199
  }, [disabled, value]);
10196
- // useEffect(() => {
10197
- // if (!disabled) {
10198
- // pubsub.publish('goodList', {
10199
- // list: cloneDeep(value?.bsGoods || []),
10200
- // });
10201
- // }
10202
- // }, [value, disabled]);
10203
10200
  var _onSelect = function onSelect(list) {
10204
10201
  var _withInfo$current, _withInfo$current2;
10205
10202
  if (disabled) return;
@@ -10252,16 +10249,7 @@ var BsExchange = function BsExchange(props) {
10252
10249
  reasonList = _props$reasonList === void 0 ? [] : _props$reasonList,
10253
10250
  disabled = props.disabled,
10254
10251
  other = _objectWithoutProperties(props, _excluded$b);
10255
- var _useState = useState([]),
10256
- _useState2 = _slicedToArray(_useState, 2),
10257
- bsGoods = _useState2[0],
10258
- setBsGoods = _useState2[1];
10259
10252
  var valueRef = useRef({});
10260
- // useEffect(() => {
10261
- // pubsub.subscribe('goodList', (_: any, data: any) => {
10262
- // setBsGoods(data.list);
10263
- // });
10264
- // }, []);
10265
10253
  useEffect(function () {
10266
10254
  valueRef.current = value;
10267
10255
  pubsub.subscribeOnce('deleteGood', function (_, data) {
@@ -10284,21 +10272,10 @@ var BsExchange = function BsExchange(props) {
10284
10272
  onChange(newValue);
10285
10273
  }
10286
10274
  });
10287
- // pubsub.subscribeOnce('selectList', (_: any, data: any) => {
10288
- // if (disabled) return;
10289
- // if (value) {
10290
- // const newData = cloneDeep(data);
10291
- // onChange({
10292
- // ...value,
10293
- // bsExchangeReturnGoods: getListHandle([...newData.list], value),
10294
- // });
10295
- // }
10296
- // });
10297
10275
  }, [value]);
10298
10276
  useEffect(function () {
10299
10277
  pubsub.subscribe('selectList', function (_, data) {
10300
10278
  if (disabled) return;
10301
- // console.log('selectList', valueRef.current, data);
10302
10279
  if (valueRef.current) {
10303
10280
  var newDataList = cloneDeep((data === null || data === void 0 ? void 0 : data.list) || []);
10304
10281
  onChange(_objectSpread2(_objectSpread2({}, valueRef.current), {}, {
@@ -10307,6 +10284,15 @@ var BsExchange = function BsExchange(props) {
10307
10284
  }
10308
10285
  });
10309
10286
  }, []);
10287
+ useEffect(function () {
10288
+ pubsub.subscribe('selectListReturn', function (_, data) {
10289
+ if (disabled) return;
10290
+ var newDataList = cloneDeep((data === null || data === void 0 ? void 0 : data.list) || []);
10291
+ onChange(_objectSpread2(_objectSpread2({}, data.newValue), {}, {
10292
+ bsExchangeReturnGoods: getListHandle(newDataList, valueRef.current)
10293
+ }));
10294
+ });
10295
+ }, []);
10310
10296
  var getListHandle = function getListHandle(list, val) {
10311
10297
  var _val$bsExchangeType, _val$bsExchangeType2;
10312
10298
  //如果是原单换
@@ -10361,11 +10347,13 @@ var BsExchange = function BsExchange(props) {
10361
10347
  newValue.bsExchangeType = val;
10362
10348
  newValue.bsExchangeReturnGoods = [];
10363
10349
  newValue.bsExchangeGiftGoods = [];
10364
- // if (['1', '3'].includes(val[0])) {
10365
- // newValue.bsExchangeReturnGoods = getListHandle(bsGoods, newValue);
10366
- // }
10367
- onChange === null || onChange === void 0 ? void 0 : onChange(newValue);
10368
- pubsub.publish('type', val[0]);
10350
+ if (['2', '4'].includes(val[0])) {
10351
+ onChange === null || onChange === void 0 ? void 0 : onChange(newValue);
10352
+ }
10353
+ pubsub.publish('type', {
10354
+ val: val[0],
10355
+ newValue: newValue
10356
+ });
10369
10357
  };
10370
10358
  var changeHandle = function changeHandle(val, key) {
10371
10359
  var newValue = _objectSpread2({}, value);
@@ -10378,12 +10366,10 @@ var BsExchange = function BsExchange(props) {
10378
10366
  newValue[key] = val;
10379
10367
  onChange === null || onChange === void 0 ? void 0 : onChange(newValue);
10380
10368
  if (key === 'bsExchangeType') {
10381
- console.log(val);
10382
10369
  pubsub.publish('type', val[0]);
10383
10370
  }
10384
10371
  };
10385
10372
  var changeReturnHandle = function changeReturnHandle(val, index, key) {
10386
- console.log('changeReturnHandle', val, index, key);
10387
10373
  var newValue = _objectSpread2({}, value);
10388
10374
  newValue.bsExchangeReturnGoods[index][key] = (val || []).map(function (t) {
10389
10375
  t.index = index;
@@ -10485,16 +10471,7 @@ var BsReissue = function BsReissue(props) {
10485
10471
  reasonList = _props$reasonList === void 0 ? [] : _props$reasonList,
10486
10472
  disabled = props.disabled,
10487
10473
  other = _objectWithoutProperties(props, _excluded$c);
10488
- var _useState = useState([]),
10489
- _useState2 = _slicedToArray(_useState, 2),
10490
- bsGoods = _useState2[0],
10491
- setBsGoods = _useState2[1];
10492
10474
  var valueRef = useRef({});
10493
- // useEffect(() => {
10494
- // pubsub.subscribe('goodList', (_: any, data: any) => {
10495
- // setBsGoods(data.list);
10496
- // });
10497
- // }, []);
10498
10475
  useEffect(function () {
10499
10476
  pubsub.subscribe('reissueSelectList', function (_, data) {
10500
10477
  if (disabled) return;
@@ -10510,6 +10487,19 @@ var BsReissue = function BsReissue(props) {
10510
10487
  }
10511
10488
  });
10512
10489
  }, []);
10490
+ useEffect(function () {
10491
+ pubsub.subscribe('reissueSelectListReturn', function (_, data) {
10492
+ if (disabled) return;
10493
+ var newValue = _objectSpread2({}, data.newValue);
10494
+ newValue.bsReissueGoods = data === null || data === void 0 ? void 0 : data.list.map(function (item) {
10495
+ item.money = 0;
10496
+ item.share = 0;
10497
+ item.canUpdateNumber = true;
10498
+ return item;
10499
+ });
10500
+ onChange === null || onChange === void 0 ? void 0 : onChange(newValue);
10501
+ });
10502
+ }, []);
10513
10503
  useEffect(function () {
10514
10504
  valueRef.current = value;
10515
10505
  pubsub.subscribeOnce('reissueDeleteGood', function (_, data) {
@@ -10522,19 +10512,6 @@ var BsReissue = function BsReissue(props) {
10522
10512
  onChange === null || onChange === void 0 ? void 0 : onChange(newValue);
10523
10513
  }
10524
10514
  });
10525
- // pubsub.subscribeOnce('reissueSelectList', (_: any, data: any) => {
10526
- // if (disabled) return;
10527
- // if (value) {
10528
- // const newValue = { ...value };
10529
- // newValue.bsReissueGoods = data?.list.map((item: any) => {
10530
- // item.money = 0;
10531
- // item.share = 0;
10532
- // item.canUpdateNumber = true;
10533
- // return item;
10534
- // });
10535
- // onChange?.(newValue);
10536
- // }
10537
- // });
10538
10515
  }, [value, disabled]);
10539
10516
  var changeHandle = function changeHandle(val, key) {
10540
10517
  var newValue = _objectSpread2({}, value);
@@ -10546,19 +10523,16 @@ var BsReissue = function BsReissue(props) {
10546
10523
  });
10547
10524
  }
10548
10525
  newValue[key] = val;
10549
- // if (key === 'bsReissueType') {
10550
- // newValue.bsReissueGoods = [];
10551
- // if (['1', '3'].includes(val[0])) {
10552
- // newValue.bsReissueGoods = (bsGoods || []).map((item: any) => {
10553
- // item.money = 0;
10554
- // item.share = 0;
10555
- // item.canUpdateNumber = false;
10556
- // return item;
10557
- // });
10558
- // }
10559
- // }
10560
- onChange === null || onChange === void 0 ? void 0 : onChange(_objectSpread2({}, newValue));
10561
- pubsub.publish('reissueType', val[0]);
10526
+ if (key === 'bsReissueType') {
10527
+ newValue.bsReissueGoods = [];
10528
+ }
10529
+ if (['2', '4'].includes(val[0])) {
10530
+ onChange === null || onChange === void 0 ? void 0 : onChange(newValue);
10531
+ }
10532
+ pubsub.publish('reissueType', {
10533
+ val: val[0],
10534
+ newValue: newValue
10535
+ });
10562
10536
  };
10563
10537
  //显示选择商品按钮 原单换不显示选择商品
10564
10538
  var showChangeBtn = useMemo(function () {
package/dist/index.js CHANGED
@@ -10176,41 +10176,38 @@ var BsGoods = function BsGoods(props) {
10176
10176
  var valueRef = React.useRef(null);
10177
10177
  React.useEffect(function () {
10178
10178
  valueRef.current = value;
10179
- pubsub__default['default'].subscribe('type', function (type, val) {
10179
+ pubsub__default['default'].subscribe('type', function (type, data) {
10180
10180
  if (disabled) return;
10181
10181
  withInfo.current = {
10182
10182
  type: type,
10183
- val: val
10183
+ val: data.val
10184
10184
  };
10185
- setTableSelect(['2', '4'].includes(val));
10186
- if (['1', '3'].includes(val)) {
10187
- pubsub__default['default'].publish('selectList', {
10188
- list: lodash.cloneDeep((value === null || value === void 0 ? void 0 : value.bsGoods) || [])
10185
+ setTableSelect(['2', '4'].includes(data.val));
10186
+ if (['1', '3'].includes(data.val)) {
10187
+ var _valueRef$current;
10188
+ pubsub__default['default'].publish('selectListReturn', {
10189
+ list: lodash.cloneDeep((valueRef === null || valueRef === void 0 ? void 0 : (_valueRef$current = valueRef.current) === null || _valueRef$current === void 0 ? void 0 : _valueRef$current.bsGoods) || []),
10190
+ newValue: data === null || data === void 0 ? void 0 : data.newValue
10189
10191
  });
10190
10192
  }
10191
10193
  });
10192
10194
  //补发
10193
- pubsub__default['default'].subscribe('reissueType', function (type, val) {
10195
+ pubsub__default['default'].subscribe('reissueType', function (type, data) {
10194
10196
  if (disabled) return;
10195
10197
  withInfo.current = {
10196
10198
  type: type,
10197
- val: val
10199
+ val: data.val
10198
10200
  };
10199
- setTableSelect(['2', '4'].includes(val));
10200
- if (['1', '3'].includes(val)) {
10201
- pubsub__default['default'].publish('reissueSelectList', {
10202
- list: lodash.cloneDeep((value === null || value === void 0 ? void 0 : value.bsGoods) || [])
10201
+ setTableSelect(['2', '4'].includes(data.val));
10202
+ if (['1', '3'].includes(data.val)) {
10203
+ var _valueRef$current2;
10204
+ pubsub__default['default'].publish('reissueSelectListReturn', {
10205
+ list: lodash.cloneDeep((valueRef === null || valueRef === void 0 ? void 0 : (_valueRef$current2 = valueRef.current) === null || _valueRef$current2 === void 0 ? void 0 : _valueRef$current2.bsGoods) || []),
10206
+ newValue: data === null || data === void 0 ? void 0 : data.newValue
10203
10207
  });
10204
10208
  }
10205
10209
  });
10206
10210
  }, [disabled, value]);
10207
- // useEffect(() => {
10208
- // if (!disabled) {
10209
- // pubsub.publish('goodList', {
10210
- // list: cloneDeep(value?.bsGoods || []),
10211
- // });
10212
- // }
10213
- // }, [value, disabled]);
10214
10211
  var _onSelect = function onSelect(list) {
10215
10212
  var _withInfo$current, _withInfo$current2;
10216
10213
  if (disabled) return;
@@ -10263,16 +10260,7 @@ var BsExchange = function BsExchange(props) {
10263
10260
  reasonList = _props$reasonList === void 0 ? [] : _props$reasonList,
10264
10261
  disabled = props.disabled,
10265
10262
  other = _objectWithoutProperties(props, _excluded$b);
10266
- var _useState = React.useState([]),
10267
- _useState2 = _slicedToArray(_useState, 2),
10268
- bsGoods = _useState2[0],
10269
- setBsGoods = _useState2[1];
10270
10263
  var valueRef = React.useRef({});
10271
- // useEffect(() => {
10272
- // pubsub.subscribe('goodList', (_: any, data: any) => {
10273
- // setBsGoods(data.list);
10274
- // });
10275
- // }, []);
10276
10264
  React.useEffect(function () {
10277
10265
  valueRef.current = value;
10278
10266
  pubsub__default['default'].subscribeOnce('deleteGood', function (_, data) {
@@ -10295,21 +10283,10 @@ var BsExchange = function BsExchange(props) {
10295
10283
  onChange(newValue);
10296
10284
  }
10297
10285
  });
10298
- // pubsub.subscribeOnce('selectList', (_: any, data: any) => {
10299
- // if (disabled) return;
10300
- // if (value) {
10301
- // const newData = cloneDeep(data);
10302
- // onChange({
10303
- // ...value,
10304
- // bsExchangeReturnGoods: getListHandle([...newData.list], value),
10305
- // });
10306
- // }
10307
- // });
10308
10286
  }, [value]);
10309
10287
  React.useEffect(function () {
10310
10288
  pubsub__default['default'].subscribe('selectList', function (_, data) {
10311
10289
  if (disabled) return;
10312
- // console.log('selectList', valueRef.current, data);
10313
10290
  if (valueRef.current) {
10314
10291
  var newDataList = lodash.cloneDeep((data === null || data === void 0 ? void 0 : data.list) || []);
10315
10292
  onChange(_objectSpread2(_objectSpread2({}, valueRef.current), {}, {
@@ -10318,6 +10295,15 @@ var BsExchange = function BsExchange(props) {
10318
10295
  }
10319
10296
  });
10320
10297
  }, []);
10298
+ React.useEffect(function () {
10299
+ pubsub__default['default'].subscribe('selectListReturn', function (_, data) {
10300
+ if (disabled) return;
10301
+ var newDataList = lodash.cloneDeep((data === null || data === void 0 ? void 0 : data.list) || []);
10302
+ onChange(_objectSpread2(_objectSpread2({}, data.newValue), {}, {
10303
+ bsExchangeReturnGoods: getListHandle(newDataList, valueRef.current)
10304
+ }));
10305
+ });
10306
+ }, []);
10321
10307
  var getListHandle = function getListHandle(list, val) {
10322
10308
  var _val$bsExchangeType, _val$bsExchangeType2;
10323
10309
  //如果是原单换
@@ -10372,11 +10358,13 @@ var BsExchange = function BsExchange(props) {
10372
10358
  newValue.bsExchangeType = val;
10373
10359
  newValue.bsExchangeReturnGoods = [];
10374
10360
  newValue.bsExchangeGiftGoods = [];
10375
- // if (['1', '3'].includes(val[0])) {
10376
- // newValue.bsExchangeReturnGoods = getListHandle(bsGoods, newValue);
10377
- // }
10378
- onChange === null || onChange === void 0 ? void 0 : onChange(newValue);
10379
- pubsub__default['default'].publish('type', val[0]);
10361
+ if (['2', '4'].includes(val[0])) {
10362
+ onChange === null || onChange === void 0 ? void 0 : onChange(newValue);
10363
+ }
10364
+ pubsub__default['default'].publish('type', {
10365
+ val: val[0],
10366
+ newValue: newValue
10367
+ });
10380
10368
  };
10381
10369
  var changeHandle = function changeHandle(val, key) {
10382
10370
  var newValue = _objectSpread2({}, value);
@@ -10389,12 +10377,10 @@ var BsExchange = function BsExchange(props) {
10389
10377
  newValue[key] = val;
10390
10378
  onChange === null || onChange === void 0 ? void 0 : onChange(newValue);
10391
10379
  if (key === 'bsExchangeType') {
10392
- console.log(val);
10393
10380
  pubsub__default['default'].publish('type', val[0]);
10394
10381
  }
10395
10382
  };
10396
10383
  var changeReturnHandle = function changeReturnHandle(val, index, key) {
10397
- console.log('changeReturnHandle', val, index, key);
10398
10384
  var newValue = _objectSpread2({}, value);
10399
10385
  newValue.bsExchangeReturnGoods[index][key] = (val || []).map(function (t) {
10400
10386
  t.index = index;
@@ -10496,16 +10482,7 @@ var BsReissue = function BsReissue(props) {
10496
10482
  reasonList = _props$reasonList === void 0 ? [] : _props$reasonList,
10497
10483
  disabled = props.disabled,
10498
10484
  other = _objectWithoutProperties(props, _excluded$c);
10499
- var _useState = React.useState([]),
10500
- _useState2 = _slicedToArray(_useState, 2),
10501
- bsGoods = _useState2[0],
10502
- setBsGoods = _useState2[1];
10503
10485
  var valueRef = React.useRef({});
10504
- // useEffect(() => {
10505
- // pubsub.subscribe('goodList', (_: any, data: any) => {
10506
- // setBsGoods(data.list);
10507
- // });
10508
- // }, []);
10509
10486
  React.useEffect(function () {
10510
10487
  pubsub__default['default'].subscribe('reissueSelectList', function (_, data) {
10511
10488
  if (disabled) return;
@@ -10521,6 +10498,19 @@ var BsReissue = function BsReissue(props) {
10521
10498
  }
10522
10499
  });
10523
10500
  }, []);
10501
+ React.useEffect(function () {
10502
+ pubsub__default['default'].subscribe('reissueSelectListReturn', function (_, data) {
10503
+ if (disabled) return;
10504
+ var newValue = _objectSpread2({}, data.newValue);
10505
+ newValue.bsReissueGoods = data === null || data === void 0 ? void 0 : data.list.map(function (item) {
10506
+ item.money = 0;
10507
+ item.share = 0;
10508
+ item.canUpdateNumber = true;
10509
+ return item;
10510
+ });
10511
+ onChange === null || onChange === void 0 ? void 0 : onChange(newValue);
10512
+ });
10513
+ }, []);
10524
10514
  React.useEffect(function () {
10525
10515
  valueRef.current = value;
10526
10516
  pubsub__default['default'].subscribeOnce('reissueDeleteGood', function (_, data) {
@@ -10533,19 +10523,6 @@ var BsReissue = function BsReissue(props) {
10533
10523
  onChange === null || onChange === void 0 ? void 0 : onChange(newValue);
10534
10524
  }
10535
10525
  });
10536
- // pubsub.subscribeOnce('reissueSelectList', (_: any, data: any) => {
10537
- // if (disabled) return;
10538
- // if (value) {
10539
- // const newValue = { ...value };
10540
- // newValue.bsReissueGoods = data?.list.map((item: any) => {
10541
- // item.money = 0;
10542
- // item.share = 0;
10543
- // item.canUpdateNumber = true;
10544
- // return item;
10545
- // });
10546
- // onChange?.(newValue);
10547
- // }
10548
- // });
10549
10526
  }, [value, disabled]);
10550
10527
  var changeHandle = function changeHandle(val, key) {
10551
10528
  var newValue = _objectSpread2({}, value);
@@ -10557,19 +10534,16 @@ var BsReissue = function BsReissue(props) {
10557
10534
  });
10558
10535
  }
10559
10536
  newValue[key] = val;
10560
- // if (key === 'bsReissueType') {
10561
- // newValue.bsReissueGoods = [];
10562
- // if (['1', '3'].includes(val[0])) {
10563
- // newValue.bsReissueGoods = (bsGoods || []).map((item: any) => {
10564
- // item.money = 0;
10565
- // item.share = 0;
10566
- // item.canUpdateNumber = false;
10567
- // return item;
10568
- // });
10569
- // }
10570
- // }
10571
- onChange === null || onChange === void 0 ? void 0 : onChange(_objectSpread2({}, newValue));
10572
- pubsub__default['default'].publish('reissueType', val[0]);
10537
+ if (key === 'bsReissueType') {
10538
+ newValue.bsReissueGoods = [];
10539
+ }
10540
+ if (['2', '4'].includes(val[0])) {
10541
+ onChange === null || onChange === void 0 ? void 0 : onChange(newValue);
10542
+ }
10543
+ pubsub__default['default'].publish('reissueType', {
10544
+ val: val[0],
10545
+ newValue: newValue
10546
+ });
10573
10547
  };
10574
10548
  //显示选择商品按钮 原单换不显示选择商品
10575
10549
  var showChangeBtn = React.useMemo(function () {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kmkf-fe-packages/basic-components",
3
- "version": "0.7.15-alpha.70",
3
+ "version": "0.7.15-alpha.73",
4
4
  "description": "> TODO: description",
5
5
  "homepage": "",
6
6
  "license": "ISC",
@@ -20,7 +20,7 @@
20
20
  "watch": "nodemon --ignore dist/ --ignore node_modules/ --watch src/ -C -e ts,tsx,less --debug -x 'yarn async'"
21
21
  },
22
22
  "dependencies": {
23
- "@kmkf-fe-packages/kmkf-utils": "^0.7.15-alpha.70",
23
+ "@kmkf-fe-packages/kmkf-utils": "^0.7.15-alpha.71",
24
24
  "lodash": "^4.17.21",
25
25
  "pubsub-js": "^1.9.4",
26
26
  "umi-request": "^1.4.0"
@@ -58,5 +58,5 @@
58
58
  "publishConfig": {
59
59
  "access": "public"
60
60
  },
61
- "gitHead": "acde6f0a59a6e1516cea8fc29870bbc58d74d0a7"
61
+ "gitHead": "a212416de89353bc5f4a45a00bb6670cc10e5feb"
62
62
  }