bxs-tools-ui 3.0.0 → 3.0.1

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/index.js CHANGED
@@ -1735,7 +1735,7 @@ function _productDataHandler() {
1735
1735
  if (prodData.multipleInsured) {
1736
1736
  multipleInsuredHandler(personData);
1737
1737
  }
1738
- if (!(prodData.feeValidateMode === 'single' || prodVerifyData.feeValidateMode === 'single')) {
1738
+ if (!(prodData.feeValidateMode === 'single' || prodVerifyData && prodVerifyData.feeValidateMode === 'single')) {
1739
1739
  _context.next = 3;
1740
1740
  break;
1741
1741
  }
@@ -39538,7 +39538,7 @@ if (typeof window !== 'undefined' && window.Vue) {
39538
39538
  install(window.Vue);
39539
39539
  }
39540
39540
  const index = {
39541
- version: '3.0.0',
39541
+ version: '3.0.1',
39542
39542
  install: install
39543
39543
  };
39544
39544
 
@@ -1595,7 +1595,7 @@ function _productDataHandler() {
1595
1595
  if (prodData.multipleInsured) {
1596
1596
  multipleInsuredHandler(personData);
1597
1597
  }
1598
- if (!(prodData.feeValidateMode === 'single' || prodVerifyData.feeValidateMode === 'single')) {
1598
+ if (!(prodData.feeValidateMode === 'single' || prodVerifyData && prodVerifyData.feeValidateMode === 'single')) {
1599
1599
  _context.next = 3;
1600
1600
  break;
1601
1601
  }
@@ -1570,7 +1570,7 @@ function _productDataHandler() {
1570
1570
  if (prodData.multipleInsured) {
1571
1571
  multipleInsuredHandler(personData);
1572
1572
  }
1573
- if (!(prodData.feeValidateMode === 'single' || prodVerifyData.feeValidateMode === 'single')) {
1573
+ if (!(prodData.feeValidateMode === 'single' || prodVerifyData && prodVerifyData.feeValidateMode === 'single')) {
1574
1574
  _context.next = 3;
1575
1575
  break;
1576
1576
  }
package/es/utils/index.js CHANGED
@@ -1623,7 +1623,7 @@ function _productDataHandler() {
1623
1623
  if (prodData.multipleInsured) {
1624
1624
  multipleInsuredHandler(personData);
1625
1625
  }
1626
- if (!(prodData.feeValidateMode === 'single' || prodVerifyData.feeValidateMode === 'single')) {
1626
+ if (!(prodData.feeValidateMode === 'single' || prodVerifyData && prodVerifyData.feeValidateMode === 'single')) {
1627
1627
  _context.next = 3;
1628
1628
  break;
1629
1629
  }
package/lib/index.js CHANGED
@@ -1725,7 +1725,7 @@
1725
1725
  if (prodData.multipleInsured) {
1726
1726
  multipleInsuredHandler(personData);
1727
1727
  }
1728
- if (!(prodData.feeValidateMode === 'single' || prodVerifyData.feeValidateMode === 'single')) {
1728
+ if (!(prodData.feeValidateMode === 'single' || prodVerifyData && prodVerifyData.feeValidateMode === 'single')) {
1729
1729
  _context.next = 3;
1730
1730
  break;
1731
1731
  }
@@ -39528,7 +39528,7 @@
39528
39528
  install(window.Vue);
39529
39529
  }
39530
39530
  var index = {
39531
- version: '3.0.0',
39531
+ version: '3.0.1',
39532
39532
  install: install
39533
39533
  };
39534
39534
 
@@ -1594,7 +1594,7 @@
1594
1594
  if (prodData.multipleInsured) {
1595
1595
  multipleInsuredHandler(personData);
1596
1596
  }
1597
- if (!(prodData.feeValidateMode === 'single' || prodVerifyData.feeValidateMode === 'single')) {
1597
+ if (!(prodData.feeValidateMode === 'single' || prodVerifyData && prodVerifyData.feeValidateMode === 'single')) {
1598
1598
  _context.next = 3;
1599
1599
  break;
1600
1600
  }
@@ -1567,7 +1567,7 @@
1567
1567
  if (prodData.multipleInsured) {
1568
1568
  multipleInsuredHandler(personData);
1569
1569
  }
1570
- if (!(prodData.feeValidateMode === 'single' || prodVerifyData.feeValidateMode === 'single')) {
1570
+ if (!(prodData.feeValidateMode === 'single' || prodVerifyData && prodVerifyData.feeValidateMode === 'single')) {
1571
1571
  _context.next = 3;
1572
1572
  break;
1573
1573
  }
@@ -1625,7 +1625,7 @@
1625
1625
  if (prodData.multipleInsured) {
1626
1626
  multipleInsuredHandler(personData);
1627
1627
  }
1628
- if (!(prodData.feeValidateMode === 'single' || prodVerifyData.feeValidateMode === 'single')) {
1628
+ if (!(prodData.feeValidateMode === 'single' || prodVerifyData && prodVerifyData.feeValidateMode === 'single')) {
1629
1629
  _context.next = 3;
1630
1630
  break;
1631
1631
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bxs-tools-ui",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "微易前端业务组件",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
@@ -61,7 +61,7 @@ export async function productDataHandler(prodData : IPbProduct, prodVerifyData :
61
61
  if (prodData.multipleInsured) {
62
62
  multipleInsuredHandler(personData)
63
63
  }
64
- if (prodData.feeValidateMode === 'single' || prodVerifyData.feeValidateMode === 'single') {
64
+ if (prodData.feeValidateMode === 'single' || (prodVerifyData && prodVerifyData.feeValidateMode === 'single')) {
65
65
  productVerifyData = await getSingleInsurancesVerifyData(prodData, personData, parmas).catch(() => {})
66
66
  } else {
67
67
  productVerifyData = prodVerifyData
package/packages/index.ts CHANGED
@@ -47,6 +47,6 @@ export {
47
47
  }
48
48
 
49
49
  export default {
50
- version: '3.0.0',
50
+ version: '3.0.1',
51
51
  install
52
52
  }