bxs-tools-ui 3.1.2 → 3.2.0-0
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/es/add-and-take/index.js +2 -4
- package/es/adjust-baoe/index.js +2 -4
- package/es/index.css +1 -1
- package/es/index.js +264 -66
- package/es/insure-calculate/index.js +2 -4
- package/es/person-info/index.js +185 -21
- package/es/product-info/index.js +244 -43
- package/es/share-sheet/index.css +1 -1
- package/es/share-sheet/index.js +4 -11
- package/es/utils/index.js +191 -25
- package/lib/add-and-take/index.js +2 -4
- package/lib/adjust-baoe/index.js +2 -4
- package/lib/index.css +1 -1
- package/lib/index.js +264 -66
- package/lib/insure-calculate/index.js +2 -4
- package/lib/person-info/index.js +185 -21
- package/lib/product-info/index.js +244 -43
- package/lib/share-sheet/index.css +1 -1
- package/lib/share-sheet/index.js +4 -11
- package/lib/utils/index.js +194 -24
- package/package.json +1 -1
- package/packages/add-and-take/demo/index.vue +2 -2
- package/packages/bxs-utils/planbook/common.ts +144 -0
- package/packages/bxs-utils/planbook/index.ts +1 -4
- package/packages/bxs-utils/planbook/person.ts +2 -4
- package/packages/bxs-utils/planbook/product.ts +21 -20
- package/packages/index.ts +1 -1
- package/packages/planbook-input/components/product-table.vue +8 -9
- package/packages/planbook-input/helper.js +134 -11
- package/packages/planbook-input/index.vue +39 -9
- package/packages/product-info/index.vue +42 -8
- package/packages/share-sheet/index.css +1 -3
- package/packages/share-sheet/index.vue +2 -5
- package/packages/share-sheet/readme.md +99 -61
package/es/add-and-take/index.js
CHANGED
|
@@ -8621,6 +8621,8 @@ var PURPOSE_OPTIONS = [{
|
|
|
8621
8621
|
desc: '自定义'
|
|
8622
8622
|
}];
|
|
8623
8623
|
|
|
8624
|
+
document && document.cookie && document.cookie.match('ENABLE_LIZHAO_DEBUG=1');
|
|
8625
|
+
|
|
8624
8626
|
/**
|
|
8625
8627
|
* 将数值转换为千分位
|
|
8626
8628
|
* @author Lizhao <lz@winbaoxian.com>
|
|
@@ -8670,10 +8672,6 @@ memoize(function (params) {
|
|
|
8670
8672
|
return QS.stringify(params);
|
|
8671
8673
|
});
|
|
8672
8674
|
|
|
8673
|
-
if (document && document.cookie && document.cookie.match('LIZHAO_DEBUG_CONSOLE_FLAG=1')) {
|
|
8674
|
-
window.DEBUG_TEMP_CONSOLE_FLAG = true;
|
|
8675
|
-
}
|
|
8676
|
-
|
|
8677
8675
|
//
|
|
8678
8676
|
//
|
|
8679
8677
|
//
|
package/es/adjust-baoe/index.js
CHANGED
|
@@ -472,6 +472,8 @@ function Watch(path, options) {
|
|
|
472
472
|
});
|
|
473
473
|
}
|
|
474
474
|
|
|
475
|
+
document && document.cookie && document.cookie.match('ENABLE_LIZHAO_DEBUG=1');
|
|
476
|
+
|
|
475
477
|
/**
|
|
476
478
|
* **将对象下的 eleOrderList 数组中的子元素下的 value,转换为 key-value 键值对**
|
|
477
479
|
* @author Lizhao <lz@winbaoxian.com>
|
|
@@ -9128,10 +9130,6 @@ function convertProductData(prodData) {
|
|
|
9128
9130
|
return productData;
|
|
9129
9131
|
}
|
|
9130
9132
|
|
|
9131
|
-
if (document && document.cookie && document.cookie.match('LIZHAO_DEBUG_CONSOLE_FLAG=1')) {
|
|
9132
|
-
window.DEBUG_TEMP_CONSOLE_FLAG = true;
|
|
9133
|
-
}
|
|
9134
|
-
|
|
9135
9133
|
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4;
|
|
9136
9134
|
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
9137
9135
|
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), true).forEach(function (r) { _defineProperty$1(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|