hoeditor-web 3.0.99 → 3.0.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/lib/hoeditor.css +2 -13026
- package/lib/hoeditor.umd.js +142 -114
- package/lib/hoeditor.umd.min.js +3 -3
- package/package.json +1 -1
package/lib/hoeditor.umd.js
CHANGED
|
@@ -5699,7 +5699,7 @@ var component = (0,componentNormalizer/* default */.Z)(
|
|
|
5699
5699
|
|
|
5700
5700
|
/***/ }),
|
|
5701
5701
|
|
|
5702
|
-
/***/
|
|
5702
|
+
/***/ 215:
|
|
5703
5703
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
5704
5704
|
|
|
5705
5705
|
"use strict";
|
|
@@ -5711,7 +5711,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
5711
5711
|
"default": function() { return /* binding */ Delimiter; }
|
|
5712
5712
|
});
|
|
5713
5713
|
|
|
5714
|
-
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/controls/delimiter/Delimiter.vue?vue&type=template&id=
|
|
5714
|
+
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/controls/delimiter/Delimiter.vue?vue&type=template&id=e42af306&
|
|
5715
5715
|
var render = function render() {
|
|
5716
5716
|
var _vm = this,
|
|
5717
5717
|
_c = _vm._self._c;
|
|
@@ -5736,6 +5736,16 @@ var render = function render() {
|
|
|
5736
5736
|
staticClass: "control-list"
|
|
5737
5737
|
}, [_c('li', {
|
|
5738
5738
|
staticClass: "control-item"
|
|
5739
|
+
}, [_c('PrintLineStyle', {
|
|
5740
|
+
attrs: {
|
|
5741
|
+
"defaultStyle": 0,
|
|
5742
|
+
"placeholder": "样式"
|
|
5743
|
+
},
|
|
5744
|
+
on: {
|
|
5745
|
+
"change": _vm.styleChange
|
|
5746
|
+
}
|
|
5747
|
+
})], 1), _c('li', {
|
|
5748
|
+
staticClass: "control-item"
|
|
5739
5749
|
}, [_c('span', {
|
|
5740
5750
|
staticClass: "label"
|
|
5741
5751
|
}, [_vm._v("宽度")]), _c('a-input-number', {
|
|
@@ -5793,17 +5803,22 @@ var staticRenderFns = [];
|
|
|
5793
5803
|
|
|
5794
5804
|
// EXTERNAL MODULE: ./src/components/controls/colorPicker/HoColorPicker.vue + 5 modules
|
|
5795
5805
|
var HoColorPicker = __webpack_require__(91351);
|
|
5806
|
+
// EXTERNAL MODULE: ./src/components/controls/printstyle/PrintLineStyle.vue + 3 modules
|
|
5807
|
+
var PrintLineStyle = __webpack_require__(51484);
|
|
5796
5808
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/controls/delimiter/Delimiter.vue?vue&type=script&lang=js&
|
|
5797
5809
|
|
|
5810
|
+
|
|
5798
5811
|
/* harmony default export */ var Delimitervue_type_script_lang_js_ = ({
|
|
5799
5812
|
name: 'Delimiter',
|
|
5800
5813
|
components: {
|
|
5801
|
-
HoColorPicker: HoColorPicker["default"]
|
|
5814
|
+
HoColorPicker: HoColorPicker["default"],
|
|
5815
|
+
PrintLineStyle: PrintLineStyle["default"]
|
|
5802
5816
|
},
|
|
5803
5817
|
data: function data() {
|
|
5804
5818
|
return {
|
|
5805
5819
|
width: 1,
|
|
5806
5820
|
color: '#000',
|
|
5821
|
+
line: '0',
|
|
5807
5822
|
animationClassNames: 'control-modal-contents delimiter-modal animation-in'
|
|
5808
5823
|
};
|
|
5809
5824
|
},
|
|
@@ -5818,21 +5833,24 @@ var HoColorPicker = __webpack_require__(91351);
|
|
|
5818
5833
|
* 插入分割福
|
|
5819
5834
|
*/
|
|
5820
5835
|
insertDelimiter: function insertDelimiter() {
|
|
5821
|
-
this.vueController.insertSeparateChar(this.width, this.color);
|
|
5836
|
+
this.vueController.insertSeparateChar(this.width, this.color, this.line);
|
|
5822
5837
|
this.handleClose();
|
|
5823
5838
|
},
|
|
5824
5839
|
handleClose: function handleClose() {
|
|
5825
5840
|
this.animationClassNames = 'control-modal-contents delimiter-modal animation-out';
|
|
5826
5841
|
this.$emit('closed');
|
|
5842
|
+
},
|
|
5843
|
+
styleChange: function styleChange(style) {
|
|
5844
|
+
this.line = style;
|
|
5827
5845
|
}
|
|
5828
5846
|
}
|
|
5829
5847
|
});
|
|
5830
5848
|
;// CONCATENATED MODULE: ./src/components/controls/delimiter/Delimiter.vue?vue&type=script&lang=js&
|
|
5831
5849
|
/* harmony default export */ var delimiter_Delimitervue_type_script_lang_js_ = (Delimitervue_type_script_lang_js_);
|
|
5832
|
-
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/controls/delimiter/Delimiter.vue?vue&type=style&index=0&id=
|
|
5850
|
+
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/controls/delimiter/Delimiter.vue?vue&type=style&index=0&id=e42af306&prod&lang=scss&
|
|
5833
5851
|
// extracted by mini-css-extract-plugin
|
|
5834
5852
|
|
|
5835
|
-
;// CONCATENATED MODULE: ./src/components/controls/delimiter/Delimiter.vue?vue&type=style&index=0&id=
|
|
5853
|
+
;// CONCATENATED MODULE: ./src/components/controls/delimiter/Delimiter.vue?vue&type=style&index=0&id=e42af306&prod&lang=scss&
|
|
5836
5854
|
|
|
5837
5855
|
// EXTERNAL MODULE: ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
|
|
5838
5856
|
var componentNormalizer = __webpack_require__(70713);
|
|
@@ -16713,7 +16731,7 @@ var component = (0,componentNormalizer/* default */.Z)(
|
|
|
16713
16731
|
|
|
16714
16732
|
/***/ }),
|
|
16715
16733
|
|
|
16716
|
-
/***/
|
|
16734
|
+
/***/ 69086:
|
|
16717
16735
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
16718
16736
|
|
|
16719
16737
|
"use strict";
|
|
@@ -16729,7 +16747,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
16729
16747
|
var es_array_includes = __webpack_require__(26699);
|
|
16730
16748
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.includes.js
|
|
16731
16749
|
var es_string_includes = __webpack_require__(32023);
|
|
16732
|
-
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/controls/table/TableCellProperty.vue?vue&type=template&id=
|
|
16750
|
+
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/controls/table/TableCellProperty.vue?vue&type=template&id=7506defc&
|
|
16733
16751
|
|
|
16734
16752
|
|
|
16735
16753
|
var render = function render() {
|
|
@@ -16773,32 +16791,6 @@ var render = function render() {
|
|
|
16773
16791
|
staticClass: "control-item"
|
|
16774
16792
|
}, [_c('span', {
|
|
16775
16793
|
staticClass: "label"
|
|
16776
|
-
}, [_vm._v("编号")]), _c('span', {
|
|
16777
|
-
staticClass: "readonly-value"
|
|
16778
|
-
}, [_vm._v(_vm._s(_vm.id))])]), _c('div', {
|
|
16779
|
-
staticClass: "control-item"
|
|
16780
|
-
}, [_c('span', {
|
|
16781
|
-
staticClass: "label",
|
|
16782
|
-
staticStyle: {
|
|
16783
|
-
"margin-left": "10px"
|
|
16784
|
-
}
|
|
16785
|
-
}, [_vm._v("标题")]), _c('a-input', {
|
|
16786
|
-
attrs: {
|
|
16787
|
-
"placeholder": "标题"
|
|
16788
|
-
},
|
|
16789
|
-
model: {
|
|
16790
|
-
value: _vm.title,
|
|
16791
|
-
callback: function callback($$v) {
|
|
16792
|
-
_vm.title = $$v;
|
|
16793
|
-
},
|
|
16794
|
-
expression: "title"
|
|
16795
|
-
}
|
|
16796
|
-
})], 1)]), _c('li', {
|
|
16797
|
-
staticClass: "control-item"
|
|
16798
|
-
}, [_c('div', {
|
|
16799
|
-
staticClass: "control-item"
|
|
16800
|
-
}, [_c('span', {
|
|
16801
|
-
staticClass: "label"
|
|
16802
16794
|
}, [_vm._v("自定义属性")]), _c('a-button', {
|
|
16803
16795
|
on: {
|
|
16804
16796
|
"click": _vm.openCustomsModal
|
|
@@ -17563,7 +17555,7 @@ var render = function render() {
|
|
|
17563
17555
|
};
|
|
17564
17556
|
var staticRenderFns = [];
|
|
17565
17557
|
|
|
17566
|
-
;// CONCATENATED MODULE: ./src/components/controls/table/TableCellProperty.vue?vue&type=template&id=
|
|
17558
|
+
;// CONCATENATED MODULE: ./src/components/controls/table/TableCellProperty.vue?vue&type=template&id=7506defc&
|
|
17567
17559
|
|
|
17568
17560
|
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/slicedToArray.js + 3 modules
|
|
17569
17561
|
var slicedToArray = __webpack_require__(27222);
|
|
@@ -17947,7 +17939,7 @@ var columns = [{
|
|
|
17947
17939
|
var hoEditorFactory = HOEditorFactorys/* HOEditorFactorys.instance */.b.instance().getFactory(this.hoEditorFactoryId);
|
|
17948
17940
|
var domRange = hoEditorFactory.docTree.curDomRange;
|
|
17949
17941
|
var table = hoEditorFactory.docTree.curDomRange.normalize().inSameTable()[1];
|
|
17950
|
-
var cellNodeList = table.getTableSelectCells(domRange,
|
|
17942
|
+
var cellNodeList = table.getTableSelectCells(domRange, false);
|
|
17951
17943
|
var cellNode = this.getCellNodes();
|
|
17952
17944
|
if (cellNodeList.length === 0 && cellNode !== null) {
|
|
17953
17945
|
cellNodeList.push(cellNode);
|
|
@@ -17964,10 +17956,10 @@ var columns = [{
|
|
|
17964
17956
|
});
|
|
17965
17957
|
;// CONCATENATED MODULE: ./src/components/controls/table/TableCellProperty.vue?vue&type=script&lang=js&
|
|
17966
17958
|
/* harmony default export */ var table_TableCellPropertyvue_type_script_lang_js_ = (TableCellPropertyvue_type_script_lang_js_);
|
|
17967
|
-
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/controls/table/TableCellProperty.vue?vue&type=style&index=0&id=
|
|
17959
|
+
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/controls/table/TableCellProperty.vue?vue&type=style&index=0&id=7506defc&prod&lang=scss&
|
|
17968
17960
|
// extracted by mini-css-extract-plugin
|
|
17969
17961
|
|
|
17970
|
-
;// CONCATENATED MODULE: ./src/components/controls/table/TableCellProperty.vue?vue&type=style&index=0&id=
|
|
17962
|
+
;// CONCATENATED MODULE: ./src/components/controls/table/TableCellProperty.vue?vue&type=style&index=0&id=7506defc&prod&lang=scss&
|
|
17971
17963
|
|
|
17972
17964
|
// EXTERNAL MODULE: ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
|
|
17973
17965
|
var componentNormalizer = __webpack_require__(70713);
|
|
@@ -40137,7 +40129,7 @@ var DocController = /*#__PURE__*/function () {
|
|
|
40137
40129
|
key: "deleteTextBeforePath",
|
|
40138
40130
|
value: function () {
|
|
40139
40131
|
var _deleteTextBeforePath = (0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z)( /*#__PURE__*/(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_2__/* ["default"] */ .Z)().mark(function _callee(startPath) {
|
|
40140
|
-
var hoEditorFactory, domRange, nodePosition, childIndex, node, ret, topath, arr, tmp, aRange, endPath, _topath, _aRange, isError, prevNode, cellNode, tableNode, tIndex, cIndex, preParaNode, newpath, signUserId, preNode, nextNode, path, signNode, spath, epath, newSignNode, pNode;
|
|
40132
|
+
var hoEditorFactory, domRange, nodePosition, childIndex, node, ret, topath, arr, tmp, aRange, endPath, _topath, _aRange, isError, prevNode, cellNode, tableNode, tIndex, cIndex, preParaNode, newpath, signUserId, preNode, nextNode, path, signNode, spath, epath, newSignNode, nodesDeleteUndoUnit, pNode;
|
|
40141
40133
|
return (0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_regeneratorRuntime_js__WEBPACK_IMPORTED_MODULE_2__/* ["default"] */ .Z)().wrap(function _callee$(_context) {
|
|
40142
40134
|
while (1) {
|
|
40143
40135
|
switch (_context.prev = _context.next) {
|
|
@@ -40159,18 +40151,18 @@ var DocController = /*#__PURE__*/function () {
|
|
|
40159
40151
|
// )
|
|
40160
40152
|
// );
|
|
40161
40153
|
// hoEditorFactory.undoService.commit();
|
|
40162
|
-
_context.next =
|
|
40154
|
+
_context.next = 125;
|
|
40163
40155
|
break;
|
|
40164
40156
|
case 6:
|
|
40165
40157
|
nodePosition = hoEditorFactory.docTree.findNodePositionByPath(startPath);
|
|
40166
40158
|
childIndex = nodePosition.childIndex;
|
|
40167
40159
|
node = nodePosition.node;
|
|
40168
40160
|
if (!node) {
|
|
40169
|
-
_context.next =
|
|
40161
|
+
_context.next = 125;
|
|
40170
40162
|
break;
|
|
40171
40163
|
}
|
|
40172
40164
|
if (!domRange.isEmpty) {
|
|
40173
|
-
_context.next =
|
|
40165
|
+
_context.next = 125;
|
|
40174
40166
|
break;
|
|
40175
40167
|
}
|
|
40176
40168
|
if (!(node instanceof _treeNode_TextNode__WEBPACK_IMPORTED_MODULE_26__/* .TextNode */ .R)) {
|
|
@@ -40226,7 +40218,7 @@ var DocController = /*#__PURE__*/function () {
|
|
|
40226
40218
|
aRange = new _DomRange__WEBPACK_IMPORTED_MODULE_30__/* .DomRange */ .a(this._hoEditorFactoryID, startPath, topath).normalize();
|
|
40227
40219
|
this.deleteRange(aRange, true);
|
|
40228
40220
|
hoEditorFactory.docTree.curDomRange = new _DomRange__WEBPACK_IMPORTED_MODULE_30__/* .DomRange */ .a(this._hoEditorFactoryID, topath, topath);
|
|
40229
|
-
_context.next =
|
|
40221
|
+
_context.next = 125;
|
|
40230
40222
|
break;
|
|
40231
40223
|
case 36:
|
|
40232
40224
|
if (!(node instanceof _treeNode_MarkNode__WEBPACK_IMPORTED_MODULE_46__/* .MarkNode */ .j)) {
|
|
@@ -40278,7 +40270,7 @@ var DocController = /*#__PURE__*/function () {
|
|
|
40278
40270
|
// )
|
|
40279
40271
|
// );
|
|
40280
40272
|
// hoEditorFactory.undoService.commit();
|
|
40281
|
-
_context.next =
|
|
40273
|
+
_context.next = 125;
|
|
40282
40274
|
break;
|
|
40283
40275
|
case 56:
|
|
40284
40276
|
if (!(node instanceof _treeNode_ParagraphNode__WEBPACK_IMPORTED_MODULE_29__/* .ParagraphNode */ .C)) {
|
|
@@ -40365,7 +40357,7 @@ var DocController = /*#__PURE__*/function () {
|
|
|
40365
40357
|
return _context.abrupt("return");
|
|
40366
40358
|
case 98:
|
|
40367
40359
|
if (!(node instanceof _treeNode_SignNode__WEBPACK_IMPORTED_MODULE_83__/* .SignNode */ .N)) {
|
|
40368
|
-
_context.next =
|
|
40360
|
+
_context.next = 120;
|
|
40369
40361
|
break;
|
|
40370
40362
|
}
|
|
40371
40363
|
preNode = node.previousLeaf();
|
|
@@ -40383,7 +40375,7 @@ var DocController = /*#__PURE__*/function () {
|
|
|
40383
40375
|
return _context.abrupt("return");
|
|
40384
40376
|
case 109:
|
|
40385
40377
|
if (!(preNode instanceof _treeNode_SignNode__WEBPACK_IMPORTED_MODULE_83__/* .SignNode */ .N)) {
|
|
40386
|
-
_context.next =
|
|
40378
|
+
_context.next = 120;
|
|
40387
40379
|
break;
|
|
40388
40380
|
}
|
|
40389
40381
|
spath = "";
|
|
@@ -40398,13 +40390,14 @@ var DocController = /*#__PURE__*/function () {
|
|
|
40398
40390
|
//node.isTemplate,
|
|
40399
40391
|
node.styleIndex, preNode.connectMode, preNode.isFront, preNode.allowEditSignTime, preNode.fingerPrintSrc, preNode.fingerPosition, preNode.attribute, preNode.connectChar, preNode.otherProperties);
|
|
40400
40392
|
hoEditorFactory.undoService.begin();
|
|
40401
|
-
|
|
40402
|
-
|
|
40393
|
+
nodesDeleteUndoUnit = new _undoRedo_NodesDeleteUndoUnit__WEBPACK_IMPORTED_MODULE_35__/* .NodesDeleteUndoUnit */ .F(this._hoEditorFactoryID, spath, epath, true);
|
|
40394
|
+
hoEditorFactory.undoService.add(nodesDeleteUndoUnit);
|
|
40395
|
+
if (!nodesDeleteUndoUnit.isError && (node.number === 2 || node.number === 1 && node.isTemplate)) {
|
|
40403
40396
|
hoEditorFactory.undoService.add(new _undoRedo_NodeInsertUndoUnit__WEBPACK_IMPORTED_MODULE_24__/* .NodeInsertUndoUnit */ .R(this._hoEditorFactoryID, spath, newSignNode));
|
|
40404
40397
|
}
|
|
40405
40398
|
hoEditorFactory.undoService.commit();
|
|
40406
40399
|
return _context.abrupt("return");
|
|
40407
|
-
case
|
|
40400
|
+
case 120:
|
|
40408
40401
|
pNode = node.parentNode;
|
|
40409
40402
|
hoEditorFactory.undoService.begin();
|
|
40410
40403
|
hoEditorFactory.undoService.add(new _undoRedo_NodeDeleteUndoUnit__WEBPACK_IMPORTED_MODULE_36__/* .NodeDeleteUndoUnit */ .w(this._hoEditorFactoryID, node, startPath));
|
|
@@ -40412,7 +40405,7 @@ var DocController = /*#__PURE__*/function () {
|
|
|
40412
40405
|
if (pNode && pNode instanceof _treeNode_TextInputFieldNode__WEBPACK_IMPORTED_MODULE_45__/* .TextInputFieldNode */ .re && pNode.childNodes.length === 2) {
|
|
40413
40406
|
this.resetEmptyInputFieldNode(hoEditorFactory, pNode);
|
|
40414
40407
|
}
|
|
40415
|
-
case
|
|
40408
|
+
case 125:
|
|
40416
40409
|
case "end":
|
|
40417
40410
|
return _context.stop();
|
|
40418
40411
|
}
|
|
@@ -42077,6 +42070,7 @@ var DocController = /*#__PURE__*/function () {
|
|
|
42077
42070
|
var domRange = curDomRange.normalize();
|
|
42078
42071
|
var startPath = domRange.endPath;
|
|
42079
42072
|
var hoEditorFactory = _HOEditorFactorys__WEBPACK_IMPORTED_MODULE_76__/* .HOEditorFactorys.instance */ .b.instance().getFactory(this._hoEditorFactoryID);
|
|
42073
|
+
var oldIsTransToText = false;
|
|
42080
42074
|
if (operType === "update") {
|
|
42081
42075
|
var np = hoEditorFactory.docTree.findNodePositionByPath(startPath);
|
|
42082
42076
|
if (np) {
|
|
@@ -42084,6 +42078,7 @@ var DocController = /*#__PURE__*/function () {
|
|
|
42084
42078
|
if (node instanceof _treeNode_RadioAndCheckBoxNode__WEBPACK_IMPORTED_MODULE_52__/* .RadioAndCheckBoxNode */ .Yh) {
|
|
42085
42079
|
hoEditorFactory.undoService.begin();
|
|
42086
42080
|
hoEditorFactory.undoService.add(new _undoRedo_NodeDeleteUndoUnit__WEBPACK_IMPORTED_MODULE_36__/* .NodeDeleteUndoUnit */ .w(this._hoEditorFactoryID, node, startPath, "update"));
|
|
42081
|
+
oldIsTransToText = node.isTransToText;
|
|
42087
42082
|
//hoEditorFactory.undoService.commit();
|
|
42088
42083
|
//startPath = hoEditorFactory.docTree.curDomRange.startPath;
|
|
42089
42084
|
startPath = hoEditorFactory.docTree.getNodeLastPath(node.previousLeaf());
|
|
@@ -42105,7 +42100,7 @@ var DocController = /*#__PURE__*/function () {
|
|
|
42105
42100
|
}
|
|
42106
42101
|
hoEditorFactory.undoService.add(new _undoRedo_NodeInsertUndoUnit__WEBPACK_IMPORTED_MODULE_24__/* .NodeInsertUndoUnit */ .R(this._hoEditorFactoryID, startPath, radioAndCheckBoxNode));
|
|
42107
42102
|
hoEditorFactory.undoService.commit();
|
|
42108
|
-
if (isTransToText && operType === "add") {
|
|
42103
|
+
if (isTransToText && (operType === "add" || operType === "update" && !oldIsTransToText)) {
|
|
42109
42104
|
var path = radioAndCheckBoxNode.getNodePath();
|
|
42110
42105
|
var textNode = new _treeNode_TextNode__WEBPACK_IMPORTED_MODULE_26__/* .TextNode */ .R(this._hoEditorFactoryID, domRange.npStart.roots, parentNode, _treeNode_BaseNode__WEBPACK_IMPORTED_MODULE_23__/* .NodeType.ntText */ .Jq.ntText, text, styleIndex);
|
|
42111
42106
|
hoEditorFactory.undoService.begin();
|
|
@@ -42988,7 +42983,7 @@ var DocController = /*#__PURE__*/function () {
|
|
|
42988
42983
|
*/
|
|
42989
42984
|
}, {
|
|
42990
42985
|
key: "insertSeparateChar",
|
|
42991
|
-
value: function insertSeparateChar(range, width, color) {
|
|
42986
|
+
value: function insertSeparateChar(range, width, color, line) {
|
|
42992
42987
|
var hoeditorfactory = _HOEditorFactorys__WEBPACK_IMPORTED_MODULE_76__/* .HOEditorFactorys.instance */ .b.instance().getFactory(this._hoEditorFactoryID);
|
|
42993
42988
|
var np = range.normalize().npStart;
|
|
42994
42989
|
if (np && np.node) {
|
|
@@ -43011,7 +43006,7 @@ var DocController = /*#__PURE__*/function () {
|
|
|
43011
43006
|
}
|
|
43012
43007
|
hoeditorfactory.undoService.begin();
|
|
43013
43008
|
var newParaPath = paraNode.getNodePath();
|
|
43014
|
-
var separateCharNode = new _treeNode_SeparateCharNode__WEBPACK_IMPORTED_MODULE_80__/* .SeparateCharNode */ .O(this._hoEditorFactoryID, np.roots, parentNode, _treeNode_BaseNode__WEBPACK_IMPORTED_MODULE_23__/* .NodeType.ntSeparateChar */ .Jq.ntSeparateChar, width, color);
|
|
43009
|
+
var separateCharNode = new _treeNode_SeparateCharNode__WEBPACK_IMPORTED_MODULE_80__/* .SeparateCharNode */ .O(this._hoEditorFactoryID, np.roots, parentNode, _treeNode_BaseNode__WEBPACK_IMPORTED_MODULE_23__/* .NodeType.ntSeparateChar */ .Jq.ntSeparateChar, width, color, line);
|
|
43015
43010
|
hoeditorfactory.undoService.add(new _undoRedo_NodeInsertUndoUnit__WEBPACK_IMPORTED_MODULE_24__/* .NodeInsertUndoUnit */ .R(this._hoEditorFactoryID, newParaPath, separateCharNode));
|
|
43016
43011
|
hoeditorfactory.undoService.commit();
|
|
43017
43012
|
}
|
|
@@ -60501,22 +60496,24 @@ var RectNode = /*#__PURE__*/function (_BaseCombineNode) {
|
|
|
60501
60496
|
/*
|
|
60502
60497
|
* @Author: your name
|
|
60503
60498
|
* @Date: 2021-08-10 11:37:56
|
|
60504
|
-
* @LastEditTime:
|
|
60505
|
-
* @LastEditors:
|
|
60499
|
+
* @LastEditTime: 2023-08-08 17:09:26
|
|
60500
|
+
* @LastEditors: liyanan 2441631434@qq.com
|
|
60506
60501
|
* @Description: In User Settings Edit
|
|
60507
60502
|
* @FilePath: \hoeditor-web\src\editor\dom\treeNode\SeparateChar.ts
|
|
60508
60503
|
*/
|
|
60509
60504
|
var SeparateCharNode = /*#__PURE__*/function (_BaseNode) {
|
|
60510
60505
|
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_inherits_js__WEBPACK_IMPORTED_MODULE_2__/* ["default"] */ .Z)(SeparateCharNode, _BaseNode);
|
|
60511
60506
|
var _super = (0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_createSuper_js__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z)(SeparateCharNode);
|
|
60512
|
-
function SeparateCharNode(hoEditorFactoryID, rootNodes, pNode, nodeType, width, color) {
|
|
60507
|
+
function SeparateCharNode(hoEditorFactoryID, rootNodes, pNode, nodeType, width, color, line) {
|
|
60513
60508
|
var _this;
|
|
60514
60509
|
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_classCallCheck_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z)(this, SeparateCharNode);
|
|
60515
60510
|
_this = _super.call(this, hoEditorFactoryID, rootNodes, pNode, nodeType);
|
|
60516
60511
|
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_9__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_1__/* ["default"] */ .Z)(_this), "_width", 0);
|
|
60517
60512
|
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_9__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_1__/* ["default"] */ .Z)(_this), "_color", "#000000");
|
|
60513
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_9__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_1__/* ["default"] */ .Z)(_this), "_line", '0');
|
|
60518
60514
|
_this._width = width;
|
|
60519
60515
|
_this._color = color;
|
|
60516
|
+
_this._line = line;
|
|
60520
60517
|
_this.node2DrawNodeRange();
|
|
60521
60518
|
return _this;
|
|
60522
60519
|
}
|
|
@@ -60531,6 +60528,7 @@ var SeparateCharNode = /*#__PURE__*/function (_BaseNode) {
|
|
|
60531
60528
|
get:
|
|
60532
60529
|
//宽度
|
|
60533
60530
|
//颜色
|
|
60531
|
+
//0实线 1虚线
|
|
60534
60532
|
function get() {
|
|
60535
60533
|
return this._width;
|
|
60536
60534
|
},
|
|
@@ -60549,6 +60547,16 @@ var SeparateCharNode = /*#__PURE__*/function (_BaseNode) {
|
|
|
60549
60547
|
this._color = val;
|
|
60550
60548
|
}
|
|
60551
60549
|
}
|
|
60550
|
+
}, {
|
|
60551
|
+
key: "line",
|
|
60552
|
+
get: function get() {
|
|
60553
|
+
return this._line;
|
|
60554
|
+
},
|
|
60555
|
+
set: function set(val) {
|
|
60556
|
+
if (val !== this._line) {
|
|
60557
|
+
this._line = val;
|
|
60558
|
+
}
|
|
60559
|
+
}
|
|
60552
60560
|
}, {
|
|
60553
60561
|
key: "node2DrawNodeRange",
|
|
60554
60562
|
value: function node2DrawNodeRange() {
|
|
@@ -60561,7 +60569,7 @@ var SeparateCharNode = /*#__PURE__*/function (_BaseNode) {
|
|
|
60561
60569
|
} else {
|
|
60562
60570
|
cbStyle = hoEditorFactory.docTree.styles[0].combineStyle;
|
|
60563
60571
|
}
|
|
60564
|
-
var dNode = new _editor_draw_drawNode_DrawMedicalExpression__WEBPACK_IMPORTED_MODULE_6__/* .DrawMedicalExpression */ .T(this._hoEditorFactoryID, this._rootPath, this, 0, "5", [this.color], cbStyle, this.width, hoEditorFactory.pageProperty.widthPixes - hoEditorFactory.pageProperty.leftMarginPixes - hoEditorFactory.pageProperty.rightMarginPixes);
|
|
60572
|
+
var dNode = new _editor_draw_drawNode_DrawMedicalExpression__WEBPACK_IMPORTED_MODULE_6__/* .DrawMedicalExpression */ .T(this._hoEditorFactoryID, this._rootPath, this, 0, "5", [this.color], cbStyle, this.width, hoEditorFactory.pageProperty.widthPixes - hoEditorFactory.pageProperty.leftMarginPixes - hoEditorFactory.pageProperty.rightMarginPixes, this.line);
|
|
60565
60573
|
this._drawNodes.push(dNode);
|
|
60566
60574
|
}
|
|
60567
60575
|
}, {
|
|
@@ -60601,7 +60609,8 @@ var SeparateCharNode = /*#__PURE__*/function (_BaseNode) {
|
|
|
60601
60609
|
var retObj = {
|
|
60602
60610
|
nodeType: _BaseNode__WEBPACK_IMPORTED_MODULE_8__/* .NodeType */ .Jq[this.nodeType],
|
|
60603
60611
|
width: this.width,
|
|
60604
|
-
color: this.color
|
|
60612
|
+
color: this.color,
|
|
60613
|
+
line: this.line
|
|
60605
60614
|
};
|
|
60606
60615
|
if (isCopy) {
|
|
60607
60616
|
return retObj;
|
|
@@ -60618,7 +60627,7 @@ var SeparateCharNode = /*#__PURE__*/function (_BaseNode) {
|
|
|
60618
60627
|
}], [{
|
|
60619
60628
|
key: "json2Node",
|
|
60620
60629
|
value: function json2Node(hoEditorFactoryID, json, rootNodes, pNode) {
|
|
60621
|
-
return new SeparateCharNode(hoEditorFactoryID, rootNodes, pNode ? pNode : null, _BaseNode__WEBPACK_IMPORTED_MODULE_8__/* .NodeType.ntSeparateChar */ .Jq.ntSeparateChar, Number(json.width), json.color);
|
|
60630
|
+
return new SeparateCharNode(hoEditorFactoryID, rootNodes, pNode ? pNode : null, _BaseNode__WEBPACK_IMPORTED_MODULE_8__/* .NodeType.ntSeparateChar */ .Jq.ntSeparateChar, Number(json.width), json.color, json.line ? json.line : '0');
|
|
60622
60631
|
}
|
|
60623
60632
|
}]);
|
|
60624
60633
|
return SeparateCharNode;
|
|
@@ -73965,7 +73974,7 @@ var DrawMarkNode = /*#__PURE__*/function (_DrawCombineNode) {
|
|
|
73965
73974
|
/*
|
|
73966
73975
|
* @Author: your name
|
|
73967
73976
|
* @Date: 2020-10-29 15:22:36
|
|
73968
|
-
* @LastEditTime: 2023-
|
|
73977
|
+
* @LastEditTime: 2023-08-08 17:34:32
|
|
73969
73978
|
* @LastEditors: liyanan 2441631434@qq.com
|
|
73970
73979
|
* @Description: In User Settings Edit
|
|
73971
73980
|
* @FilePath: \hoeditor-web\src\editor\draw\drawNode\DrawMedicalExpression.ts
|
|
@@ -73975,7 +73984,7 @@ var DrawMarkNode = /*#__PURE__*/function (_DrawCombineNode) {
|
|
|
73975
73984
|
var DrawMedicalExpression = /*#__PURE__*/function (_DrawCombineNode) {
|
|
73976
73985
|
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_inherits_js__WEBPACK_IMPORTED_MODULE_2__/* ["default"] */ .Z)(DrawMedicalExpression, _DrawCombineNode);
|
|
73977
73986
|
var _super = (0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_createSuper_js__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z)(DrawMedicalExpression);
|
|
73978
|
-
function DrawMedicalExpression(hoeditfactoryID, rootPath, node, index, expressionStyle, arrValues, textStyle, dHeight, dWidth) {
|
|
73987
|
+
function DrawMedicalExpression(hoeditfactoryID, rootPath, node, index, expressionStyle, arrValues, textStyle, dHeight, dWidth, line) {
|
|
73979
73988
|
var _this;
|
|
73980
73989
|
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_classCallCheck_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z)(this, DrawMedicalExpression);
|
|
73981
73990
|
_this = _super.call(this, hoeditfactoryID, rootPath, node, index);
|
|
@@ -73984,6 +73993,7 @@ var DrawMedicalExpression = /*#__PURE__*/function (_DrawCombineNode) {
|
|
|
73984
73993
|
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_7__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_1__/* ["default"] */ .Z)(_this), "_textStyle", void 0);
|
|
73985
73994
|
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_7__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_1__/* ["default"] */ .Z)(_this), "_w", 0);
|
|
73986
73995
|
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_7__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_1__/* ["default"] */ .Z)(_this), "_h", 0);
|
|
73996
|
+
(0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_7__/* ["default"] */ .Z)((0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_1__/* ["default"] */ .Z)(_this), "_line", void 0);
|
|
73987
73997
|
_this._expressionStyle = expressionStyle;
|
|
73988
73998
|
_this._arrValues = arrValues;
|
|
73989
73999
|
_this.dWidth = dWidth;
|
|
@@ -74005,6 +74015,9 @@ var DrawMedicalExpression = /*#__PURE__*/function (_DrawCombineNode) {
|
|
|
74005
74015
|
}
|
|
74006
74016
|
_this.dHeight = dHeight;
|
|
74007
74017
|
_this._textStyle = textStyle;
|
|
74018
|
+
if (expressionStyle === "5") {
|
|
74019
|
+
_this._line = line ? line : '0';
|
|
74020
|
+
}
|
|
74008
74021
|
_this.drawMedicalExpression(expressionStyle);
|
|
74009
74022
|
return _this;
|
|
74010
74023
|
}
|
|
@@ -74117,7 +74130,7 @@ var DrawMedicalExpression = /*#__PURE__*/function (_DrawCombineNode) {
|
|
|
74117
74130
|
menseDays.textBaseline = "alphabetic";
|
|
74118
74131
|
this.addChild(menseDays);
|
|
74119
74132
|
var lineX = new createjs.Shape();
|
|
74120
|
-
lineX.graphics.beginStroke(this._textStyle.color).moveTo(0, -this.dHeight / 2).lineTo(this.dWidth, -this.dHeight / 2);
|
|
74133
|
+
lineX.graphics.beginStroke(this._textStyle.color).moveTo(0, -this.dHeight / 2).lineTo(this.dWidth, -this.dHeight / 2).endStroke();
|
|
74121
74134
|
this.addChild(lineX);
|
|
74122
74135
|
var menoPauseAge = new createjs.Text(this._arrValues[3], this._textStyle.getStyleKey(), this._textStyle.color);
|
|
74123
74136
|
menoPauseAge.y = 0;
|
|
@@ -74132,7 +74145,7 @@ var DrawMedicalExpression = /*#__PURE__*/function (_DrawCombineNode) {
|
|
|
74132
74145
|
cycleDays.textBaseline = "alphabetic";
|
|
74133
74146
|
this.addChild(cycleDays);
|
|
74134
74147
|
var lineY = new createjs.Shape();
|
|
74135
|
-
lineY.graphics.beginStroke(this._textStyle.color).moveTo(this.dWidth / 2, -this.dHeight).lineTo(this.dWidth / 2, 0);
|
|
74148
|
+
lineY.graphics.beginStroke(this._textStyle.color).moveTo(this.dWidth / 2, -this.dHeight).lineTo(this.dWidth / 2, 0).endStroke();
|
|
74136
74149
|
this.addChild(lineY);
|
|
74137
74150
|
}
|
|
74138
74151
|
}, {
|
|
@@ -74163,10 +74176,10 @@ var DrawMedicalExpression = /*#__PURE__*/function (_DrawCombineNode) {
|
|
|
74163
74176
|
menoPauseAge.textBaseline = "alphabetic";
|
|
74164
74177
|
this.addChild(menoPauseAge);
|
|
74165
74178
|
var line1 = new createjs.Shape();
|
|
74166
|
-
line1.graphics.beginStroke(this._textStyle.color).moveTo(0, -this.dHeight - 2).lineTo(this.dWidth - 2, 2);
|
|
74179
|
+
line1.graphics.beginStroke(this._textStyle.color).moveTo(0, -this.dHeight - 2).lineTo(this.dWidth - 2, 2).endStroke();
|
|
74167
74180
|
this.addChild(line1);
|
|
74168
74181
|
var line2 = new createjs.Shape();
|
|
74169
|
-
line2.graphics.beginStroke(this._textStyle.color).moveTo(0, 2).lineTo(this.dWidth - 2, -this.dHeight - 2);
|
|
74182
|
+
line2.graphics.beginStroke(this._textStyle.color).moveTo(0, 2).lineTo(this.dWidth - 2, -this.dHeight - 2).endStroke();
|
|
74170
74183
|
this.addChild(line2);
|
|
74171
74184
|
}
|
|
74172
74185
|
}, {
|
|
@@ -74185,10 +74198,10 @@ var DrawMedicalExpression = /*#__PURE__*/function (_DrawCombineNode) {
|
|
|
74185
74198
|
menseDays.textBaseline = "alphabetic";
|
|
74186
74199
|
this.addChild(menseDays);
|
|
74187
74200
|
var line1 = new createjs.Shape();
|
|
74188
|
-
line1.graphics.beginStroke(this._textStyle.color).moveTo(menarcheAge.getMeasuredWidth() + 4, -this.dHeight / 2).lineTo(this.dWidth, -this.dHeight / 2);
|
|
74201
|
+
line1.graphics.beginStroke(this._textStyle.color).moveTo(menarcheAge.getMeasuredWidth() + 4, -this.dHeight / 2).lineTo(this.dWidth, -this.dHeight / 2).endStroke();
|
|
74189
74202
|
this.addChild(line1);
|
|
74190
74203
|
var line2 = new createjs.Shape();
|
|
74191
|
-
line2.graphics.beginStroke(this._textStyle.color).moveTo(menarcheAge.getMeasuredWidth(), menarcheAge.y + 3).lineTo(menarcheAge.getMeasuredWidth() + 4, menseDays.y - 4);
|
|
74204
|
+
line2.graphics.beginStroke(this._textStyle.color).moveTo(menarcheAge.getMeasuredWidth(), menarcheAge.y + 3).lineTo(menarcheAge.getMeasuredWidth() + 4, menseDays.y - 4).endStroke();
|
|
74192
74205
|
this.addChild(line2);
|
|
74193
74206
|
var cycleDays = new createjs.Text(this._arrValues[1], this._textStyle.getStyleKey(), this._textStyle.color);
|
|
74194
74207
|
cycleDays.y = 0;
|
|
@@ -74344,13 +74357,13 @@ var DrawMedicalExpression = /*#__PURE__*/function (_DrawCombineNode) {
|
|
|
74344
74357
|
value6.textBaseline = "alphabetic";
|
|
74345
74358
|
this.addChild(value6);
|
|
74346
74359
|
var line2 = new createjs.Shape();
|
|
74347
|
-
line2.graphics.beginStroke(this._textStyle.color).moveTo(value3.x + value3.getMeasuredWidth(), -this._dHeight / 2).lineTo(value4.x, -this._dHeight / 2);
|
|
74360
|
+
line2.graphics.beginStroke(this._textStyle.color).moveTo(value3.x + value3.getMeasuredWidth(), -this._dHeight / 2).lineTo(value4.x, -this._dHeight / 2).endStroke();
|
|
74348
74361
|
this.addChild(line2);
|
|
74349
74362
|
var line3 = new createjs.Shape();
|
|
74350
|
-
line3.graphics.beginStroke(this._textStyle.color).moveTo(this.dWidth - 5, -this._dHeight / 2).lineTo(this.dWidth, -this._dHeight / 2);
|
|
74363
|
+
line3.graphics.beginStroke(this._textStyle.color).moveTo(this.dWidth - 5, -this._dHeight / 2).lineTo(this.dWidth, -this._dHeight / 2).endStroke();
|
|
74351
74364
|
this.addChild(line3);
|
|
74352
74365
|
var line4 = new createjs.Shape();
|
|
74353
|
-
line4.graphics.beginStroke(this._textStyle.color).moveTo(this.dWidth / 2, -this._dHeight).lineTo(this.dWidth / 2, 0);
|
|
74366
|
+
line4.graphics.beginStroke(this._textStyle.color).moveTo(this.dWidth / 2, -this._dHeight).lineTo(this.dWidth / 2, 0).endStroke();
|
|
74354
74367
|
this.addChild(line4);
|
|
74355
74368
|
}
|
|
74356
74369
|
}, {
|
|
@@ -74401,8 +74414,8 @@ var DrawMedicalExpression = /*#__PURE__*/function (_DrawCombineNode) {
|
|
|
74401
74414
|
if (this.dHeight < maxHeight) {
|
|
74402
74415
|
this.dHeight = maxHeight;
|
|
74403
74416
|
}
|
|
74404
|
-
lineX.graphics.beginStroke(this._textStyle.color).moveTo(0, -this._dHeight / 2).lineTo(this.dWidth, -this._dHeight / 2);
|
|
74405
|
-
lineY.graphics.beginStroke(this._textStyle.color).moveTo(leftMaxWidth + 6 - 0.5, -this._dHeight).lineTo(leftMaxWidth + 6 - 0.5, 0);
|
|
74417
|
+
lineX.graphics.beginStroke(this._textStyle.color).moveTo(0, -this._dHeight / 2).lineTo(this.dWidth, -this._dHeight / 2).endStroke();
|
|
74418
|
+
lineY.graphics.beginStroke(this._textStyle.color).moveTo(leftMaxWidth + 6 - 0.5, -this._dHeight).lineTo(leftMaxWidth + 6 - 0.5, 0).endStroke();
|
|
74406
74419
|
topLeft.y = -this.dHeight / 2 - topLeft.getMeasuredHeight() / 2;
|
|
74407
74420
|
topLeft.x = 4;
|
|
74408
74421
|
topLeft.textAlign = "left";
|
|
@@ -74530,10 +74543,10 @@ var DrawMedicalExpression = /*#__PURE__*/function (_DrawCombineNode) {
|
|
|
74530
74543
|
}
|
|
74531
74544
|
}
|
|
74532
74545
|
var lineX = new createjs.Shape();
|
|
74533
|
-
lineX.graphics.beginStroke(this._textStyle.color).moveTo(0, -this._dHeight / 2).lineTo(this.dWidth, -this._dHeight / 2);
|
|
74546
|
+
lineX.graphics.beginStroke(this._textStyle.color).moveTo(0, -this._dHeight / 2).lineTo(this.dWidth, -this._dHeight / 2).endStroke();
|
|
74534
74547
|
this.addChild(lineX);
|
|
74535
74548
|
var lineY = new createjs.Shape();
|
|
74536
|
-
lineY.graphics.beginStroke(this._textStyle.color).moveTo(this.dWidth / 2, -this._dHeight).lineTo(this.dWidth / 2, 0);
|
|
74549
|
+
lineY.graphics.beginStroke(this._textStyle.color).moveTo(this.dWidth / 2, -this._dHeight).lineTo(this.dWidth / 2, 0).endStroke();
|
|
74537
74550
|
this.addChild(lineY);
|
|
74538
74551
|
}
|
|
74539
74552
|
}, {
|
|
@@ -74541,7 +74554,11 @@ var DrawMedicalExpression = /*#__PURE__*/function (_DrawCombineNode) {
|
|
|
74541
74554
|
value: function drawSeparateChar() {
|
|
74542
74555
|
var shape = new createjs.Shape();
|
|
74543
74556
|
shape.graphics.clear();
|
|
74544
|
-
|
|
74557
|
+
if (this._line === '0') {
|
|
74558
|
+
shape.graphics.beginFill(this.arrValues[0]).drawRect(0, 0, this.dWidth, this.dHeight).endFill();
|
|
74559
|
+
} else {
|
|
74560
|
+
shape.graphics.beginStroke(this.arrValues[0]).setStrokeDash([2, 2]).moveTo(0, 0).lineTo(this.dWidth, this.dHeight).endStroke();
|
|
74561
|
+
}
|
|
74545
74562
|
this.addChild(shape);
|
|
74546
74563
|
}
|
|
74547
74564
|
}]);
|
|
@@ -85143,7 +85160,7 @@ var DrawTree = /*#__PURE__*/function () {
|
|
|
85143
85160
|
var hoEditorFactory = HOEditorFactorys/* HOEditorFactorys.instance */.b.instance().getFactory(this._hoEditorFactoryID);
|
|
85144
85161
|
if (e.node) {
|
|
85145
85162
|
if (e.node instanceof RadioAndCheckBoxNode/* RadioAndCheckBoxNode */.Yh) {
|
|
85146
|
-
if (hoEditorFactory.drawTree.paintStatus === PaintState.psReview) {
|
|
85163
|
+
if (hoEditorFactory.drawTree.paintStatus === PaintState.psReview || hoEditorFactory.drawTree.paintStatus === PaintState.psReadOnly || hoEditorFactory.drawTree.paintStatus === PaintState.psPreview || hoEditorFactory.drawTree.paintStatus === PaintState.psPrint) {
|
|
85147
85164
|
return true;
|
|
85148
85165
|
}
|
|
85149
85166
|
var aNode = e.node;
|
|
@@ -200517,7 +200534,7 @@ var map = {
|
|
|
200517
200534
|
"./customAttributes/CustomAttributes.vue": 78869,
|
|
200518
200535
|
"./dataSource/DataSource.vue": 9238,
|
|
200519
200536
|
"./dateDialog/DateDialog.vue": 49145,
|
|
200520
|
-
"./delimiter/Delimiter.vue":
|
|
200537
|
+
"./delimiter/Delimiter.vue": 215,
|
|
200521
200538
|
"./expressionForm/ExpressionForm.vue": 44603,
|
|
200522
200539
|
"./findReplace/FindReplace.vue": 25918,
|
|
200523
200540
|
"./gestation/Gestation.vue": 6251,
|
|
@@ -200537,7 +200554,7 @@ var map = {
|
|
|
200537
200554
|
"./selectDialog/SelectDialog.vue": 59075,
|
|
200538
200555
|
"./sign/Sign.vue": 28715,
|
|
200539
200556
|
"./table/TableCellPoper.vue": 61917,
|
|
200540
|
-
"./table/TableCellProperty.vue":
|
|
200557
|
+
"./table/TableCellProperty.vue": 69086,
|
|
200541
200558
|
"./table/TableColProperty.vue": 17857,
|
|
200542
200559
|
"./table/TableForm.vue": 19064,
|
|
200543
200560
|
"./table/TableFormTree.vue": 39703,
|
|
@@ -239944,7 +239961,7 @@ var TextNode = __webpack_require__(27198);
|
|
|
239944
239961
|
// EXTERNAL MODULE: ./src/editor/dom/treeNode/ParagraphNode.ts
|
|
239945
239962
|
var ParagraphNode = __webpack_require__(67945);
|
|
239946
239963
|
;// CONCATENATED MODULE: ./src/components/version.ts
|
|
239947
|
-
/* harmony default export */ var version = ('3.0.
|
|
239964
|
+
/* harmony default export */ var version = ('3.0.101');
|
|
239948
239965
|
// EXTERNAL MODULE: ./src/components/controls/poperTipText/PoperTipText.vue + 5 modules
|
|
239949
239966
|
var PoperTipText = __webpack_require__(36081);
|
|
239950
239967
|
;// CONCATENATED MODULE: ./src/components/controls/poperTipText/index.ts
|
|
@@ -246759,8 +246776,8 @@ var commonParamList = new Map();
|
|
|
246759
246776
|
|
|
246760
246777
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.from.js
|
|
246761
246778
|
var es_array_from = __webpack_require__(91038);
|
|
246762
|
-
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/common/history/index.vue?vue&type=template&id=
|
|
246763
|
-
var
|
|
246779
|
+
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/common/history/index.vue?vue&type=template&id=73c58cef&
|
|
246780
|
+
var historyvue_type_template_id_73c58cef_render = function render() {
|
|
246764
246781
|
var _vm = this,
|
|
246765
246782
|
_c = _vm._self._c;
|
|
246766
246783
|
return _c('div', {
|
|
@@ -246772,11 +246789,11 @@ var historyvue_type_template_id_3f7f61ba_render = function render() {
|
|
|
246772
246789
|
on: {
|
|
246773
246790
|
"click": _vm.selectComment
|
|
246774
246791
|
}
|
|
246775
|
-
}, [_c('section', [_c('header'), _c('section', {
|
|
246792
|
+
}, [_c('section', [_c('header', [_c('span', [_vm._v(_vm._s(_vm.userName))]), _vm._v(" "), _c('span', [_vm._v(_vm._s(_vm.date))])]), _c('section', {
|
|
246776
246793
|
staticClass: "comemnt-content"
|
|
246777
|
-
}, [_vm._v(_vm._s(_vm.text))])])]);
|
|
246794
|
+
}, [_vm._v("修改前:" + _vm._s(_vm.text))])])]);
|
|
246778
246795
|
};
|
|
246779
|
-
var
|
|
246796
|
+
var historyvue_type_template_id_73c58cef_staticRenderFns = [];
|
|
246780
246797
|
|
|
246781
246798
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/common/history/index.vue?vue&type=script&lang=js&
|
|
246782
246799
|
|
|
@@ -246792,6 +246809,8 @@ var historyvue_type_template_id_3f7f61ba_staticRenderFns = [];
|
|
|
246792
246809
|
endNodeY: 0,
|
|
246793
246810
|
lineHeight: 0,
|
|
246794
246811
|
text: '',
|
|
246812
|
+
userName: '',
|
|
246813
|
+
date: '',
|
|
246795
246814
|
pageIndex: 0,
|
|
246796
246815
|
openCommentModal: null,
|
|
246797
246816
|
selectedColor: '#aaa'
|
|
@@ -246869,10 +246888,10 @@ var historyvue_type_template_id_3f7f61ba_staticRenderFns = [];
|
|
|
246869
246888
|
});
|
|
246870
246889
|
;// CONCATENATED MODULE: ./src/components/common/history/index.vue?vue&type=script&lang=js&
|
|
246871
246890
|
/* harmony default export */ var common_historyvue_type_script_lang_js_ = (historyvue_type_script_lang_js_);
|
|
246872
|
-
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/common/history/index.vue?vue&type=style&index=0&id=
|
|
246891
|
+
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/common/history/index.vue?vue&type=style&index=0&id=73c58cef&prod&lang=scss&
|
|
246873
246892
|
// extracted by mini-css-extract-plugin
|
|
246874
246893
|
|
|
246875
|
-
;// CONCATENATED MODULE: ./src/components/common/history/index.vue?vue&type=style&index=0&id=
|
|
246894
|
+
;// CONCATENATED MODULE: ./src/components/common/history/index.vue?vue&type=style&index=0&id=73c58cef&prod&lang=scss&
|
|
246876
246895
|
|
|
246877
246896
|
;// CONCATENATED MODULE: ./src/components/common/history/index.vue
|
|
246878
246897
|
|
|
@@ -246885,8 +246904,8 @@ var historyvue_type_template_id_3f7f61ba_staticRenderFns = [];
|
|
|
246885
246904
|
|
|
246886
246905
|
var history_component = (0,componentNormalizer/* default */.Z)(
|
|
246887
246906
|
common_historyvue_type_script_lang_js_,
|
|
246888
|
-
|
|
246889
|
-
|
|
246907
|
+
historyvue_type_template_id_73c58cef_render,
|
|
246908
|
+
historyvue_type_template_id_73c58cef_staticRenderFns,
|
|
246890
246909
|
false,
|
|
246891
246910
|
null,
|
|
246892
246911
|
null,
|
|
@@ -246923,7 +246942,6 @@ var createHistoryInstance = function createHistoryInstance(options) {
|
|
|
246923
246942
|
};
|
|
246924
246943
|
var hoCreateHistory = {
|
|
246925
246944
|
open: function open(options) {
|
|
246926
|
-
this.clear();
|
|
246927
246945
|
return createHistoryInstance(options);
|
|
246928
246946
|
},
|
|
246929
246947
|
clearLine: function clearLine() {
|
|
@@ -251120,13 +251138,14 @@ var VueController = /*#__PURE__*/function () {
|
|
|
251120
251138
|
spath = hoEditorFactory.docTree.getNodeLastPath(preNode);
|
|
251121
251139
|
}
|
|
251122
251140
|
//const spath = hoEditorFactory.docTree.getNodeLastPath(preNode as BaseNode);
|
|
251123
|
-
|
|
251141
|
+
//const epath = hoEditorFactory.docTree.getNodeLastPath(node);
|
|
251124
251142
|
var newSignNode = new SignNode/* SignNode */.N(this._hoEditorFactoryID, preNode.rootNodes, preNode.parentNode, BaseNode/* NodeType.ntSign */.Jq.ntSign, 1, preNode.type, preNode.name === '' ? '签名' : preNode.name, preNode.signType, preNode.signFormat, preNode.signor, preNode.signTime, preNode.signTimeFormat, preNode.imgSrc, preNode.imgWidth, preNode.imgHeight, preNode.customProperty, preNode.isTemplate ? preNode.isTemplate : node.isTemplate,
|
|
251125
251143
|
//node.isTemplate,
|
|
251126
251144
|
node.styleIndex, preNode.connectMode, preNode.isFront, preNode.allowEditSignTime, preNode.fingerPrintSrc, preNode.fingerPosition, preNode.attribute, preNode.connectChar, preNode.otherProperties);
|
|
251127
251145
|
hoEditorFactory.undoService.begin();
|
|
251128
|
-
|
|
251129
|
-
|
|
251146
|
+
var nodesDeleteUndoUnit = new NodesDeleteUndoUnit/* NodesDeleteUndoUnit */.F(this._hoEditorFactoryID, spath, ePath, true);
|
|
251147
|
+
hoEditorFactory.undoService.add(nodesDeleteUndoUnit);
|
|
251148
|
+
if (!nodesDeleteUndoUnit.isError && (node.number === 2 || node.number === 1 && node.isTemplate)) {
|
|
251130
251149
|
hoEditorFactory.undoService.add(new NodeInsertUndoUnit/* NodeInsertUndoUnit */.R(this._hoEditorFactoryID, spath, newSignNode));
|
|
251131
251150
|
}
|
|
251132
251151
|
hoEditorFactory.undoService.commit();
|
|
@@ -251149,7 +251168,7 @@ var VueController = /*#__PURE__*/function () {
|
|
|
251149
251168
|
*/
|
|
251150
251169
|
}, {
|
|
251151
251170
|
key: "insertSeparateChar",
|
|
251152
|
-
value: function insertSeparateChar(width, color) {
|
|
251171
|
+
value: function insertSeparateChar(width, color, line) {
|
|
251153
251172
|
var hoEditorFactory = HOEditorFactorys/* HOEditorFactorys.instance */.b.instance().getFactory(this._hoEditorFactoryID);
|
|
251154
251173
|
if (hoEditorFactory.editController.canIsEdit(hoEditorFactory)) {
|
|
251155
251174
|
var _curDomRange = hoEditorFactory.docTree.curDomRange; //获取当前选中区域
|
|
@@ -251157,7 +251176,7 @@ var VueController = /*#__PURE__*/function () {
|
|
|
251157
251176
|
var endPath = _curDomRange.normalize().endPath;
|
|
251158
251177
|
var changingEvent = new NodeChangingEvent/* NodeChangingEvent */.Q(DocTree/* DocAction.daInsert */.gk.daInsert, startPath, endPath, NodeChangingEvent/* OperType.insertSeparateChar */.y.insertSeparateChar);
|
|
251159
251178
|
if (hoEditorFactory.docTree.changing(changingEvent)) {
|
|
251160
|
-
hoEditorFactory.docController.insertSeparateChar(_curDomRange, width, color);
|
|
251179
|
+
hoEditorFactory.docController.insertSeparateChar(_curDomRange, width, color, line);
|
|
251161
251180
|
}
|
|
251162
251181
|
}
|
|
251163
251182
|
}
|
|
@@ -253064,11 +253083,15 @@ var VueController = /*#__PURE__*/function () {
|
|
|
253064
253083
|
if (element instanceof TextInputFieldNode/* TextInputFieldNode */.re) {
|
|
253065
253084
|
comment = new Comment/* Comment */.s(this._hoEditorFactoryID, commentID, oldValue, element.EndMarkNode);
|
|
253066
253085
|
comment.lineHeight = comment.lineHeight - 20;
|
|
253086
|
+
comment.userName = "".concat(object.afterByName, "(").concat(object.afterBy, ")");
|
|
253087
|
+
comment.date = object.createdDate;
|
|
253067
253088
|
comments.push(comment);
|
|
253068
253089
|
}
|
|
253069
253090
|
if (element instanceof DateTimeNode/* DateTimeNode */.Z || element instanceof DownListNode/* DownListNode */.yF) {
|
|
253070
253091
|
comment = new Comment/* Comment */.s(this._hoEditorFactoryID, commentID, oldValue, element);
|
|
253071
253092
|
comment.lineHeight = comment.lineHeight - 20;
|
|
253093
|
+
comment.userName = "".concat(object.afterByName, "(").concat(object.afterBy, ")");
|
|
253094
|
+
comment.date = object.createdDate;
|
|
253072
253095
|
comments.push(comment);
|
|
253073
253096
|
}
|
|
253074
253097
|
}
|
|
@@ -253103,6 +253126,7 @@ var VueController = /*#__PURE__*/function () {
|
|
|
253103
253126
|
return v;
|
|
253104
253127
|
});
|
|
253105
253128
|
var list = arr.flat();
|
|
253129
|
+
hoCreateHistory.clear();
|
|
253106
253130
|
list.forEach(function (comment) {
|
|
253107
253131
|
hoCreateHistory.open(comment);
|
|
253108
253132
|
});
|
|
@@ -255956,7 +255980,7 @@ var ElementController = /*#__PURE__*/function () {
|
|
|
255956
255980
|
/*
|
|
255957
255981
|
* @Author: your name
|
|
255958
255982
|
* @Date: 2021-07-31 10:10:30
|
|
255959
|
-
* @LastEditTime: 2023-
|
|
255983
|
+
* @LastEditTime: 2023-08-08 18:09:19
|
|
255960
255984
|
* @LastEditors: liyanan 2441631434@qq.com
|
|
255961
255985
|
* @Description: In User Settings Edit
|
|
255962
255986
|
* @FilePath: \hoeditor-web\src\editor\externalCall\NodeController.ts
|
|
@@ -256546,9 +256570,9 @@ var NodeController = /*#__PURE__*/function () {
|
|
|
256546
256570
|
*/
|
|
256547
256571
|
}, {
|
|
256548
256572
|
key: "insertSeparateChar",
|
|
256549
|
-
value: function insertSeparateChar(width, color) {
|
|
256573
|
+
value: function insertSeparateChar(width, color, line) {
|
|
256550
256574
|
var hoEditorFactory = HOEditorFactorys/* HOEditorFactorys.instance */.b.instance().getFactory(this._hoEditorFactoryID);
|
|
256551
|
-
hoEditorFactory.vueController.insertSeparateChar(width, color);
|
|
256575
|
+
hoEditorFactory.vueController.insertSeparateChar(width, color, line);
|
|
256552
256576
|
}
|
|
256553
256577
|
/**
|
|
256554
256578
|
* 插入孕周
|
|
@@ -259058,18 +259082,22 @@ var PrintController = /*#__PURE__*/function () {
|
|
|
259058
259082
|
});
|
|
259059
259083
|
}
|
|
259060
259084
|
} else if (xmlIndex > xmlList.length - 1) {
|
|
259061
|
-
hoEditorFactory.drawTree.paintStatus = beforePrintStatus;
|
|
259062
|
-
hoEditorFactory.vueController.openXml(xml);
|
|
259063
259085
|
if (params && params.mergePDF) {
|
|
259064
259086
|
(_this7$PDF2 = _this7.PDF) === null || _this7$PDF2 === void 0 ? void 0 : _this7$PDF2.deletePage(1);
|
|
259065
|
-
|
|
259066
|
-
|
|
259067
|
-
|
|
259087
|
+
setTimeout(function () {
|
|
259088
|
+
callback && callback({
|
|
259089
|
+
pdf: _this7.PDF.output('datauristring')
|
|
259090
|
+
});
|
|
259091
|
+
}, 0);
|
|
259068
259092
|
} else {
|
|
259069
|
-
|
|
259070
|
-
|
|
259071
|
-
|
|
259093
|
+
setTimeout(function () {
|
|
259094
|
+
callback && callback({
|
|
259095
|
+
pdfList: pdfList
|
|
259096
|
+
});
|
|
259097
|
+
}, 0);
|
|
259072
259098
|
}
|
|
259099
|
+
hoEditorFactory.drawTree.paintStatus = beforePrintStatus;
|
|
259100
|
+
hoEditorFactory.vueController.openXml(xml);
|
|
259073
259101
|
setTimeout(function () {
|
|
259074
259102
|
_this7.clearJsPDF();
|
|
259075
259103
|
}, 1000);
|
|
@@ -262310,8 +262338,8 @@ var HoDocs_component = (0,componentNormalizer/* default */.Z)(
|
|
|
262310
262338
|
)
|
|
262311
262339
|
|
|
262312
262340
|
/* harmony default export */ var HoDocs = (HoDocs_component.exports);
|
|
262313
|
-
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/toolbar/ToolBar.vue?vue&type=template&id=
|
|
262314
|
-
var
|
|
262341
|
+
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/toolbar/ToolBar.vue?vue&type=template&id=367b0d47&
|
|
262342
|
+
var ToolBarvue_type_template_id_367b0d47_render = function render() {
|
|
262315
262343
|
var _vm = this,
|
|
262316
262344
|
_c = _vm._self._c;
|
|
262317
262345
|
return _c('div', {
|
|
@@ -262475,7 +262503,7 @@ var ToolBarvue_type_template_id_529bb754_render = function render() {
|
|
|
262475
262503
|
}
|
|
262476
262504
|
}, [_c('div', {
|
|
262477
262505
|
staticClass: "ho-emr-tool-list"
|
|
262478
|
-
}, [_vm.defaultReviewJson.insertComment ? _c('div', {
|
|
262506
|
+
}, [_vm._t("insertReviewBefore"), _vm.defaultReviewJson.insertComment ? _c('div', {
|
|
262479
262507
|
staticClass: "ho-emr-tool-item"
|
|
262480
262508
|
}, [_c('span', {
|
|
262481
262509
|
staticClass: "review",
|
|
@@ -262519,7 +262547,7 @@ var ToolBarvue_type_template_id_529bb754_render = function render() {
|
|
|
262519
262547
|
on: {
|
|
262520
262548
|
"click": _vm.reviewPrintStatus
|
|
262521
262549
|
}
|
|
262522
|
-
}, [_vm._v(_vm._s(_vm.isPrinted ? '显示批注' : '
|
|
262550
|
+
}, [_vm._v(_vm._s(_vm.isPrinted ? '显示批注' : ''))])]) : _vm._e()], 2)]) : _vm._e(), _vm._t("afterReview")], 2), _vm.tabStyle == 'select' ? _c('div', {
|
|
262523
262551
|
staticClass: "ho-emr-tool-select"
|
|
262524
262552
|
}, [_c('a-select', {
|
|
262525
262553
|
attrs: {
|
|
@@ -262544,7 +262572,7 @@ var ToolBarvue_type_template_id_529bb754_render = function render() {
|
|
|
262544
262572
|
}, [_vm._v(_vm._s(item.title))]);
|
|
262545
262573
|
}), 1)], 1) : _vm._e()], 1);
|
|
262546
262574
|
};
|
|
262547
|
-
var
|
|
262575
|
+
var ToolBarvue_type_template_id_367b0d47_staticRenderFns = [];
|
|
262548
262576
|
|
|
262549
262577
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/toolbar/insert/HoMedicalExpression.vue?vue&type=template&id=48e0dd30&
|
|
262550
262578
|
var HoMedicalExpressionvue_type_template_id_48e0dd30_render = function render() {
|
|
@@ -267766,10 +267794,10 @@ var ToolTable_component = (0,componentNormalizer/* default */.Z)(
|
|
|
267766
267794
|
});
|
|
267767
267795
|
;// CONCATENATED MODULE: ./src/components/toolbar/ToolBar.vue?vue&type=script&lang=js&
|
|
267768
267796
|
/* harmony default export */ var toolbar_ToolBarvue_type_script_lang_js_ = (ToolBarvue_type_script_lang_js_);
|
|
267769
|
-
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/toolbar/ToolBar.vue?vue&type=style&index=0&id=
|
|
267797
|
+
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/toolbar/ToolBar.vue?vue&type=style&index=0&id=367b0d47&prod&lang=scss&
|
|
267770
267798
|
// extracted by mini-css-extract-plugin
|
|
267771
267799
|
|
|
267772
|
-
;// CONCATENATED MODULE: ./src/components/toolbar/ToolBar.vue?vue&type=style&index=0&id=
|
|
267800
|
+
;// CONCATENATED MODULE: ./src/components/toolbar/ToolBar.vue?vue&type=style&index=0&id=367b0d47&prod&lang=scss&
|
|
267773
267801
|
|
|
267774
267802
|
;// CONCATENATED MODULE: ./src/components/toolbar/ToolBar.vue
|
|
267775
267803
|
|
|
@@ -267782,8 +267810,8 @@ var ToolTable_component = (0,componentNormalizer/* default */.Z)(
|
|
|
267782
267810
|
|
|
267783
267811
|
var ToolBar_component = (0,componentNormalizer/* default */.Z)(
|
|
267784
267812
|
toolbar_ToolBarvue_type_script_lang_js_,
|
|
267785
|
-
|
|
267786
|
-
|
|
267813
|
+
ToolBarvue_type_template_id_367b0d47_render,
|
|
267814
|
+
ToolBarvue_type_template_id_367b0d47_staticRenderFns,
|
|
267787
267815
|
false,
|
|
267788
267816
|
null,
|
|
267789
267817
|
null,
|