hoeditor-web 2.0.80 → 2.0.81
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.common.js +38 -21
- package/lib/hoeditor.css +2 -855
- package/lib/hoeditor.umd.js +38 -21
- package/lib/hoeditor.umd.min.js +2 -2
- package/package.json +1 -1
package/lib/hoeditor.common.js
CHANGED
|
@@ -16808,11 +16808,11 @@ var DocController = /*#__PURE__*/function () {
|
|
|
16808
16808
|
|
|
16809
16809
|
}, {
|
|
16810
16810
|
key: "insertEmptySignNode",
|
|
16811
|
-
value: function insertEmptySignNode(domRange, name, signType, signFormat, signTimeFormat, connectMode, isFront, allowEditSignTime, attribute) {
|
|
16811
|
+
value: function insertEmptySignNode(domRange, name, signType, signFormat, signTimeFormat, connectMode, isFront, allowEditSignTime, attribute, connectChar) {
|
|
16812
16812
|
var hoEditorFactory = _HOEditorFactorys__WEBPACK_IMPORTED_MODULE_77__/* .HOEditorFactorys.instance */ .b.instance().getFactory(this._hoEditorFactoryID);
|
|
16813
16813
|
var startPath = domRange.startPath;
|
|
16814
16814
|
var parentNode = hoEditorFactory.docTree.getParentNode(startPath);
|
|
16815
|
-
var signNode = new _treeNode_SignNode__WEBPACK_IMPORTED_MODULE_83__/* .SignNode */ .N(this._hoEditorFactoryID, domRange.npStart.roots, parentNode, _treeNode_BaseNode__WEBPACK_IMPORTED_MODULE_24__/* .NodeType.ntSign */ .Jq.ntSign, 0, 0, name, signType, signFormat, "", "", signTimeFormat, "", 0, 0, {}, true, hoEditorFactory.docTree.curStyleIndex, connectMode, isFront, allowEditSignTime, undefined, undefined, attribute); //插入该表达式节点
|
|
16815
|
+
var signNode = new _treeNode_SignNode__WEBPACK_IMPORTED_MODULE_83__/* .SignNode */ .N(this._hoEditorFactoryID, domRange.npStart.roots, parentNode, _treeNode_BaseNode__WEBPACK_IMPORTED_MODULE_24__/* .NodeType.ntSign */ .Jq.ntSign, 0, 0, name, signType, signFormat, "", "", signTimeFormat, "", 0, 0, {}, true, hoEditorFactory.docTree.curStyleIndex, connectMode, isFront, allowEditSignTime, undefined, undefined, attribute, connectChar); //插入该表达式节点
|
|
16816
16816
|
|
|
16817
16817
|
hoEditorFactory.undoService.begin();
|
|
16818
16818
|
hoEditorFactory.undoService.add(new _undoRedo_NodeInsertUndoUnit__WEBPACK_IMPORTED_MODULE_25__/* .NodeInsertUndoUnit */ .R(this._hoEditorFactoryID, startPath, signNode));
|
|
@@ -33955,7 +33955,7 @@ var SignNode = /*#__PURE__*/function (_BaseNode) {
|
|
|
33955
33955
|
|
|
33956
33956
|
var _super = (0,D_project_go_emr_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_createSuper_js__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .Z)(SignNode);
|
|
33957
33957
|
|
|
33958
|
-
function SignNode(hoEditorFactoryID, rootNodes, pNode, nodeType, number, type, name, signType, signFormat, signor, signTime, signTimeFormat, imgSrc, imgWidth, imgHeight, customProperty, isTemplate, styleIndex, connectMode, isFront, allowEditSignTime, fingerPrintSrc, fingerPosition, attribute) {
|
|
33958
|
+
function SignNode(hoEditorFactoryID, rootNodes, pNode, nodeType, number, type, name, signType, signFormat, signor, signTime, signTimeFormat, imgSrc, imgWidth, imgHeight, customProperty, isTemplate, styleIndex, connectMode, isFront, allowEditSignTime, fingerPrintSrc, fingerPosition, attribute, connectChar) {
|
|
33959
33959
|
var _this;
|
|
33960
33960
|
|
|
33961
33961
|
(0,D_project_go_emr_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_classCallCheck_js__WEBPACK_IMPORTED_MODULE_1__/* ["default"] */ .Z)(this, SignNode);
|
|
@@ -34001,12 +34001,15 @@ var SignNode = /*#__PURE__*/function (_BaseNode) {
|
|
|
34001
34001
|
|
|
34002
34002
|
_this._attribute = 0; //签名属性 0:医生签名 1:患者签名 2:ca签名(职称+签名图片)
|
|
34003
34003
|
|
|
34004
|
+
_this._connectChar = ":"; //自定义CA签名连接符
|
|
34005
|
+
|
|
34004
34006
|
_this.number = number;
|
|
34005
34007
|
_this._type = type;
|
|
34006
34008
|
_this._signor = signor;
|
|
34007
34009
|
_this._signTime = signTime;
|
|
34008
34010
|
_this._imgSrc = imgSrc;
|
|
34009
34011
|
_this._attribute = attribute === undefined ? 0 : attribute;
|
|
34012
|
+
_this._connectChar = connectChar === undefined ? ":" : connectChar;
|
|
34010
34013
|
|
|
34011
34014
|
if (type == 3) {
|
|
34012
34015
|
// 兼容旧的患者签名
|
|
@@ -34282,6 +34285,16 @@ var SignNode = /*#__PURE__*/function (_BaseNode) {
|
|
|
34282
34285
|
this._attribute = value;
|
|
34283
34286
|
}
|
|
34284
34287
|
}
|
|
34288
|
+
}, {
|
|
34289
|
+
key: "connectChar",
|
|
34290
|
+
get: function get() {
|
|
34291
|
+
return this._connectChar;
|
|
34292
|
+
},
|
|
34293
|
+
set: function set(value) {
|
|
34294
|
+
if (this._connectChar !== value) {
|
|
34295
|
+
this._connectChar = value;
|
|
34296
|
+
}
|
|
34297
|
+
}
|
|
34285
34298
|
/**
|
|
34286
34299
|
*
|
|
34287
34300
|
* @param drawTree 绘制树
|
|
@@ -34303,7 +34316,7 @@ var SignNode = /*#__PURE__*/function (_BaseNode) {
|
|
|
34303
34316
|
this.styleIndex = 0;
|
|
34304
34317
|
}
|
|
34305
34318
|
|
|
34306
|
-
var dNode = new _editor_draw_drawNode_DrawSignNode__WEBPACK_IMPORTED_MODULE_10__/* .DrawSignNode */ .V(this._hoEditorFactoryID, this._rootPath, this, this.number, this.type, this.name, this.imgSrc, this.imgWidth, this.imgHeight, cbStyle, this.fingerPrintSrc, this.fingerPosition, this.attribute, this.customProperty);
|
|
34319
|
+
var dNode = new _editor_draw_drawNode_DrawSignNode__WEBPACK_IMPORTED_MODULE_10__/* .DrawSignNode */ .V(this._hoEditorFactoryID, this._rootPath, this, this.number, this.type, this.name, this.imgSrc, this.imgWidth, this.imgHeight, cbStyle, this.fingerPrintSrc, this.fingerPosition, this.attribute, this.customProperty, this.connectChar);
|
|
34307
34320
|
|
|
34308
34321
|
this._drawNodes.push(dNode);
|
|
34309
34322
|
}
|
|
@@ -34387,7 +34400,8 @@ var SignNode = /*#__PURE__*/function (_BaseNode) {
|
|
|
34387
34400
|
allowEditSignTime: this.allowEditSignTime,
|
|
34388
34401
|
fingerPrintSrc: clearSign ? "" : this.fingerPrintSrc,
|
|
34389
34402
|
fingerPosition: clearSign ? 0 : this.fingerPosition,
|
|
34390
|
-
attribute: this.attribute
|
|
34403
|
+
attribute: this.attribute,
|
|
34404
|
+
connectChar: this.connectChar
|
|
34391
34405
|
};
|
|
34392
34406
|
|
|
34393
34407
|
if (isCopy) {
|
|
@@ -34416,7 +34430,7 @@ var SignNode = /*#__PURE__*/function (_BaseNode) {
|
|
|
34416
34430
|
var imgHeight = isClearSign ? 0 : Number(json.imgHeight);
|
|
34417
34431
|
var isTemplate = json.isTemplate === true || json.isTemplate === "true" ? true : false;
|
|
34418
34432
|
var attribute = json.attribute ? Number(json.attribute) : 0;
|
|
34419
|
-
var signNode = new SignNode(hoEditorFactoryID, rootNodes, pNode ? pNode : null, _BaseNode__WEBPACK_IMPORTED_MODULE_13__/* .NodeType.ntSign */ .Jq.ntSign, number, type, json.name, json.signType ? Number(json.signType) : 0, json.signFormat ? json.signFormat : "签名医师", isClearSign ? "" : json.signor, isClearSign ? "" : json.signTime, json.signTimeFormat ? json.signTimeFormat : "yyyy-MM-dd HH:mm", isClearSign ? "" : json.imgSrc, imgWidth, imgHeight, isClearSign ? undefined : json.customProperty, isTemplate, json.styleIndex ? Number(json.styleIndex) : undefined, json.connectMode, json.isFront, json.allowEditSignTime, isClearSign ? "" : json.fingerPrintSrc, isClearSign ? 0 : json.fingerPosition, attribute);
|
|
34433
|
+
var signNode = new SignNode(hoEditorFactoryID, rootNodes, pNode ? pNode : null, _BaseNode__WEBPACK_IMPORTED_MODULE_13__/* .NodeType.ntSign */ .Jq.ntSign, number, type, json.name, json.signType ? Number(json.signType) : 0, json.signFormat ? json.signFormat : "签名医师", isClearSign ? "" : json.signor, isClearSign ? "" : json.signTime, json.signTimeFormat ? json.signTimeFormat : "yyyy-MM-dd HH:mm", isClearSign ? "" : json.imgSrc, imgWidth, imgHeight, isClearSign ? undefined : json.customProperty, isTemplate, json.styleIndex ? Number(json.styleIndex) : undefined, json.connectMode, json.isFront, json.allowEditSignTime, isClearSign ? "" : json.fingerPrintSrc, isClearSign ? 0 : json.fingerPosition, attribute, json.connectChar);
|
|
34420
34434
|
signNode.PNGToJPG = json.PNGToJPG == 1 ? 1 : 0; //signNode.number = number;
|
|
34421
34435
|
//signNode.width = width;
|
|
34422
34436
|
|
|
@@ -51602,7 +51616,7 @@ var DrawRect = /*#__PURE__*/function (_DrawContainer) {
|
|
|
51602
51616
|
/*
|
|
51603
51617
|
* @Author: your name
|
|
51604
51618
|
* @Date: 2021-09-01 16:51:49
|
|
51605
|
-
* @LastEditTime: 2022-
|
|
51619
|
+
* @LastEditTime: 2022-08-01 10:19:27
|
|
51606
51620
|
* @LastEditors: liyanan 2441631434@qq.com
|
|
51607
51621
|
* @Description: In User Settings Edit
|
|
51608
51622
|
* @FilePath: \hoeditor-web\src\editor\draw\drawNode\DrawSignNode.ts
|
|
@@ -51613,7 +51627,7 @@ var DrawSignNode = /*#__PURE__*/function (_DrawCombineNode) {
|
|
|
51613
51627
|
|
|
51614
51628
|
var _super = (0,D_project_go_emr_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_createSuper_js__WEBPACK_IMPORTED_MODULE_2__/* ["default"] */ .Z)(DrawSignNode);
|
|
51615
51629
|
|
|
51616
|
-
function DrawSignNode(hoeditfactoryID, rootPath, node, number, type, name, imgSrc, imgWidth, imgHeight, cbStyle, fingerPrintSrc, fingerPosition, attribute, customProperty) {
|
|
51630
|
+
function DrawSignNode(hoeditfactoryID, rootPath, node, number, type, name, imgSrc, imgWidth, imgHeight, cbStyle, fingerPrintSrc, fingerPosition, attribute, customProperty, connectChar) {
|
|
51617
51631
|
var _this;
|
|
51618
51632
|
|
|
51619
51633
|
(0,D_project_go_emr_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_classCallCheck_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z)(this, DrawSignNode);
|
|
@@ -51627,6 +51641,7 @@ var DrawSignNode = /*#__PURE__*/function (_DrawCombineNode) {
|
|
|
51627
51641
|
_this._fingerPosition = 0;
|
|
51628
51642
|
_this._attribute = 0; //签名属性 0:医生签名 1:患者签名 2:ca签名(职称+签名图片)
|
|
51629
51643
|
|
|
51644
|
+
_this._connectChar = ":";
|
|
51630
51645
|
_this._abi02 = "";
|
|
51631
51646
|
_this._number = number;
|
|
51632
51647
|
_this._imgSrc = imgSrc;
|
|
@@ -51635,6 +51650,7 @@ var DrawSignNode = /*#__PURE__*/function (_DrawCombineNode) {
|
|
|
51635
51650
|
_this._fingerPrintSrc = fingerPrintSrc;
|
|
51636
51651
|
_this._fingerPosition = fingerPosition;
|
|
51637
51652
|
_this._attribute = attribute;
|
|
51653
|
+
_this._connectChar = connectChar;
|
|
51638
51654
|
_this._abi02 = customProperty && customProperty.abi02 ? customProperty.abi02 : ""; //this._textStyle = cbStyle.;
|
|
51639
51655
|
|
|
51640
51656
|
_this.dHeight = _HOEditorFactorys__WEBPACK_IMPORTED_MODULE_8__/* .HOEditorFactorys.instance */ .b.instance().getFactory(hoeditfactoryID).signHeight; //this.dHeight = 40;
|
|
@@ -51677,7 +51693,7 @@ var DrawSignNode = /*#__PURE__*/function (_DrawCombineNode) {
|
|
|
51677
51693
|
}
|
|
51678
51694
|
|
|
51679
51695
|
if (_this.attribute === 2 && _this._abi02 !== "") {
|
|
51680
|
-
_this._drawAbi02 = new createjs.Text(_this._abi02 +
|
|
51696
|
+
_this._drawAbi02 = new createjs.Text(_this._abi02 + _this._connectChar, _this._textStyle, '#000000');
|
|
51681
51697
|
_this.dWidth += _this._drawAbi02.getMeasuredWidth();
|
|
51682
51698
|
}
|
|
51683
51699
|
}
|
|
@@ -52016,7 +52032,7 @@ var DrawSignNode = /*#__PURE__*/function (_DrawCombineNode) {
|
|
|
52016
52032
|
}
|
|
52017
52033
|
|
|
52018
52034
|
if (_this3.attribute === 2 && _this3.abi02 !== "") {
|
|
52019
|
-
var abi02Text = new createjs.Text(_this3.abi02 +
|
|
52035
|
+
var abi02Text = new createjs.Text(_this3.abi02 + _this3._connectChar, _this3.textStyle, '#000000');
|
|
52020
52036
|
abi02Text.textBaseline = 'alphabetic';
|
|
52021
52037
|
abi02Text.textAlign = 'left';
|
|
52022
52038
|
|
|
@@ -55409,6 +55425,7 @@ var Caret = /*#__PURE__*/function () {
|
|
|
55409
55425
|
this.div_cursor.style.left = x + "px";
|
|
55410
55426
|
this.div_cursor.style.top = y + "px";
|
|
55411
55427
|
this.div_cursor.style.opacity = "1";
|
|
55428
|
+
this.div_cursor.style.width = "0.1px";
|
|
55412
55429
|
this.updateCaret();
|
|
55413
55430
|
this.setPage(pageIndex);
|
|
55414
55431
|
}
|
|
@@ -207499,7 +207516,7 @@ var SignNode = __webpack_require__(34450);
|
|
|
207499
207516
|
// EXTERNAL MODULE: ./src/editor/dom/treeNode/ParagraphNode.ts
|
|
207500
207517
|
var ParagraphNode = __webpack_require__(14208);
|
|
207501
207518
|
;// CONCATENATED MODULE: ./src/components/version.ts
|
|
207502
|
-
/* harmony default export */ var version = ('2.0.
|
|
207519
|
+
/* harmony default export */ var version = ('2.0.81');
|
|
207503
207520
|
;// CONCATENATED MODULE: ./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/controls/poperTipText/PoperTipText.vue?vue&type=template&id=3fa4e4d3&scoped=true&
|
|
207504
207521
|
var PoperTipTextvue_type_template_id_3fa4e4d3_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.isShow),expression:"isShow"},{name:"click-outside",rawName:"v-click-outside",value:(_vm.handleClose),expression:"handleClose"}],ref:"poperTextNode",staticClass:"poper-text-modal animation-in",style:(_vm.posStyle),on:{"mouseenter":_vm.mouseEnter,"mouseleave":_vm.mouseLeave}},_vm._l((_vm.poperText),function(text){return _c('div',{key:text + Math.random(0, 1),staticClass:"poper-text"},[_vm._v(" "+_vm._s(text)+" ")])}),0)}
|
|
207505
207522
|
var PoperTipTextvue_type_template_id_3fa4e4d3_scoped_true_staticRenderFns = []
|
|
@@ -212154,13 +212171,13 @@ var StructureConvert = /*#__PURE__*/function () {
|
|
|
212154
212171
|
xmlRoot += x2js.js2xml(_userHistories);
|
|
212155
212172
|
xmlRoot += "</userHistories>";
|
|
212156
212173
|
xmlRoot += "<headers>";
|
|
212157
|
-
xmlRoot = this.doc2Json("header", "xml", xmlRoot);
|
|
212174
|
+
xmlRoot = this.doc2Json("header", "xml", xmlRoot, clearSign);
|
|
212158
212175
|
xmlRoot += "</headers>";
|
|
212159
212176
|
xmlRoot += "<main>";
|
|
212160
212177
|
xmlRoot = this.doc2Json("main", "xml", xmlRoot, clearSign);
|
|
212161
212178
|
xmlRoot += "</main>";
|
|
212162
212179
|
xmlRoot += "<footers>";
|
|
212163
|
-
xmlRoot = this.doc2Json("footer", "xml", xmlRoot);
|
|
212180
|
+
xmlRoot = this.doc2Json("footer", "xml", xmlRoot, clearSign);
|
|
212164
212181
|
xmlRoot += "</footers>";
|
|
212165
212182
|
xmlRoot += "<docText>";
|
|
212166
212183
|
xmlRoot += hoEditorFactory.vueController.getMainDocText();
|
|
@@ -219688,7 +219705,7 @@ var VueController = /*#__PURE__*/function () {
|
|
|
219688
219705
|
|
|
219689
219706
|
}, {
|
|
219690
219707
|
key: "insertEmptySignNode",
|
|
219691
|
-
value: function insertEmptySignNode(name, signType, signFormat, signTimeFormat, connectMode, isFront, allowEditSignTime, attribute) {
|
|
219708
|
+
value: function insertEmptySignNode(name, signType, signFormat, signTimeFormat, connectMode, isFront, allowEditSignTime, attribute, connectChar) {
|
|
219692
219709
|
var hoEditorFactory = HOEditorFactorys/* HOEditorFactorys.instance */.b.instance().getFactory(this._hoEditorFactoryID);
|
|
219693
219710
|
var curDomRange = hoEditorFactory.docTree.curDomRange.normalize();
|
|
219694
219711
|
var startPath = curDomRange.normalize().startPath;
|
|
@@ -219696,7 +219713,7 @@ var VueController = /*#__PURE__*/function () {
|
|
|
219696
219713
|
var changingEvent = new NodeChangingEvent/* NodeChangingEvent */.Q(DocTree/* DocAction.daInsert */.gk.daInsert, startPath, endPath, NodeChangingEvent/* OperType.insertSign */.y.insertSign);
|
|
219697
219714
|
|
|
219698
219715
|
if (hoEditorFactory.docTree.changing(changingEvent)) {
|
|
219699
|
-
hoEditorFactory.docController.insertEmptySignNode(curDomRange, name, signType, signFormat, signTimeFormat, connectMode, isFront, allowEditSignTime, attribute);
|
|
219716
|
+
hoEditorFactory.docController.insertEmptySignNode(curDomRange, name, signType, signFormat, signTimeFormat, connectMode, isFront, allowEditSignTime, attribute, connectChar);
|
|
219700
219717
|
}
|
|
219701
219718
|
}
|
|
219702
219719
|
/**
|
|
@@ -232868,9 +232885,9 @@ var ControlModal_component = normalizeComponent(
|
|
|
232868
232885
|
)
|
|
232869
232886
|
|
|
232870
232887
|
/* harmony default export */ var ControlModal = (ControlModal_component.exports);
|
|
232871
|
-
;// CONCATENATED MODULE: ./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/controls/findReplace/FindReplace.vue?vue&type=template&id=
|
|
232872
|
-
var
|
|
232873
|
-
var
|
|
232888
|
+
;// CONCATENATED MODULE: ./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/controls/findReplace/FindReplace.vue?vue&type=template&id=7c30bf52&
|
|
232889
|
+
var FindReplacevue_type_template_id_7c30bf52_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{ref:"findModal",class:_vm.animationClassNames,on:{"mousedown":_vm.toolModalDown}},[_c('header',{staticClass:"modal-title"},[_c('span',[_vm._v("查找替换")]),_c('i',{staticClass:"el-icon-close modal-title-close",on:{"click":_vm.handleClose}})]),_c('section',{staticClass:"modal-content"},[_c('ul',{staticClass:"control-list"},[_c('li',{staticClass:"control-item"},[_c('span',{staticClass:"label"},[_vm._v("查找内容")]),_c('el-input',{attrs:{"type":"text","size":"mini"},nativeOn:{"keyup":function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"enter",13,$event.key,"Enter")){ return null; }return _vm.toFind.apply(null, arguments)}},model:{value:(_vm.findContent),callback:function ($$v) {_vm.findContent=$$v},expression:"findContent"}})],1),_c('li',{staticClass:"control-item"},[_c('div',{staticClass:"label"},[_c('el-checkbox',{on:{"change":_vm.switchTypes},model:{value:(_vm.switchType),callback:function ($$v) {_vm.switchType=$$v},expression:"switchType"}},[_vm._v("替换内容")])],1),_c('el-input',{attrs:{"disabled":!_vm.switchType,"type":"text","size":"mini"},model:{value:(_vm.replaceCentent),callback:function ($$v) {_vm.replaceCentent=$$v},expression:"replaceCentent"}})],1),_c('li',{staticClass:"control-item"},[_c('el-radio',{attrs:{"label":0},model:{value:(_vm.direction),callback:function ($$v) {_vm.direction=$$v},expression:"direction"}},[_vm._v("向下")]),_c('el-radio',{attrs:{"label":1},model:{value:(_vm.direction),callback:function ($$v) {_vm.direction=$$v},expression:"direction"}},[_vm._v("向上")]),_c('div',{staticStyle:{"margin-left":"30px"}},[_c('el-checkbox',{model:{value:(_vm.matchCase),callback:function ($$v) {_vm.matchCase=$$v},expression:"matchCase"}},[_vm._v("区分大小写")])],1)],1)])]),_c('footer',{staticClass:"ho-modal-footer"},[_c('el-button',{attrs:{"disabled":_vm.findContent === '',"size":"mini"},on:{"click":_vm.toFind}},[_vm._v("查找")]),_c('el-button',{attrs:{"disabled":_vm.findContent === '' || !_vm.switchType,"size":"mini"},on:{"click":_vm.toReplace}},[_vm._v("替换")]),_c('el-button',{attrs:{"disabled":_vm.findContent === '' || !_vm.switchType,"size":"mini"},on:{"click":_vm.toReplaceAll}},[_vm._v("全部替换")]),_c('el-button',{attrs:{"size":"mini"},on:{"click":_vm.handleClose}},[_vm._v("关闭")])],1)])}
|
|
232890
|
+
var FindReplacevue_type_template_id_7c30bf52_staticRenderFns = []
|
|
232874
232891
|
|
|
232875
232892
|
|
|
232876
232893
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40[0].rules[0].use[0]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/controls/findReplace/FindReplace.vue?vue&type=script&lang=js&
|
|
@@ -232916,7 +232933,7 @@ var FindReplacevue_type_template_id_15d96f32_staticRenderFns = []
|
|
|
232916
232933
|
/* harmony default export */ var FindReplacevue_type_script_lang_js_ = ({
|
|
232917
232934
|
name: 'FindReplaceDialog',
|
|
232918
232935
|
mixins: [AppendToBodyMixins],
|
|
232919
|
-
|
|
232936
|
+
inject: ['setControlFindType'],
|
|
232920
232937
|
props: {
|
|
232921
232938
|
hoEditorFactoryId: {
|
|
232922
232939
|
type: String,
|
|
@@ -233011,8 +233028,8 @@ var FindReplacevue_type_template_id_15d96f32_staticRenderFns = []
|
|
|
233011
233028
|
|
|
233012
233029
|
var FindReplace_component = normalizeComponent(
|
|
233013
233030
|
findReplace_FindReplacevue_type_script_lang_js_,
|
|
233014
|
-
|
|
233015
|
-
|
|
233031
|
+
FindReplacevue_type_template_id_7c30bf52_render,
|
|
233032
|
+
FindReplacevue_type_template_id_7c30bf52_staticRenderFns,
|
|
233016
233033
|
false,
|
|
233017
233034
|
null,
|
|
233018
233035
|
null,
|