hoeditor-web 3.1.127 → 3.1.128

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.
@@ -79764,6 +79764,7 @@ var DrawSignNode = /*#__PURE__*/function (_DrawCombineNode) {
79764
79764
  };
79765
79765
  fingerImage.onload = function () {
79766
79766
  var fingerHeight = fingerImage.naturalHeight !== 0 ? fingerImage.naturalHeight : fingerImage.height;
79767
+ var fingerWidth = fingerImage.naturalWidth !== 0 ? fingerImage.naturalWidth : fingerImage.width;
79767
79768
  // 存在自定义指纹图片高度时
79768
79769
  if (hoEditorFactory.patientFingerHeight != 0) {
79769
79770
  fingerscale = hoEditorFactory.patientFingerHeight / fingerHeight;
@@ -210287,7 +210288,7 @@ var TextNode = __webpack_require__(27198);
210287
210288
  // EXTERNAL MODULE: ./src/editor/dom/treeNode/ParagraphNode.ts
210288
210289
  var ParagraphNode = __webpack_require__(67945);
210289
210290
  ;// CONCATENATED MODULE: ./src/components/version.ts
210290
- /* harmony default export */ var version = ('3.1.127');
210291
+ /* harmony default export */ var version = ('3.1.128');
210291
210292
  // EXTERNAL MODULE: ./src/components/controls/poperTipText/PoperTipText.vue + 5 modules
210292
210293
  var PoperTipText = __webpack_require__(50987);
210293
210294
  ;// CONCATENATED MODULE: ./src/components/controls/poperTipText/index.ts
@@ -226971,7 +226972,10 @@ var VueController = /*#__PURE__*/function () {
226971
226972
  "id": key.split("|")[0],
226972
226973
  "dataid": key.split("|")[1]
226973
226974
  };
226974
- recordArr.push(obj);
226975
+ var _node16 = _this14.getNodeByDataID('all', key.split("|")[1]);
226976
+ if (_node16 == null) {
226977
+ recordArr.push(obj);
226978
+ }
226975
226979
  } else {
226976
226980
  if (Object.keys(value[1]).length > 0) {
226977
226981
  if (value[1].customProperty && typeof value[1].customProperty !== 'string') {
@@ -226990,9 +226994,9 @@ var VueController = /*#__PURE__*/function () {
226990
226994
  });
226991
226995
  }
226992
226996
  if (value[1].nodeTypes == 'sign') {
226993
- var _node16 = _this14.getNodeByDataID('main', key.replace('|', ''));
226994
- if (_node16 instanceof SignNode/* SignNode */.N) {
226995
- var signJsons = _node16.node2Json();
226997
+ var _node17 = _this14.getNodeByDataID('main', key.replace('|', ''));
226998
+ if (_node17 instanceof SignNode/* SignNode */.N) {
226999
+ var signJsons = _node17.node2Json();
226996
227000
  var signXml = x2js.js2xml(signJsons);
226997
227001
  obj = {
226998
227002
  "type": value[0],
@@ -227018,7 +227022,7 @@ var VueController = /*#__PURE__*/function () {
227018
227022
  }
227019
227023
  } else {
227020
227024
  var id = key.split("|")[0];
227021
- var _node17 = _this14.getNodeByID('all', id);
227025
+ var _node18 = _this14.getNodeByID('all', id);
227022
227026
  }
227023
227027
  });
227024
227028
  return recordArr;