iv-npm 1.5.100 → 1.5.101

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iv-npm",
3
- "version": "1.5.100",
3
+ "version": "1.5.101",
4
4
  "description": "公共通用包",
5
5
  "author": "Mr.Cong",
6
6
  "license": "ISC",
@@ -309,11 +309,11 @@ function yearMonthDayFormat(data) {
309
309
  // utils/businessUi/IVAdjustAmount.ts
310
310
  function onChangeTail(item) {
311
311
  return function baseTail(key, cb) {
312
- const temp = item.reduce((_c, _p) => {
313
- if (_p.isInput === void 0 || _p.isInput)
314
- return _c + 0;
315
- _p = cb ? cb(_p) : _p;
316
- return _c + parseFloat(_p[key]);
312
+ const temp = item.reduce((_p, _c) => {
313
+ if (_c.isInput !== void 0 || _c.isInput)
314
+ return _p + 0;
315
+ _c = cb ? cb(_c) : _c;
316
+ return _p + parseFloat(_c[key]);
317
317
  }, 0);
318
318
  return temp;
319
319
  };