hoeditor-web 3.0.83 → 3.0.84

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.
@@ -3625,7 +3625,7 @@ var component = (0,componentNormalizer/* default */.Z)(
3625
3625
 
3626
3626
  /***/ }),
3627
3627
 
3628
- /***/ 2062:
3628
+ /***/ 75336:
3629
3629
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
3630
3630
 
3631
3631
  "use strict";
@@ -3637,7 +3637,7 @@ __webpack_require__.d(__webpack_exports__, {
3637
3637
  "default": function() { return /* binding */ BarCodes; }
3638
3638
  });
3639
3639
 
3640
- ;// 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/barCode/BarCodes.vue?vue&type=template&id=77ae51d0&
3640
+ ;// 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/barCode/BarCodes.vue?vue&type=template&id=59549e42&
3641
3641
  var render = function render() {
3642
3642
  var _vm = this,
3643
3643
  _c = _vm._self._c;
@@ -3667,6 +3667,26 @@ var render = function render() {
3667
3667
  staticClass: "control-item"
3668
3668
  }, [_c('span', {
3669
3669
  staticClass: "label"
3670
+ }, [_vm._v("标识符")]), _c('a-input', {
3671
+ attrs: {
3672
+ "placeholder": "条形码内容不能为空",
3673
+ "max-length": 20,
3674
+ "show-word-limit": ""
3675
+ },
3676
+ on: {
3677
+ "input": _vm.codeChange
3678
+ },
3679
+ model: {
3680
+ value: _vm.innerIdentifier,
3681
+ callback: function callback($$v) {
3682
+ _vm.innerIdentifier = $$v;
3683
+ },
3684
+ expression: "innerIdentifier"
3685
+ }
3686
+ })], 1), _c('li', {
3687
+ staticClass: "control-item"
3688
+ }, [_c('span', {
3689
+ staticClass: "label"
3670
3690
  }, [_vm._v("条形码内容")]), _c('a-input', {
3671
3691
  attrs: {
3672
3692
  "placeholder": "条形码内容不能为空",
@@ -3740,6 +3760,8 @@ var render = function render() {
3740
3760
  };
3741
3761
  var staticRenderFns = [];
3742
3762
 
3763
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.function.name.js
3764
+ var es_function_name = __webpack_require__(68309);
3743
3765
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.regexp.exec.js
3744
3766
  var es_regexp_exec = __webpack_require__(74916);
3745
3767
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.regexp.test.js
@@ -3757,6 +3779,7 @@ var HOEditorFactorys = __webpack_require__(74089);
3757
3779
 
3758
3780
 
3759
3781
 
3782
+
3760
3783
  /* harmony default export */ var BarCodesvue_type_script_lang_js_ = ({
3761
3784
  name: 'Barcode',
3762
3785
  props: {
@@ -3774,6 +3797,7 @@ var HOEditorFactorys = __webpack_require__(74089);
3774
3797
  return {
3775
3798
  id: '',
3776
3799
  textContent: '',
3800
+ innerIdentifier: '',
3777
3801
  barCodeStyle: 'CODE39',
3778
3802
  textAlign: 'center',
3779
3803
  isDisplayText: false,
@@ -3781,7 +3805,8 @@ var HOEditorFactorys = __webpack_require__(74089);
3781
3805
  textField: '',
3782
3806
  textEslint: /^[a-zA-Z0-9_]+$/,
3783
3807
  animationClassNames: 'control-modal-contents barcode-modal animation-in',
3784
- barcode: null
3808
+ barcode: null,
3809
+ name: ''
3785
3810
  // dataSource: null
3786
3811
  };
3787
3812
  },
@@ -3790,7 +3815,9 @@ var HOEditorFactorys = __webpack_require__(74089);
3790
3815
  if (this.controlStatus === 'update') {
3791
3816
  var updateNode = this.getBarCodeNode();
3792
3817
  this.id = updateNode.id;
3818
+ this.name = updateNode.name;
3793
3819
  this.textContent = updateNode.textContent;
3820
+ this.innerIdentifier = updateNode.innerIdentifier;
3794
3821
  this.isDisplayText = updateNode.isDisplayText;
3795
3822
  this.$nextTick(function () {
3796
3823
  return _this.codeChange();
@@ -3844,9 +3871,9 @@ var HOEditorFactorys = __webpack_require__(74089);
3844
3871
  // this.dataSource = this.hoEditorProvider.getDataSource();
3845
3872
 
3846
3873
  if (this.controlStatus === 'add') {
3847
- vueController.insertBarcode(this.controlStatus, this.id, this.textContent, this.isDisplayText, this.barcode.src, width, height, "");
3874
+ vueController.insertBarcode(this.controlStatus, this.id, this.textContent, this.isDisplayText, this.barcode.src, width, height, '', this.innerIdentifier);
3848
3875
  } else if (this.controlStatus === 'update') {
3849
- vueController.updateBarcode(this.id, this.textContent, this.isDisplayText, this.barcode.src, width, height, "");
3876
+ vueController.updateBarcode(this.id, this.textContent, this.isDisplayText, this.barcode.src, width, height, this.name, this.innerIdentifier);
3850
3877
  }
3851
3878
  this.handleClose();
3852
3879
  },
@@ -3861,10 +3888,10 @@ var HOEditorFactorys = __webpack_require__(74089);
3861
3888
  });
3862
3889
  ;// CONCATENATED MODULE: ./src/components/controls/barCode/BarCodes.vue?vue&type=script&lang=js&
3863
3890
  /* harmony default export */ var barCode_BarCodesvue_type_script_lang_js_ = (BarCodesvue_type_script_lang_js_);
3864
- ;// 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/barCode/BarCodes.vue?vue&type=style&index=0&id=77ae51d0&prod&lang=scss&
3891
+ ;// 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/barCode/BarCodes.vue?vue&type=style&index=0&id=59549e42&prod&lang=scss&
3865
3892
  // extracted by mini-css-extract-plugin
3866
3893
 
3867
- ;// CONCATENATED MODULE: ./src/components/controls/barCode/BarCodes.vue?vue&type=style&index=0&id=77ae51d0&prod&lang=scss&
3894
+ ;// CONCATENATED MODULE: ./src/components/controls/barCode/BarCodes.vue?vue&type=style&index=0&id=59549e42&prod&lang=scss&
3868
3895
 
3869
3896
  // EXTERNAL MODULE: ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
3870
3897
  var componentNormalizer = __webpack_require__(70713);
@@ -5148,7 +5175,7 @@ var component = (0,componentNormalizer/* default */.Z)(
5148
5175
 
5149
5176
  /***/ }),
5150
5177
 
5151
- /***/ 17237:
5178
+ /***/ 49145:
5152
5179
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
5153
5180
 
5154
5181
  "use strict";
@@ -5170,7 +5197,7 @@ var es_string_includes = __webpack_require__(32023);
5170
5197
  var es_regexp_exec = __webpack_require__(74916);
5171
5198
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.replace.js
5172
5199
  var es_string_replace = __webpack_require__(15306);
5173
- ;// 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/dateDialog/DateDialog.vue?vue&type=template&id=5844e53a&
5200
+ ;// 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/dateDialog/DateDialog.vue?vue&type=template&id=0a9d2557&
5174
5201
 
5175
5202
 
5176
5203
 
@@ -5439,7 +5466,7 @@ var render = function render() {
5439
5466
  };
5440
5467
  var staticRenderFns = [];
5441
5468
 
5442
- ;// CONCATENATED MODULE: ./src/components/controls/dateDialog/DateDialog.vue?vue&type=template&id=5844e53a&
5469
+ ;// CONCATENATED MODULE: ./src/components/controls/dateDialog/DateDialog.vue?vue&type=template&id=0a9d2557&
5443
5470
 
5444
5471
  // EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/objectSpread2.js
5445
5472
  var objectSpread2 = __webpack_require__(63442);
@@ -5641,10 +5668,10 @@ var zh_cn = __webpack_require__(83839);
5641
5668
  });
5642
5669
  ;// CONCATENATED MODULE: ./src/components/controls/dateDialog/DateDialog.vue?vue&type=script&lang=js&
5643
5670
  /* harmony default export */ var dateDialog_DateDialogvue_type_script_lang_js_ = (DateDialogvue_type_script_lang_js_);
5644
- ;// 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/dateDialog/DateDialog.vue?vue&type=style&index=0&id=5844e53a&prod&lang=scss&
5671
+ ;// 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/dateDialog/DateDialog.vue?vue&type=style&index=0&id=0a9d2557&prod&lang=scss&
5645
5672
  // extracted by mini-css-extract-plugin
5646
5673
 
5647
- ;// CONCATENATED MODULE: ./src/components/controls/dateDialog/DateDialog.vue?vue&type=style&index=0&id=5844e53a&prod&lang=scss&
5674
+ ;// CONCATENATED MODULE: ./src/components/controls/dateDialog/DateDialog.vue?vue&type=style&index=0&id=0a9d2557&prod&lang=scss&
5648
5675
 
5649
5676
  // EXTERNAL MODULE: ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
5650
5677
  var componentNormalizer = __webpack_require__(70713);
@@ -8304,7 +8331,7 @@ var component = (0,componentNormalizer/* default */.Z)(
8304
8331
 
8305
8332
  /***/ }),
8306
8333
 
8307
- /***/ 47214:
8334
+ /***/ 50921:
8308
8335
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
8309
8336
 
8310
8337
  "use strict";
@@ -8320,7 +8347,7 @@ __webpack_require__.d(__webpack_exports__, {
8320
8347
  var es_array_includes = __webpack_require__(26699);
8321
8348
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.includes.js
8322
8349
  var es_string_includes = __webpack_require__(32023);
8323
- ;// 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/listsource/ListSource.vue?vue&type=template&id=4e58a6fc&scoped=true&
8350
+ ;// 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/listsource/ListSource.vue?vue&type=template&id=0d496382&scoped=true&
8324
8351
 
8325
8352
 
8326
8353
  var render = function render() {
@@ -8353,27 +8380,6 @@ var render = function render() {
8353
8380
  }, [_c('ul', {
8354
8381
  staticClass: "control-list"
8355
8382
  }, [_c('li', {
8356
- staticClass: "control-item",
8357
- staticStyle: {
8358
- "width": "100%"
8359
- }
8360
- }, [_c('span', {
8361
- staticClass: "label",
8362
- staticStyle: {
8363
- "width": "42px"
8364
- }
8365
- }, [_vm._v("来源")]), _c('a-input', {
8366
- attrs: {
8367
- "placeholder": "来源"
8368
- },
8369
- model: {
8370
- value: _vm.source,
8371
- callback: function callback($$v) {
8372
- _vm.source = $$v;
8373
- },
8374
- expression: "source"
8375
- }
8376
- })], 1), _c('li', {
8377
8383
  staticClass: "control-item"
8378
8384
  }, [_c('span', {
8379
8385
  staticClass: "label",
@@ -8582,7 +8588,7 @@ var render = function render() {
8582
8588
  };
8583
8589
  var staticRenderFns = [];
8584
8590
 
8585
- ;// CONCATENATED MODULE: ./src/components/controls/listsource/ListSource.vue?vue&type=template&id=4e58a6fc&scoped=true&
8591
+ ;// CONCATENATED MODULE: ./src/components/controls/listsource/ListSource.vue?vue&type=template&id=0d496382&scoped=true&
8586
8592
 
8587
8593
  // EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/toConsumableArray.js + 3 modules
8588
8594
  var toConsumableArray = __webpack_require__(61748);
@@ -8829,10 +8835,10 @@ var appendToBody = __webpack_require__(95677);
8829
8835
  });
8830
8836
  ;// CONCATENATED MODULE: ./src/components/controls/listsource/ListSource.vue?vue&type=script&lang=js&
8831
8837
  /* harmony default export */ var listsource_ListSourcevue_type_script_lang_js_ = (ListSourcevue_type_script_lang_js_);
8832
- ;// 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/listsource/ListSource.vue?vue&type=style&index=0&id=4e58a6fc&prod&lang=scss&scoped=true&
8838
+ ;// 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/listsource/ListSource.vue?vue&type=style&index=0&id=0d496382&prod&lang=scss&scoped=true&
8833
8839
  // extracted by mini-css-extract-plugin
8834
8840
 
8835
- ;// CONCATENATED MODULE: ./src/components/controls/listsource/ListSource.vue?vue&type=style&index=0&id=4e58a6fc&prod&lang=scss&scoped=true&
8841
+ ;// CONCATENATED MODULE: ./src/components/controls/listsource/ListSource.vue?vue&type=style&index=0&id=0d496382&prod&lang=scss&scoped=true&
8836
8842
 
8837
8843
  // EXTERNAL MODULE: ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
8838
8844
  var componentNormalizer = __webpack_require__(70713);
@@ -8851,7 +8857,7 @@ var component = (0,componentNormalizer/* default */.Z)(
8851
8857
  staticRenderFns,
8852
8858
  false,
8853
8859
  null,
8854
- "4e58a6fc",
8860
+ "0d496382",
8855
8861
  null
8856
8862
 
8857
8863
  )
@@ -16591,7 +16597,7 @@ var component = (0,componentNormalizer/* default */.Z)(
16591
16597
 
16592
16598
  /***/ }),
16593
16599
 
16594
- /***/ 61973:
16600
+ /***/ 47158:
16595
16601
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
16596
16602
 
16597
16603
  "use strict";
@@ -16607,7 +16613,7 @@ __webpack_require__.d(__webpack_exports__, {
16607
16613
  var es_array_includes = __webpack_require__(26699);
16608
16614
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.includes.js
16609
16615
  var es_string_includes = __webpack_require__(32023);
16610
- ;// 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=488dae95&
16616
+ ;// 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=59ad6eba&
16611
16617
 
16612
16618
 
16613
16619
  var render = function render() {
@@ -16927,7 +16933,8 @@ var render = function render() {
16927
16933
  }
16928
16934
  }), _c('span', {
16929
16935
  staticStyle: {
16930
- "padding": "0 10px"
16936
+ "padding": "0 10px",
16937
+ "margin-left": "34px"
16931
16938
  }
16932
16939
  }, [_vm._v("下")]), _c('a-checkbox', {
16933
16940
  model: {
@@ -16939,7 +16946,8 @@ var render = function render() {
16939
16946
  }
16940
16947
  }), _c('span', {
16941
16948
  staticStyle: {
16942
- "padding": "0 10px"
16949
+ "padding": "0 10px",
16950
+ "margin-left": "34px"
16943
16951
  }
16944
16952
  }, [_vm._v("左")]), _c('a-checkbox', {
16945
16953
  model: {
@@ -16951,7 +16959,8 @@ var render = function render() {
16951
16959
  }
16952
16960
  }), _c('span', {
16953
16961
  staticStyle: {
16954
- "padding": "0 10px"
16962
+ "padding": "0 10px",
16963
+ "margin-left": "34px"
16955
16964
  }
16956
16965
  }, [_vm._v("右")]), _c('a-checkbox', {
16957
16966
  model: {
@@ -17337,7 +17346,7 @@ var render = function render() {
17337
17346
  }
17338
17347
  }, [_c('span', {
17339
17348
  staticClass: "line no-line"
17340
- }), _c('span', [_vm._v("None")])]), _c('li', {
17349
+ })]), _c('li', {
17341
17350
  class: _vm.obliqueSplitLine === 1 ? 'selected' : '',
17342
17351
  on: {
17343
17352
  "click": function click($event) {
@@ -17346,7 +17355,7 @@ var render = function render() {
17346
17355
  }
17347
17356
  }, [_c('span', {
17348
17357
  staticClass: "line left-line top-line top-left-one-line"
17349
- }), _c('span', [_vm._v("TopLeftOneLine")])]), _c('li', {
17358
+ })]), _c('li', {
17350
17359
  class: _vm.obliqueSplitLine === 2 ? 'selected' : '',
17351
17360
  on: {
17352
17361
  "click": function click($event) {
@@ -17355,7 +17364,7 @@ var render = function render() {
17355
17364
  }
17356
17365
  }, [_c('span', {
17357
17366
  staticClass: "line left-line top-line top-left-two-line"
17358
- }), _c('span', [_vm._v("TopLeftTwoLine")])]), _c('li', {
17367
+ })]), _c('li', {
17359
17368
  class: _vm.obliqueSplitLine === 3 ? 'selected' : '',
17360
17369
  on: {
17361
17370
  "click": function click($event) {
@@ -17364,7 +17373,7 @@ var render = function render() {
17364
17373
  }
17365
17374
  }, [_c('span', {
17366
17375
  staticClass: "line right-line top-line top-right-one-line"
17367
- }), _c('span', [_vm._v("TopRightOneLine")])]), _c('li', {
17376
+ })]), _c('li', {
17368
17377
  class: _vm.obliqueSplitLine === 4 ? 'selected' : '',
17369
17378
  on: {
17370
17379
  "click": function click($event) {
@@ -17373,7 +17382,7 @@ var render = function render() {
17373
17382
  }
17374
17383
  }, [_c('span', {
17375
17384
  staticClass: "line right-line top-line top-right-two-line"
17376
- }), _c('span', [_vm._v("TopRightTwoLine")])]), _c('li', {
17385
+ })]), _c('li', {
17377
17386
  class: _vm.obliqueSplitLine === 5 ? 'selected' : '',
17378
17387
  on: {
17379
17388
  "click": function click($event) {
@@ -17382,7 +17391,7 @@ var render = function render() {
17382
17391
  }
17383
17392
  }, [_c('span', {
17384
17393
  staticClass: "line left-line bottom-line bottom-left-one-line"
17385
- }), _c('span', [_vm._v("BottomLeftOneLine")])]), _c('li', {
17394
+ })]), _c('li', {
17386
17395
  class: _vm.obliqueSplitLine === 6 ? 'selected' : '',
17387
17396
  on: {
17388
17397
  "click": function click($event) {
@@ -17391,7 +17400,7 @@ var render = function render() {
17391
17400
  }
17392
17401
  }, [_c('span', {
17393
17402
  staticClass: "line left-line bottom-line bottom-left-two-line"
17394
- }), _c('span', [_vm._v("BottomLeftTwoLine")])]), _c('li', {
17403
+ })]), _c('li', {
17395
17404
  class: _vm.obliqueSplitLine === 7 ? 'selected' : '',
17396
17405
  on: {
17397
17406
  "click": function click($event) {
@@ -17400,7 +17409,7 @@ var render = function render() {
17400
17409
  }
17401
17410
  }, [_c('span', {
17402
17411
  staticClass: "line right-line bottom-line bottom-right-one-line"
17403
- }), _c('span', [_vm._v("BottomRightOneLine")])]), _c('li', {
17412
+ })]), _c('li', {
17404
17413
  class: _vm.obliqueSplitLine === 8 ? 'selected' : '',
17405
17414
  on: {
17406
17415
  "click": function click($event) {
@@ -17409,7 +17418,16 @@ var render = function render() {
17409
17418
  }
17410
17419
  }, [_c('span', {
17411
17420
  staticClass: "line right-line bottom-line bottom-right-two-line"
17412
- }), _c('span', [_vm._v("BottomRightTwoLine")])])])])], 1)], 1), _c('footer', {
17421
+ })]), _c('li', {
17422
+ class: _vm.obliqueSplitLine === 9 ? 'selected' : '',
17423
+ on: {
17424
+ "click": function click($event) {
17425
+ return _vm.setObliqueSplitLine(9);
17426
+ }
17427
+ }
17428
+ }, [_c('span', {
17429
+ staticClass: "line left-right-line left-right-one-line"
17430
+ })])])])], 1)], 1), _c('footer', {
17413
17431
  staticClass: "ho-modal-footer"
17414
17432
  }, [_c('a-button', {
17415
17433
  attrs: {
@@ -17429,7 +17447,7 @@ var render = function render() {
17429
17447
  };
17430
17448
  var staticRenderFns = [];
17431
17449
 
17432
- ;// CONCATENATED MODULE: ./src/components/controls/table/TableCellProperty.vue?vue&type=template&id=488dae95&
17450
+ ;// CONCATENATED MODULE: ./src/components/controls/table/TableCellProperty.vue?vue&type=template&id=59ad6eba&
17433
17451
 
17434
17452
  // EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/slicedToArray.js + 3 modules
17435
17453
  var slicedToArray = __webpack_require__(27222);
@@ -17827,10 +17845,10 @@ var columns = [{
17827
17845
  });
17828
17846
  ;// CONCATENATED MODULE: ./src/components/controls/table/TableCellProperty.vue?vue&type=script&lang=js&
17829
17847
  /* harmony default export */ var table_TableCellPropertyvue_type_script_lang_js_ = (TableCellPropertyvue_type_script_lang_js_);
17830
- ;// 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=488dae95&prod&lang=scss&
17848
+ ;// 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=59ad6eba&prod&lang=scss&
17831
17849
  // extracted by mini-css-extract-plugin
17832
17850
 
17833
- ;// CONCATENATED MODULE: ./src/components/controls/table/TableCellProperty.vue?vue&type=style&index=0&id=488dae95&prod&lang=scss&
17851
+ ;// CONCATENATED MODULE: ./src/components/controls/table/TableCellProperty.vue?vue&type=style&index=0&id=59ad6eba&prod&lang=scss&
17834
17852
 
17835
17853
  // EXTERNAL MODULE: ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
17836
17854
  var componentNormalizer = __webpack_require__(70713);
@@ -20847,7 +20865,7 @@ var component = (0,componentNormalizer/* default */.Z)(
20847
20865
 
20848
20866
  /***/ }),
20849
20867
 
20850
- /***/ 49373:
20868
+ /***/ 92675:
20851
20869
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
20852
20870
 
20853
20871
  "use strict";
@@ -20861,7 +20879,7 @@ __webpack_require__.d(__webpack_exports__, {
20861
20879
 
20862
20880
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.function.name.js
20863
20881
  var es_function_name = __webpack_require__(68309);
20864
- ;// 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/textDialog/TextDialog.vue?vue&type=template&id=ad488cea&
20882
+ ;// 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/textDialog/TextDialog.vue?vue&type=template&id=75c57bb1&
20865
20883
 
20866
20884
  var render = function render() {
20867
20885
  var _vm = this,
@@ -21155,40 +21173,6 @@ var render = function render() {
21155
21173
  staticClass: "control-item"
21156
21174
  }, [_c('span', {
21157
21175
  staticClass: "label"
21158
- }, [_vm._v("内容只读状态")]), _c('a-select', {
21159
- staticStyle: {
21160
- "text-align": "left"
21161
- },
21162
- attrs: {
21163
- "getPopupContainer": function getPopupContainer(triggerNode) {
21164
- return triggerNode.parentNode;
21165
- },
21166
- "placeholder": "请选择",
21167
- "size": "small"
21168
- },
21169
- model: {
21170
- value: _vm.textParam.readOnlyStatus,
21171
- callback: function callback($$v) {
21172
- _vm.$set(_vm.textParam, "readOnlyStatus", $$v);
21173
- },
21174
- expression: "textParam.readOnlyStatus"
21175
- }
21176
- }, [_c('a-select-option', {
21177
- attrs: {
21178
- "value": 2
21179
- }
21180
- }, [_vm._v("继承父元素")]), _c('a-select-option', {
21181
- attrs: {
21182
- "value": 0
21183
- }
21184
- }, [_vm._v("是")]), _c('a-select-option', {
21185
- attrs: {
21186
- "value": 1
21187
- }
21188
- }, [_vm._v("否")])], 1)], 1), _c('li', {
21189
- staticClass: "control-item"
21190
- }, [_c('span', {
21191
- staticClass: "label"
21192
21176
  }, [_vm._v("固定宽度")]), _c('a-input-number', {
21193
21177
  staticStyle: {
21194
21178
  "width": "120px",
@@ -21375,7 +21359,7 @@ var render = function render() {
21375
21359
  };
21376
21360
  var staticRenderFns = [];
21377
21361
 
21378
- ;// CONCATENATED MODULE: ./src/components/controls/textDialog/TextDialog.vue?vue&type=template&id=ad488cea&
21362
+ ;// CONCATENATED MODULE: ./src/components/controls/textDialog/TextDialog.vue?vue&type=template&id=75c57bb1&
21379
21363
 
21380
21364
  // EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/toConsumableArray.js + 3 modules
21381
21365
  var toConsumableArray = __webpack_require__(61748);
@@ -21669,10 +21653,10 @@ var VerifyTip = __webpack_require__(63210);
21669
21653
  });
21670
21654
  ;// CONCATENATED MODULE: ./src/components/controls/textDialog/TextDialog.vue?vue&type=script&lang=js&
21671
21655
  /* harmony default export */ var textDialog_TextDialogvue_type_script_lang_js_ = (TextDialogvue_type_script_lang_js_);
21672
- ;// 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/textDialog/TextDialog.vue?vue&type=style&index=0&id=ad488cea&prod&lang=scss&
21656
+ ;// 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/textDialog/TextDialog.vue?vue&type=style&index=0&id=75c57bb1&prod&lang=scss&
21673
21657
  // extracted by mini-css-extract-plugin
21674
21658
 
21675
- ;// CONCATENATED MODULE: ./src/components/controls/textDialog/TextDialog.vue?vue&type=style&index=0&id=ad488cea&prod&lang=scss&
21659
+ ;// CONCATENATED MODULE: ./src/components/controls/textDialog/TextDialog.vue?vue&type=style&index=0&id=75c57bb1&prod&lang=scss&
21676
21660
 
21677
21661
  // EXTERNAL MODULE: ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
21678
21662
  var componentNormalizer = __webpack_require__(70713);
@@ -41006,7 +40990,9 @@ var DocController = /*#__PURE__*/function () {
41006
40990
  */
41007
40991
  }, {
41008
40992
  key: "insertBarcode",
41009
- value: function insertBarcode(operType, curDomRange, id, textContent, isDisplayText, imagePath, width, height, bandDataSource, name, innerIdentifier) {
40993
+ value: function insertBarcode(operType, curDomRange, id, textContent, isDisplayText, imagePath, width, height,
40994
+ //bandDataSource: string,
40995
+ name, innerIdentifier) {
41010
40996
  var domRange = curDomRange.normalize();
41011
40997
  var startPath = domRange.endPath;
41012
40998
  var hoEditorFactory = _HOEditorFactorys__WEBPACK_IMPORTED_MODULE_76__/* .HOEditorFactorys.instance */ .b.instance().getFactory(this._hoEditorFactoryID);
@@ -47172,7 +47158,7 @@ var PageProperty = /*#__PURE__*/function () {
47172
47158
  /*
47173
47159
  * @Author: your name
47174
47160
  * @Date: 2020-12-24 16:01:16
47175
- * @LastEditTime: 2023-07-07 11:45:18
47161
+ * @LastEditTime: 2023-07-13 10:31:51
47176
47162
  * @LastEditors: liyanan 2441631434@qq.com
47177
47163
  * @Description: In User Settings Edit
47178
47164
  * @FilePath: \hoeditor-web\src\editor\dom\TableProperty.ts
@@ -47922,6 +47908,7 @@ var ObliqueSplitLine;
47922
47908
  ObliqueSplitLine[ObliqueSplitLine["BottomLeftTwoLine"] = 6] = "BottomLeftTwoLine";
47923
47909
  ObliqueSplitLine[ObliqueSplitLine["BottomRightOneLine"] = 7] = "BottomRightOneLine";
47924
47910
  ObliqueSplitLine[ObliqueSplitLine["BottomRightTwoLine"] = 8] = "BottomRightTwoLine";
47911
+ ObliqueSplitLine[ObliqueSplitLine["TwoDiagonal"] = 9] = "TwoDiagonal";
47925
47912
  })(ObliqueSplitLine || (ObliqueSplitLine = {}));
47926
47913
  var DiagonalType;
47927
47914
  (function (DiagonalType) {
@@ -65238,7 +65225,7 @@ var TableNode = /*#__PURE__*/function (_RectNode) {
65238
65225
  /*
65239
65226
  * @Author: your name
65240
65227
  * @Date: 2020-11-03 15:17:54
65241
- * @LastEditTime: 2023-07-12 09:59:55
65228
+ * @LastEditTime: 2023-07-13 09:59:01
65242
65229
  * @LastEditors: liyanan 2441631434@qq.com
65243
65230
  * @Description: In User Settings Edit
65244
65231
  * @FilePath: \hoeditor-web\src\editor\dom\treeNode\TextInputFieldNode.ts
@@ -65316,7 +65303,7 @@ var DownListProperty = /*#__PURE__*/function () {
65316
65303
  // 列表选项互斥
65317
65304
  //private _dynamicLoadList!: boolean;//动态加载列表
65318
65305
  // private _listContent!: string;//列表内容
65319
- //来源
65306
+ //private _source!: string; //来源
65320
65307
  //列表项目
65321
65308
  //private _specialFormat!: SpecialFormat;//特殊格式
65322
65309
  function DownListProperty() {
@@ -65325,7 +65312,6 @@ var DownListProperty = /*#__PURE__*/function () {
65325
65312
  (0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_58__/* ["default"] */ .Z)(this, "_isMultiLinesDisplay", void 0);
65326
65313
  (0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_58__/* ["default"] */ .Z)(this, "_splitCharacter", void 0);
65327
65314
  (0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_58__/* ["default"] */ .Z)(this, "_mutexSelect", void 0);
65328
- (0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_58__/* ["default"] */ .Z)(this, "_source", void 0);
65329
65315
  (0,D_project_go_test_createJS_hoeditor_web_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_58__/* ["default"] */ .Z)(this, "_listItems", void 0);
65330
65316
  DownListProperty.setDefaultImportStyle(this);
65331
65317
  }
@@ -65385,16 +65371,14 @@ var DownListProperty = /*#__PURE__*/function () {
65385
65371
  // this._listContent = value;
65386
65372
  // }
65387
65373
  // }
65388
- }, {
65389
- key: "source",
65390
- get: function get() {
65391
- return this._source;
65392
- },
65393
- set: function set(value) {
65394
- if (this._source !== value) {
65395
- this._source = value;
65396
- }
65397
- }
65374
+ // get source(): string {
65375
+ // return this._source;
65376
+ // }
65377
+ // set source(value: string) {
65378
+ // if (this._source !== value) {
65379
+ // this._source = value;
65380
+ // }
65381
+ // }
65398
65382
  }, {
65399
65383
  key: "listItems",
65400
65384
  get: function get() {
@@ -65414,7 +65398,7 @@ var DownListProperty = /*#__PURE__*/function () {
65414
65398
  ret._splitCharacter = '';
65415
65399
  //ret._dynamicLoadList = false;
65416
65400
  //ret._listContent = "";
65417
- ret._source = '';
65401
+ //ret._source = '';
65418
65402
  ret._listItems = '';
65419
65403
  ret._mutexSelect = false;
65420
65404
  //ret._specialFormat = SpecialFormat.none;
@@ -67295,19 +67279,19 @@ var TextInputFieldNode = /*#__PURE__*/function (_BaseCombineNode) {
67295
67279
  }
67296
67280
  }
67297
67281
  }
67298
- if (hoEditorFactory.drawTree.paintStatus === _editor_draw_drawTree_DrawTree__WEBPACK_IMPORTED_MODULE_28__/* .PaintState.psDesign */ .Dh.psDesign) {
67299
- var sChildNode = temp.childNodes[0];
67300
- var eChildNode = temp.childNodes[temp.childNodes.length - 1];
67301
- if (!(sChildNode instanceof _MarkNode__WEBPACK_IMPORTED_MODULE_45__/* .MarkNode */ .j) || sChildNode instanceof _MarkNode__WEBPACK_IMPORTED_MODULE_45__/* .MarkNode */ .j && sChildNode.MarkNodeType !== _MarkNode__WEBPACK_IMPORTED_MODULE_45__/* .MarkNodeType.mtStart */ .q.mtStart) {
67302
- throw new Error('经检测,病历元素“' + temp.name + '”的模板格式有问题,无法正常加载,请联系工程师进行处理。');
67303
- }
67304
- if (!(eChildNode instanceof _MarkNode__WEBPACK_IMPORTED_MODULE_45__/* .MarkNode */ .j) || eChildNode instanceof _MarkNode__WEBPACK_IMPORTED_MODULE_45__/* .MarkNode */ .j && eChildNode.MarkNodeType !== _MarkNode__WEBPACK_IMPORTED_MODULE_45__/* .MarkNodeType.mtEnd */ .q.mtEnd) {
67305
- throw new Error('经检测,病历元素“' + temp.name + '”的模板格式有问题,无法正常加载,请联系工程师进行处理。');
67306
- }
67307
- if (temp.childNodes.length > 3 && temp.childNodes[1] instanceof _MarkNode__WEBPACK_IMPORTED_MODULE_45__/* .MarkNode */ .j) {
67308
- temp.childNodes.splice(1, 1);
67309
- }
67282
+ //if (hoEditorFactory.drawTree.paintStatus === PaintState.psDesign) {
67283
+ var sChildNode = temp.childNodes[0];
67284
+ var eChildNode = temp.childNodes[temp.childNodes.length - 1];
67285
+ if (!(sChildNode instanceof _MarkNode__WEBPACK_IMPORTED_MODULE_45__/* .MarkNode */ .j) || sChildNode instanceof _MarkNode__WEBPACK_IMPORTED_MODULE_45__/* .MarkNode */ .j && sChildNode.MarkNodeType !== _MarkNode__WEBPACK_IMPORTED_MODULE_45__/* .MarkNodeType.mtStart */ .q.mtStart) {
67286
+ throw new Error('经检测,病历元素“' + temp.name + '”的模板格式有问题,无法正常加载,请联系工程师进行处理。');
67310
67287
  }
67288
+ if (!(eChildNode instanceof _MarkNode__WEBPACK_IMPORTED_MODULE_45__/* .MarkNode */ .j) || eChildNode instanceof _MarkNode__WEBPACK_IMPORTED_MODULE_45__/* .MarkNode */ .j && eChildNode.MarkNodeType !== _MarkNode__WEBPACK_IMPORTED_MODULE_45__/* .MarkNodeType.mtEnd */ .q.mtEnd) {
67289
+ throw new Error('经检测,病历元素“' + temp.name + '”的模板格式有问题,无法正常加载,请联系工程师进行处理。');
67290
+ }
67291
+ if (temp.childNodes.length > 3 && temp.childNodes[1] instanceof _MarkNode__WEBPACK_IMPORTED_MODULE_45__/* .MarkNode */ .j) {
67292
+ temp.childNodes.splice(1, 1);
67293
+ }
67294
+ //}
67311
67295
  if (temp.childNodes[1] instanceof _TableFormula__WEBPACK_IMPORTED_MODULE_53__/* .TableFormula */ .N) {
67312
67296
  return temp;
67313
67297
  }
@@ -74853,7 +74837,7 @@ var DrawPageCell = /*#__PURE__*/function (_DrawArea) {
74853
74837
  // this._crossShape.graphics.clear();
74854
74838
  // this._crossShape.x = 0;
74855
74839
  // this._crossShape.y = 0;
74856
- this._backImg.graphics.setStrokeStyle(1);
74840
+ this._backImg.graphics.clear().setStrokeStyle(1);
74857
74841
  this._backImg.graphics.beginStroke("#000000");
74858
74842
  /*表格边框与边编码,角的编码是0、1、2、3 边的编码是ABCD
74859
74843
  * _____A______*
@@ -74913,7 +74897,12 @@ var DrawPageCell = /*#__PURE__*/function (_DrawArea) {
74913
74897
  this._backImg.graphics.moveTo(0, this._dHeight);
74914
74898
  this._backImg.graphics.lineTo(this._dWidth, this._dHeight / 2);
74915
74899
  break;
74900
+ case TableProperty/* ObliqueSplitLine.TwoDiagonal */.lH.TwoDiagonal:
74901
+ this._backImg.graphics.moveTo(0, 0).lineTo(this.dWidth, this.dHeight);
74902
+ this._backImg.graphics.moveTo(0, this.dHeight).lineTo(this.dWidth, 0);
74903
+ break;
74916
74904
  }
74905
+ this._backImg.graphics.endStroke();
74917
74906
  }
74918
74907
  // if (this._crossShape && !this.contains(this._crossShape)) {
74919
74908
  // this.addChildAt(this._crossShape, 1);
@@ -77901,7 +77890,11 @@ var DrawSignNode = /*#__PURE__*/function (_DrawCombineNode) {
77901
77890
  _this._drawTitle = new createjs.Text(_this.title + _this._connectChar, _this._textStyle, '#000000');
77902
77891
  }
77903
77892
  if (_this._signTime != "") {
77904
- _this._drawDate = new createjs.Text(_this.signTime.substring(0, 16), _this._textStyle, '#000000');
77893
+ if (_this.attribute === 4) {
77894
+ _this._drawDate = new createjs.Text(_this.signTime, _this._textStyle, '#000000');
77895
+ } else {
77896
+ _this._drawDate = new createjs.Text(_this.signTime.substring(0, 16), _this._textStyle, '#000000');
77897
+ }
77905
77898
  }
77906
77899
  //this._textStyle = cbStyle.;
77907
77900
  var hoeditfactory = _HOEditorFactorys__WEBPACK_IMPORTED_MODULE_10__/* .HOEditorFactorys.instance */ .b.instance().getFactory(hoeditfactoryID);
@@ -78494,22 +78487,20 @@ var DrawSignNode = /*#__PURE__*/function (_DrawCombineNode) {
78494
78487
  }
78495
78488
  hoEditorFactory.loadImageCount--;
78496
78489
  };
78497
- // if(this.imgSrc.includes("data:image/")) {
78498
- // handleOrientation();
78499
- // } else {
78500
- // console.log("--------------++++++++++++++++======================")
78501
- if (!_this3._exif) {
78502
- _this3._exif = __webpack_require__(29794);
78503
- }
78504
- if (_this3._exif) {
78505
- _this3._exif.getData(image, function (exifdata) {
78506
- image.exifdata = exifdata;
78507
- handleOrientation();
78508
- });
78490
+ if (_this3.imgSrc.includes("data:image/") || _this3.imgSrc.includes(".png")) {
78491
+ handleOrientation();
78492
+ } else {
78493
+ if (!_this3._exif) {
78494
+ _this3._exif = __webpack_require__(29794);
78495
+ }
78496
+ if (_this3._exif) {
78497
+ _this3._exif.getData(image, function (exifdata) {
78498
+ image.exifdata = exifdata;
78499
+ handleOrientation();
78500
+ });
78501
+ }
78509
78502
  }
78510
- // }
78511
78503
  };
78512
-
78513
78504
  image.onerror = function () {
78514
78505
  return hoEditorFactory.loadImageCount--;
78515
78506
  };
@@ -90979,20 +90970,26 @@ var TableInsertUndoUnit = /*#__PURE__*/function (_NodeInsertUndoUnit) {
90979
90970
  key: "undo",
90980
90971
  value: function undo() {
90981
90972
  var hoEditorFactory = _HOEditorFactorys__WEBPACK_IMPORTED_MODULE_10__/* .HOEditorFactorys.instance */ .b.instance().getFactory(this._hoEditorFactoryID);
90973
+ if (this.prevPara !== null) {
90974
+ var ppParaNode = this.prevPara.previousLeaf();
90975
+ if (ppParaNode) {
90976
+ this.strBeforePath = hoEditorFactory.docTree.getNodeLastPath(ppParaNode);
90977
+ }
90978
+ }
90982
90979
  var changeEvent = new _editor_events_NodeChangeEvent__WEBPACK_IMPORTED_MODULE_8__/* .NodeChangeEvent */ .G(this._hoEditorFactoryID, _editor_dom_DocTree__WEBPACK_IMPORTED_MODULE_4__/* .DocAction.daUndoInsert */ .gk.daUndoInsert, this.strBeforePath, "");
90983
90980
  changeEvent.oldEndPath = this.strAfterPath;
90984
90981
  changeEvent.oldDrawTreeLines = new _editor_draw_SelectRange__WEBPACK_IMPORTED_MODULE_7__/* .SelectRange */ .E(this._hoEditorFactoryID).getRangeDrawTreeLines(this.strBeforePath, this.strAfterPath);
90985
90982
  changeEvent.afterChangePath = this.strBeforePath;
90986
90983
  hoEditorFactory.docTree.deleteNode(this.afterPara);
90987
90984
  hoEditorFactory.docTree.deleteNode(this.node);
90988
- //hoEditorFactory.docTree.curDomRange.setSamePath(
90989
- // changeEvent.afterChangePath
90990
- // );
90991
90985
  if (this.prevPara) {
90992
90986
  hoEditorFactory.docTree.deleteNode(this.prevPara);
90993
90987
  }
90988
+ changeEvent.repaintImmediate = true;
90994
90989
  hoEditorFactory.docTree.change(changeEvent);
90995
- //hoEditorFactory.docTree.change(changeEvent);
90990
+ while (!this._undo.atBottom()) {
90991
+ this._undo.undo();
90992
+ }
90996
90993
  var cgEvent = new _editor_events_SelectionChangeEvent__WEBPACK_IMPORTED_MODULE_9__/* .SelectionChangeEvent */ .r(hoEditorFactory.docTree.curDomRange, new _editor_dom_DomRange__WEBPACK_IMPORTED_MODULE_5__/* .DomRange */ .a(this._hoEditorFactoryID, this.strBeforePath, this.strBeforePath));
90997
90994
  hoEditorFactory.docTree.selectChange(cgEvent);
90998
90995
  hoEditorFactory.docTree.curDomRange.setSamePath(this.strBeforePath);
@@ -91012,6 +91009,9 @@ var TableInsertUndoUnit = /*#__PURE__*/function (_NodeInsertUndoUnit) {
91012
91009
  var paraNode;
91013
91010
  if (np.node instanceof _editor_dom_treeNode_ParagraphNode__WEBPACK_IMPORTED_MODULE_6__/* .ParagraphNode */ .C) {
91014
91011
  paraNode = np.node;
91012
+ if (path !== paraNode.rootPath + "/0") {
91013
+ this.prevPara = paraNode;
91014
+ }
91015
91015
  } else {
91016
91016
  paraNode = new _editor_dom_treeNode_ParagraphNode__WEBPACK_IMPORTED_MODULE_6__/* .ParagraphNode */ .C(this._hoEditorFactoryID, np.roots, this._pnode, _HOEditorFactorys__WEBPACK_IMPORTED_MODULE_10__/* .HOEditorFactorys.instance */ .b.instance().getFactory(this._hoEditorFactoryID).docTree.curParaNo);
91017
91017
  // this._undo.begin();
@@ -199551,19 +199551,19 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
199551
199551
 
199552
199552
  var map = {
199553
199553
  "./ControlModal.vue": 77004,
199554
- "./barCode/BarCodes.vue": 2062,
199554
+ "./barCode/BarCodes.vue": 75336,
199555
199555
  "./colorPicker/HoColorPicker.vue": 91351,
199556
199556
  "./colorPicker/HoColorPickers.vue": 84214,
199557
199557
  "./commentDialog/CommentDialog.vue": 95513,
199558
199558
  "./customAttributes/CustomAttributes.vue": 78869,
199559
199559
  "./dataSource/DataSource.vue": 9238,
199560
- "./dateDialog/DateDialog.vue": 17237,
199560
+ "./dateDialog/DateDialog.vue": 49145,
199561
199561
  "./delimiter/Delimiter.vue": 31861,
199562
199562
  "./expressionForm/ExpressionForm.vue": 44603,
199563
199563
  "./findReplace/FindReplace.vue": 25918,
199564
199564
  "./gestation/Gestation.vue": 6251,
199565
199565
  "./hoprint/HoPrint.vue": 62321,
199566
- "./listsource/ListSource.vue": 47214,
199566
+ "./listsource/ListSource.vue": 50921,
199567
199567
  "./localHistory/LocalHistory.vue": 89206,
199568
199568
  "./pageInfoes/PageInfoes.vue": 17481,
199569
199569
  "./paragraph/ParagraphDialog.vue": 54949,
@@ -199578,14 +199578,14 @@ var map = {
199578
199578
  "./selectDialog/SelectDialog.vue": 59075,
199579
199579
  "./sign/Sign.vue": 28715,
199580
199580
  "./table/TableCellPoper.vue": 61917,
199581
- "./table/TableCellProperty.vue": 61973,
199581
+ "./table/TableCellProperty.vue": 47158,
199582
199582
  "./table/TableColProperty.vue": 2116,
199583
199583
  "./table/TableForm.vue": 19064,
199584
199584
  "./table/TableFormTree.vue": 39703,
199585
199585
  "./table/TableFormula.vue": 66591,
199586
199586
  "./table/TableProperty.vue": 47130,
199587
199587
  "./table/TableRowProperty.vue": 56819,
199588
- "./textDialog/TextDialog.vue": 49373,
199588
+ "./textDialog/TextDialog.vue": 92675,
199589
199589
  "./textDialog/TextToLabelDialog.vue": 35791,
199590
199590
  "./textDialog/VerifyTip.vue": 63210,
199591
199591
  "./upload/CanvasImageDialog.vue": 94116,
@@ -238940,7 +238940,7 @@ var ParagraphNode = __webpack_require__(67945);
238940
238940
  // EXTERNAL MODULE: ./src/editor/dom/treeNode/MarkNode.ts
238941
238941
  var MarkNode = __webpack_require__(57727);
238942
238942
  ;// CONCATENATED MODULE: ./src/components/version.ts
238943
- /* harmony default export */ var version = ('3.0.83');
238943
+ /* harmony default export */ var version = ('3.0.84');
238944
238944
  // EXTERNAL MODULE: ./src/components/controls/poperTipText/PoperTipText.vue + 5 modules
238945
238945
  var PoperTipText = __webpack_require__(36081);
238946
238946
  ;// CONCATENATED MODULE: ./src/components/controls/poperTipText/index.ts
@@ -247733,14 +247733,16 @@ var VueController = /*#__PURE__*/function () {
247733
247733
  */
247734
247734
  }, {
247735
247735
  key: "insertBarcode",
247736
- value: function insertBarcode(operType, id, textContent, isDisplayText, imagePath, width, height, bandDataSource, name, innerIdentifier) {
247736
+ value: function insertBarcode(operType, id, textContent, isDisplayText, imagePath, width, height,
247737
+ //bandDataSource: string,
247738
+ name, innerIdentifier) {
247737
247739
  var hoEditorFactory = HOEditorFactorys/* HOEditorFactorys.instance */.b.instance().getFactory(this._hoEditorFactoryID);
247738
247740
  var _curDomRange = hoEditorFactory.docTree.curDomRange; //获取当前选中区域
247739
247741
  var startPath = _curDomRange.normalize().startPath;
247740
247742
  var endPath = _curDomRange.normalize().endPath;
247741
247743
  var changingEvent = new NodeChangingEvent/* NodeChangingEvent */.Q(DocTree/* DocAction.daInsert */.gk.daInsert, startPath, endPath, NodeChangingEvent/* OperType.insertBarcode */.y.insertBarcode);
247742
247744
  if (hoEditorFactory.docTree.changing(changingEvent)) {
247743
- hoEditorFactory.docController.insertBarcode('add', _curDomRange, id, textContent, isDisplayText, imagePath, width, height, bandDataSource, name, innerIdentifier);
247745
+ hoEditorFactory.docController.insertBarcode('add', _curDomRange, id, textContent, isDisplayText, imagePath, width, height, name, innerIdentifier);
247744
247746
  }
247745
247747
  }
247746
247748
  /**
@@ -247754,14 +247756,14 @@ var VueController = /*#__PURE__*/function () {
247754
247756
  */
247755
247757
  }, {
247756
247758
  key: "updateBarcode",
247757
- value: function updateBarcode(id, textContent, isDisplayText, imagePath, width, height, bandDataSource, name, innerIdentifier) {
247759
+ value: function updateBarcode(id, textContent, isDisplayText, imagePath, width, height, name, innerIdentifier) {
247758
247760
  var hoEditorFactory = HOEditorFactorys/* HOEditorFactorys.instance */.b.instance().getFactory(this._hoEditorFactoryID);
247759
247761
  var _curDomRange = hoEditorFactory.docTree.curDomRange; //获取当前选中区域
247760
247762
  var startPath = _curDomRange.normalize().startPath;
247761
247763
  var endPath = _curDomRange.normalize().endPath;
247762
247764
  var changingEvent = new NodeChangingEvent/* NodeChangingEvent */.Q(DocTree/* DocAction.daInsert */.gk.daInsert, startPath, endPath, NodeChangingEvent/* OperType.updateBarcode */.y.updateBarcode);
247763
247765
  if (hoEditorFactory.docTree.changing(changingEvent)) {
247764
- HOEditorFactorys/* HOEditorFactorys.instance */.b.instance().getFactory(this._hoEditorFactoryID).docController.insertBarcode('update', _curDomRange, id, textContent, isDisplayText, imagePath, width, height, bandDataSource, name, innerIdentifier);
247766
+ HOEditorFactorys/* HOEditorFactorys.instance */.b.instance().getFactory(this._hoEditorFactoryID).docController.insertBarcode('update', _curDomRange, id, textContent, isDisplayText, imagePath, width, height, name, innerIdentifier);
247765
247767
  }
247766
247768
  }
247767
247769
  /**
@@ -255324,7 +255326,7 @@ var ElementController = /*#__PURE__*/function () {
255324
255326
  /*
255325
255327
  * @Author: your name
255326
255328
  * @Date: 2021-07-31 10:10:30
255327
- * @LastEditTime: 2023-03-09 18:32:32
255329
+ * @LastEditTime: 2023-07-13 10:04:37
255328
255330
  * @LastEditors: liyanan 2441631434@qq.com
255329
255331
  * @Description: In User Settings Edit
255330
255332
  * @FilePath: \hoeditor-web\src\editor\externalCall\NodeController.ts
@@ -255637,9 +255639,9 @@ var NodeController = /*#__PURE__*/function () {
255637
255639
  */
255638
255640
  }, {
255639
255641
  key: "insertBarcode",
255640
- value: function insertBarcode(id, textContent, isDisplayText, imagePath, width, height, bandDataSource, name, innerIdentifier) {
255642
+ value: function insertBarcode(id, textContent, isDisplayText, imagePath, width, height, name, innerIdentifier) {
255641
255643
  var hoEditorFactory = HOEditorFactorys/* HOEditorFactorys.instance */.b.instance().getFactory(this._hoEditorFactoryID);
255642
- hoEditorFactory.vueController.insertBarcode('add', id, textContent, isDisplayText, imagePath, width, height, bandDataSource, name, innerIdentifier);
255644
+ hoEditorFactory.vueController.insertBarcode('add', id, textContent, isDisplayText, imagePath, width, height, name, innerIdentifier);
255643
255645
  }
255644
255646
  /**
255645
255647
  * 修改条形码
@@ -255652,9 +255654,9 @@ var NodeController = /*#__PURE__*/function () {
255652
255654
  */
255653
255655
  }, {
255654
255656
  key: "updateBarcode",
255655
- value: function updateBarcode(id, textContent, isDisplayText, imagePath, width, height, bandDataSource, name, innerIdentifier) {
255657
+ value: function updateBarcode(id, textContent, isDisplayText, imagePath, width, height, name, innerIdentifier) {
255656
255658
  var hoEditorFactory = HOEditorFactorys/* HOEditorFactorys.instance */.b.instance().getFactory(this._hoEditorFactoryID);
255657
- hoEditorFactory.vueController.updateBarcode(id, textContent, isDisplayText, imagePath, width, height, bandDataSource, name, innerIdentifier);
255659
+ hoEditorFactory.vueController.updateBarcode(id, textContent, isDisplayText, imagePath, width, height, name, innerIdentifier);
255658
255660
  }
255659
255661
  /**
255660
255662
  * 插入二维码