hoeditor-web 3.1.203 → 3.1.204
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/lib/hoeditor.umd.js +9 -9
- package/lib/hoeditor.umd.min.js +2 -2
- package/package.json +1 -1
package/lib/hoeditor.umd.js
CHANGED
|
@@ -147555,7 +147555,7 @@ class DrawArea extends _drawNode_DrawRect__WEBPACK_IMPORTED_MODULE_6__/* .DrawRe
|
|
|
147555
147555
|
deleteComment: hoEditorFactory.reviewJson.deleteComment,
|
|
147556
147556
|
commentID: comment.id,
|
|
147557
147557
|
review: false,
|
|
147558
|
-
isHandle: comment.customProperty ? comment.customProperty.
|
|
147558
|
+
isHandle: comment.customProperty ? comment.customProperty.isHandle : '0',
|
|
147559
147559
|
reviewParams: hoEditorFactory.reviewParams
|
|
147560
147560
|
});
|
|
147561
147561
|
}
|
|
@@ -223217,7 +223217,7 @@ var entry_lib_TextNode = __webpack_require__(32083);
|
|
|
223217
223217
|
// EXTERNAL MODULE: ./src/editor/dom/treeNode/ParagraphNode.ts
|
|
223218
223218
|
var entry_lib_ParagraphNode = __webpack_require__(40504);
|
|
223219
223219
|
;// ./src/components/version.ts
|
|
223220
|
-
/* harmony default export */ var entry_lib_version = ('3.1.
|
|
223220
|
+
/* harmony default export */ var entry_lib_version = ('3.1.204');
|
|
223221
223221
|
// EXTERNAL MODULE: ./src/components/controls/poperTipText/PoperTipText.vue + 5 modules
|
|
223222
223222
|
var entry_lib_PoperTipText = __webpack_require__(89316);
|
|
223223
223223
|
;// ./src/components/controls/poperTipText/index.ts
|
|
@@ -238729,17 +238729,17 @@ class entry_lib_VueController {
|
|
|
238729
238729
|
getDocComment(area) {
|
|
238730
238730
|
const hoEditorFactory = entry_lib_HOEditorFactorys/* HOEditorFactorys */.O.instance().getFactory(this._hoEditorFactoryID);
|
|
238731
238731
|
const commentsMap = hoEditorFactory.drawTree.commentsMap;
|
|
238732
|
-
let
|
|
238732
|
+
let isHandle = false;
|
|
238733
238733
|
commentsMap.forEach(v => {
|
|
238734
238734
|
if (area === '1') {
|
|
238735
|
-
if (v.customProperty && v.customProperty.
|
|
238735
|
+
if (v.customProperty && v.customProperty.isHandle === '1') isHandle = true;
|
|
238736
238736
|
} else if (area === '0') {
|
|
238737
|
-
if (!v.customProperty || v.customProperty && v.customProperty.
|
|
238737
|
+
if (!v.customProperty || v.customProperty && v.customProperty.isHandle === '0') isHandle = true;
|
|
238738
238738
|
} else if (area === undefined) {
|
|
238739
|
-
|
|
238739
|
+
isHandle = true;
|
|
238740
238740
|
}
|
|
238741
238741
|
});
|
|
238742
|
-
return
|
|
238742
|
+
return isHandle;
|
|
238743
238743
|
}
|
|
238744
238744
|
/**
|
|
238745
238745
|
* 获取当前病历中所有批注
|
|
@@ -238791,7 +238791,7 @@ class entry_lib_VueController {
|
|
|
238791
238791
|
if (!value.customProperty) {
|
|
238792
238792
|
value.customProperty = {};
|
|
238793
238793
|
}
|
|
238794
|
-
value.customProperty.
|
|
238794
|
+
value.customProperty.isHandle = status == undefined ? '1' : status;
|
|
238795
238795
|
commentsMap.set(key, value);
|
|
238796
238796
|
});
|
|
238797
238797
|
drawTree.commentsMap = commentsMap;
|
|
@@ -238810,7 +238810,7 @@ class entry_lib_VueController {
|
|
|
238810
238810
|
if (!value.customProperty) {
|
|
238811
238811
|
value.customProperty = {};
|
|
238812
238812
|
}
|
|
238813
|
-
value.customProperty.
|
|
238813
|
+
value.customProperty.isHandle = status;
|
|
238814
238814
|
commentsMap.set(key, value);
|
|
238815
238815
|
}
|
|
238816
238816
|
});
|