ocpview-plus 1.3.8 → 1.3.9

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.
@@ -453,7 +453,7 @@ common.initEview = function(ViewUI2) {
453
453
  common.initAnchor(ViewUI2.Anchor);
454
454
  };
455
455
  const name = "ocpview-plus";
456
- const version$2 = "1.3.7";
456
+ const version$2 = "1.3.8";
457
457
  const title = "ocpviewPlus";
458
458
  const description = "A high quality Service UI components Library with Vue.js";
459
459
  const homepage = "";
@@ -33838,6 +33838,305 @@ function _sfc_render$14(_ctx, _cache, $props, $setup, $data, $options) {
33838
33838
  }
33839
33839
  var DetailsBox = /* @__PURE__ */ _export_sfc$1(_sfc_main$1b, [["render", _sfc_render$14]]);
33840
33840
  const _sfc_main$1a = {
33841
+ name: "FormCardBox",
33842
+ extends: _sfc_main$1R,
33843
+ data() {
33844
+ return {
33845
+ myConfig: {
33846
+ hide: true,
33847
+ titleType: 1,
33848
+ editBtnText: "\u7F16\u8F91",
33849
+ saveBtnText: "\u4FDD\u5B58",
33850
+ cancelBtnText: "\u653E\u5F03",
33851
+ showBtn: true,
33852
+ bordered: true,
33853
+ disHover: false,
33854
+ showSubSpecialStyle: false,
33855
+ divStyle: "padding:0 24px"
33856
+ },
33857
+ btnReadOnly: false,
33858
+ showBtn: true,
33859
+ showForm: true,
33860
+ showTitle: true,
33861
+ editFlag: false,
33862
+ saveFlag: false,
33863
+ cancelFlag: false,
33864
+ pStyle: "",
33865
+ iconStyle: ""
33866
+ };
33867
+ },
33868
+ created() {
33869
+ this.init();
33870
+ },
33871
+ computed: {
33872
+ cardClass() {
33873
+ if (this.myConfig.showSubSpecialStyle) {
33874
+ return `efuture-card-head-title-${this.myConfig.titleType} efuture-card-head-title efuture-card-extra-title-${this.myConfig.titleType}`;
33875
+ } else {
33876
+ if (!this.showForm) {
33877
+ return `efuture-card-head-title-${this.myConfig.titleType} efuture-card-head-title-nobottom efuture-card-extra-title-${this.myConfig.titleType}`;
33878
+ } else {
33879
+ return `efuture-card-head-title-${this.myConfig.titleType} efuture-card-extra-title-${this.myConfig.titleType}`;
33880
+ }
33881
+ }
33882
+ },
33883
+ titleClass() {
33884
+ return `efuture-title-font-${this.myConfig.titleType}`;
33885
+ }
33886
+ },
33887
+ methods: {
33888
+ customInit() {
33889
+ if (this.myConfig.hide) {
33890
+ this.pStyle = "cursor:pointer";
33891
+ this.iconStyle = "transform: rotate(90deg)";
33892
+ }
33893
+ if (!this.myConfig.title) {
33894
+ if (this.myConfig.titleType !== 1) {
33895
+ this.showTitle = true;
33896
+ } else {
33897
+ this.showTitle = false;
33898
+ }
33899
+ }
33900
+ if (this.myConfig.readOnly !== void 0) {
33901
+ this.readOnly = this.myConfig.readOnly;
33902
+ }
33903
+ if (this.myConfig.titleType !== 1) {
33904
+ if (this.config.hide === void 0) {
33905
+ this.myConfig.hide = false;
33906
+ }
33907
+ if (this.config.bordered === void 0) {
33908
+ this.myConfig.bordered = false;
33909
+ }
33910
+ if (this.config.disHover === void 0) {
33911
+ this.myConfig.disHover = true;
33912
+ }
33913
+ }
33914
+ this.showBtn = this.myConfig.showBtn;
33915
+ if (this.myConfig.cancelBtn !== void 0) {
33916
+ this.cancelFlag = this.myConfig.cancelBtn;
33917
+ }
33918
+ },
33919
+ setFormReadOnly(value) {
33920
+ this.editFlag = value;
33921
+ if (!this.myConfig.items || this.myConfig.items.length === 0) {
33922
+ return false;
33923
+ }
33924
+ let self2 = this;
33925
+ this.myConfig.items.forEach((el2) => {
33926
+ let name2 = "";
33927
+ if (el2.name) {
33928
+ name2 = el2.name;
33929
+ } else if (el2.sname) {
33930
+ name2 = el2.sname;
33931
+ }
33932
+ if (!value) {
33933
+ if (this.myConfig.cellbeginedit) {
33934
+ let obj = {};
33935
+ obj.name = name2;
33936
+ obj.form = this.$Method.copy(this.form);
33937
+ obj.formObject = self2;
33938
+ let flag = this.myConfig.cellbeginedit(obj);
33939
+ if (flag) {
33940
+ this.setReadOnly(name2, value);
33941
+ } else {
33942
+ this.setReadOnly(name2, !value);
33943
+ }
33944
+ } else {
33945
+ this.setReadOnly(name2, value);
33946
+ }
33947
+ } else {
33948
+ this.setReadOnly(name2, value);
33949
+ }
33950
+ });
33951
+ },
33952
+ editForm() {
33953
+ let flag = true;
33954
+ if (this.myConfig.editObjectBefore) {
33955
+ flag = this.myConfig.editObjectBefore(this.myConfig.name);
33956
+ }
33957
+ if (flag) {
33958
+ this.setFormReadOnly(false);
33959
+ let obj = {};
33960
+ obj.name = "editForm";
33961
+ obj.formname = this.myConfig.name;
33962
+ this.$emit("doAction", obj);
33963
+ }
33964
+ },
33965
+ cancelForm() {
33966
+ this.setData(this.oldForm);
33967
+ this.setFormReadOnly(true);
33968
+ let obj = {};
33969
+ obj.name = "cancelForm";
33970
+ obj.formname = this.myConfig.name;
33971
+ this.$emit("doAction", obj);
33972
+ },
33973
+ saveForm() {
33974
+ this.checkValidate();
33975
+ if (this.errorFlag) {
33976
+ return false;
33977
+ }
33978
+ this.setFormReadOnly(true);
33979
+ let obj = {};
33980
+ obj.name = "saveForm";
33981
+ obj.formname = this.myConfig.name;
33982
+ obj.para = this.getData();
33983
+ this.$emit("doAction", obj);
33984
+ },
33985
+ toggle() {
33986
+ this.showForm = !this.showForm;
33987
+ },
33988
+ setShowForm(value) {
33989
+ this.showForm = value;
33990
+ this.setTitleStyle();
33991
+ },
33992
+ setTitleStyle() {
33993
+ if (this.showForm) {
33994
+ this.iconStyle = "transform: rotate(90deg)";
33995
+ } else {
33996
+ this.iconStyle = "";
33997
+ }
33998
+ },
33999
+ isEdit() {
34000
+ return this.editFlag;
34001
+ },
34002
+ setShowBtn(value) {
34003
+ this.showBtn = value;
34004
+ },
34005
+ setBtnReadOnly(value) {
34006
+ this.btnReadOnly = value;
34007
+ }
34008
+ }
34009
+ };
34010
+ const _hoisted_1$Q = ["textContent"];
34011
+ function _sfc_render$13(_ctx, _cache, $props, $setup, $data, $options) {
34012
+ const _component_Icon = resolveComponent("Icon");
34013
+ const _component_Row = resolveComponent("Row");
34014
+ const _component_Divider = resolveComponent("Divider");
34015
+ const _component_ControlBox = resolveComponent("ControlBox");
34016
+ const _component_FormItem = resolveComponent("FormItem");
34017
+ const _component_Col = resolveComponent("Col");
34018
+ const _component_Form = resolveComponent("Form");
34019
+ const _component_Card = resolveComponent("Card");
34020
+ return openBlock(), createBlock(_component_Card, {
34021
+ bordered: false,
34022
+ padding: 0,
34023
+ "dis-hover": ""
34024
+ }, {
34025
+ default: withCtx(() => [
34026
+ $data.showTitle ? (openBlock(), createElementBlock("p", {
34027
+ key: 0,
34028
+ onClick: _cache[0] || (_cache[0] = (...args) => $options.toggle && $options.toggle(...args)),
34029
+ style: { "cursor": "pointer" }
34030
+ }, [
34031
+ createVNode(_component_Row, {
34032
+ type: "flex",
34033
+ justify: "start",
34034
+ align: "middle",
34035
+ style: { "margin-top": "14px", "margin-bottom": "14px" }
34036
+ }, {
34037
+ default: withCtx(() => [
34038
+ withDirectives(createVNode(_component_Icon, {
34039
+ custom: "iconfont icon-custom-pack",
34040
+ color: "#f3b352",
34041
+ size: "14"
34042
+ }, null, 512), [
34043
+ [vShow, $data.showForm]
34044
+ ]),
34045
+ withDirectives(createVNode(_component_Icon, {
34046
+ color: "#f3b352",
34047
+ custom: "iconfont icon-custom-spread",
34048
+ size: "14"
34049
+ }, null, 512), [
34050
+ [vShow, !$data.showForm]
34051
+ ]),
34052
+ createElementVNode("span", {
34053
+ style: { "margin-left": "10px", "font-size": "14px", "font-weight": "bold" },
34054
+ textContent: toDisplayString($data.myConfig.title)
34055
+ }, null, 8, _hoisted_1$Q)
34056
+ ]),
34057
+ _: 1
34058
+ })
34059
+ ])) : createCommentVNode("", true),
34060
+ $data.showTitle ? (openBlock(), createBlock(_component_Divider, {
34061
+ key: 1,
34062
+ style: { "margin-top": "0px", "margin-bottom": "10px", "margin-left": "24px" }
34063
+ })) : createCommentVNode("", true),
34064
+ withDirectives(createElementVNode("div", {
34065
+ style: normalizeStyle($data.myConfig.divStyle)
34066
+ }, [
34067
+ createVNode(_component_Form, {
34068
+ ref: "form",
34069
+ model: _ctx.form,
34070
+ rules: _ctx.formRules,
34071
+ "label-position": $data.myConfig.labelPosition,
34072
+ "label-width": $data.myConfig.labelWidth,
34073
+ inline: $data.myConfig.inline,
34074
+ id: $data.myConfig.name,
34075
+ onSubmit: _cache[1] || (_cache[1] = withModifiers(() => {
34076
+ }, ["prevent"]))
34077
+ }, {
34078
+ default: withCtx(() => [
34079
+ createVNode(_component_Row, {
34080
+ type: "flex",
34081
+ justify: "start"
34082
+ }, {
34083
+ default: withCtx(() => [
34084
+ (openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.items, (item, index) => {
34085
+ return openBlock(), createElementBlock(Fragment, {
34086
+ key: "form_" + index
34087
+ }, [
34088
+ item.status ? withDirectives((openBlock(), createBlock(_component_Col, {
34089
+ key: 0,
34090
+ span: _ctx.initFormItemCol(index)
34091
+ }, {
34092
+ default: withCtx(() => [
34093
+ item.type !== "Divider" && item.status && item.visible !== false ? (openBlock(), createBlock(_component_FormItem, {
34094
+ key: 0,
34095
+ label: item.label,
34096
+ prop: item.name || item.sname,
34097
+ style: normalizeStyle(_ctx.getFormItemStyle(item)),
34098
+ "show-message": false
34099
+ }, {
34100
+ default: withCtx(() => [
34101
+ createVNode(_component_ControlBox, {
34102
+ ref_for: true,
34103
+ ref: item.name || item.sname,
34104
+ valueData: _ctx.form,
34105
+ config: item,
34106
+ onInputValue: _ctx.input,
34107
+ onDoAction: _ctx.doAction
34108
+ }, null, 8, ["valueData", "config", "onInputValue", "onDoAction"])
34109
+ ]),
34110
+ _: 2
34111
+ }, 1032, ["label", "prop", "style"])) : createCommentVNode("", true),
34112
+ item.type === "Divider" ? (openBlock(), createBlock(_component_ControlBox, {
34113
+ key: 1,
34114
+ ref_for: true,
34115
+ ref: item.dividerName,
34116
+ config: item
34117
+ }, null, 8, ["config"])) : createCommentVNode("", true)
34118
+ ]),
34119
+ _: 2
34120
+ }, 1032, ["span"])), [
34121
+ [vShow, item.visible !== false]
34122
+ ]) : createCommentVNode("", true)
34123
+ ], 64);
34124
+ }), 128))
34125
+ ]),
34126
+ _: 1
34127
+ })
34128
+ ]),
34129
+ _: 1
34130
+ }, 8, ["model", "rules", "label-position", "label-width", "inline", "id"])
34131
+ ], 4), [
34132
+ [vShow, $data.showForm]
34133
+ ])
34134
+ ]),
34135
+ _: 1
34136
+ });
34137
+ }
34138
+ var FormCardBox2 = /* @__PURE__ */ _export_sfc$1(_sfc_main$1a, [["render", _sfc_render$13]]);
34139
+ const _sfc_main$19 = {
33841
34140
  name: "showText",
33842
34141
  data() {
33843
34142
  return {
@@ -33919,9 +34218,9 @@ const _sfc_main$1a = {
33919
34218
  }
33920
34219
  }
33921
34220
  };
33922
- const _hoisted_1$Q = ["innerHTML"];
34221
+ const _hoisted_1$P = ["innerHTML"];
33923
34222
  const _hoisted_2$y = ["innerHTML"];
33924
- function _sfc_render$13(_ctx, _cache, $props, $setup, $data, $options) {
34223
+ function _sfc_render$12(_ctx, _cache, $props, $setup, $data, $options) {
33925
34224
  const _component_Tooltip = resolveComponent("Tooltip");
33926
34225
  return openBlock(), createBlock(_component_Tooltip, {
33927
34226
  transfer: "",
@@ -33944,7 +34243,7 @@ function _sfc_render$13(_ctx, _cache, $props, $setup, $data, $options) {
33944
34243
  style: normalizeStyle("text-align:" + $props.contentAlign),
33945
34244
  onMouseenter: _cache[0] || (_cache[0] = (...args) => $options.handleTooltipIn && $options.handleTooltipIn(...args)),
33946
34245
  onMouseleave: _cache[1] || (_cache[1] = (...args) => $options.handleTooltipOut && $options.handleTooltipOut(...args))
33947
- }, null, 44, _hoisted_1$Q)
34246
+ }, null, 44, _hoisted_1$P)
33948
34247
  ])) : (openBlock(), createElementBlock("span", {
33949
34248
  key: 1,
33950
34249
  ref: "content",
@@ -33958,9 +34257,9 @@ function _sfc_render$13(_ctx, _cache, $props, $setup, $data, $options) {
33958
34257
  _: 1
33959
34258
  }, 8, ["content", "disabled", "max-width"]);
33960
34259
  }
33961
- var ShowText = /* @__PURE__ */ _export_sfc$1(_sfc_main$1a, [["render", _sfc_render$13]]);
34260
+ var ShowText = /* @__PURE__ */ _export_sfc$1(_sfc_main$19, [["render", _sfc_render$12]]);
33962
34261
  var billimport_vue_vue_type_style_index_0_lang = "";
33963
- const _sfc_main$19 = {
34262
+ const _sfc_main$18 = {
33964
34263
  name: "billimport",
33965
34264
  data() {
33966
34265
  return {
@@ -34107,8 +34406,8 @@ const _sfc_main$19 = {
34107
34406
  }
34108
34407
  }
34109
34408
  };
34110
- const _hoisted_1$P = { class: "demo-spin-col" };
34111
- function _sfc_render$12(_ctx, _cache, $props, $setup, $data, $options) {
34409
+ const _hoisted_1$O = { class: "demo-spin-col" };
34410
+ function _sfc_render$11(_ctx, _cache, $props, $setup, $data, $options) {
34112
34411
  const _component_Radio = resolveComponent("Radio");
34113
34412
  const _component_RadioGroup = resolveComponent("RadioGroup");
34114
34413
  const _component_Col = resolveComponent("Col");
@@ -34130,7 +34429,7 @@ function _sfc_render$12(_ctx, _cache, $props, $setup, $data, $options) {
34130
34429
  "footer-hide": true
34131
34430
  }, {
34132
34431
  default: withCtx(() => [
34133
- createElementVNode("div", _hoisted_1$P, [
34432
+ createElementVNode("div", _hoisted_1$O, [
34134
34433
  $data.showType ? (openBlock(), createBlock(_component_Row, {
34135
34434
  key: 0,
34136
34435
  type: "flex",
@@ -34280,9 +34579,9 @@ function _sfc_render$12(_ctx, _cache, $props, $setup, $data, $options) {
34280
34579
  }, 8, ["modelValue", "onOnOk"])) : createCommentVNode("", true)
34281
34580
  ]);
34282
34581
  }
34283
- var BillImport = /* @__PURE__ */ _export_sfc$1(_sfc_main$19, [["render", _sfc_render$12]]);
34582
+ var BillImport = /* @__PURE__ */ _export_sfc$1(_sfc_main$18, [["render", _sfc_render$11]]);
34284
34583
  var basetree_vue_vue_type_style_index_0_lang = "";
34285
- const _sfc_main$18 = {
34584
+ const _sfc_main$17 = {
34286
34585
  mixins: [size],
34287
34586
  name: "baseTree",
34288
34587
  data() {
@@ -35206,9 +35505,9 @@ const _sfc_main$18 = {
35206
35505
  }
35207
35506
  }
35208
35507
  };
35209
- const _sfc_main$17 = {
35508
+ const _sfc_main$16 = {
35210
35509
  name: "treedatabase",
35211
- extends: _sfc_main$18,
35510
+ extends: _sfc_main$17,
35212
35511
  props: {
35213
35512
  isPop: {
35214
35513
  type: Boolean,
@@ -35386,10 +35685,10 @@ const _sfc_main$17 = {
35386
35685
  }
35387
35686
  };
35388
35687
  var treedata_vue_vue_type_style_index_0_lang = "";
35389
- const _sfc_main$16 = {
35688
+ const _sfc_main$15 = {
35390
35689
  name: "treedata",
35391
35690
  components: { CompatTree },
35392
- extends: _sfc_main$17,
35691
+ extends: _sfc_main$16,
35393
35692
  mounted() {
35394
35693
  this.observer = elementResizeDetectorMaker();
35395
35694
  if (this.$refs.condition) {
@@ -35402,8 +35701,8 @@ const _sfc_main$16 = {
35402
35701
  }
35403
35702
  }
35404
35703
  };
35405
- const _hoisted_1$O = { ref: "condition" };
35406
- function _sfc_render$11(_ctx, _cache, $props, $setup, $data, $options) {
35704
+ const _hoisted_1$N = { ref: "condition" };
35705
+ function _sfc_render$10(_ctx, _cache, $props, $setup, $data, $options) {
35407
35706
  const _component_ConditionBox = resolveComponent("ConditionBox");
35408
35707
  const _component_Col = resolveComponent("Col");
35409
35708
  const _component_Row = resolveComponent("Row");
@@ -35411,7 +35710,7 @@ function _sfc_render$11(_ctx, _cache, $props, $setup, $data, $options) {
35411
35710
  const _component_Card = resolveComponent("Card");
35412
35711
  const _component_ViewGrid = resolveComponent("ViewGrid");
35413
35712
  return openBlock(), createElementBlock("div", null, [
35414
- createElementVNode("div", _hoisted_1$O, [
35713
+ createElementVNode("div", _hoisted_1$N, [
35415
35714
  _ctx.showCondition ? (openBlock(), createBlock(_component_Row, { key: 0 }, {
35416
35715
  default: withCtx(() => [
35417
35716
  createVNode(_component_Col, { span: "24" }, {
@@ -35479,9 +35778,9 @@ function _sfc_render$11(_ctx, _cache, $props, $setup, $data, $options) {
35479
35778
  }, 8, ["style"])
35480
35779
  ]);
35481
35780
  }
35482
- var TreeBox = /* @__PURE__ */ _export_sfc$1(_sfc_main$16, [["render", _sfc_render$11]]);
35781
+ var TreeBox = /* @__PURE__ */ _export_sfc$1(_sfc_main$15, [["render", _sfc_render$10]]);
35483
35782
  var eicon_vue_vue_type_style_index_0_lang = "";
35484
- const _sfc_main$15 = {
35783
+ const _sfc_main$14 = {
35485
35784
  name: "eicon",
35486
35785
  props: {
35487
35786
  type: String,
@@ -35494,9 +35793,9 @@ const _sfc_main$15 = {
35494
35793
  }
35495
35794
  }
35496
35795
  };
35497
- const _hoisted_1$N = ["font-size", "color"];
35796
+ const _hoisted_1$M = ["font-size", "color"];
35498
35797
  const _hoisted_2$x = ["xlink:href"];
35499
- function _sfc_render$10(_ctx, _cache, $props, $setup, $data, $options) {
35798
+ function _sfc_render$$(_ctx, _cache, $props, $setup, $data, $options) {
35500
35799
  return openBlock(), createElementBlock("svg", {
35501
35800
  class: "eicon",
35502
35801
  "aria-hidden": "true",
@@ -35507,10 +35806,10 @@ function _sfc_render$10(_ctx, _cache, $props, $setup, $data, $options) {
35507
35806
  createElementVNode("use", {
35508
35807
  "xlink:href": "#icon-" + $props.type
35509
35808
  }, null, 8, _hoisted_2$x)
35510
- ], 8, _hoisted_1$N);
35809
+ ], 8, _hoisted_1$M);
35511
35810
  }
35512
- var Eicon = /* @__PURE__ */ _export_sfc$1(_sfc_main$15, [["render", _sfc_render$10]]);
35513
- const _sfc_main$14 = {
35811
+ var Eicon = /* @__PURE__ */ _export_sfc$1(_sfc_main$14, [["render", _sfc_render$$]]);
35812
+ const _sfc_main$13 = {
35514
35813
  name: "commonicon",
35515
35814
  components: { Eicon },
35516
35815
  props: {
@@ -35552,7 +35851,7 @@ const _sfc_main$14 = {
35552
35851
  }
35553
35852
  }
35554
35853
  };
35555
- function _sfc_render$$(_ctx, _cache, $props, $setup, $data, $options) {
35854
+ function _sfc_render$_(_ctx, _cache, $props, $setup, $data, $options) {
35556
35855
  return openBlock(), createBlock(resolveDynamicComponent($options.iconType), {
35557
35856
  type: $options.iconName,
35558
35857
  color: $options.iconColor,
@@ -35561,8 +35860,8 @@ function _sfc_render$$(_ctx, _cache, $props, $setup, $data, $options) {
35561
35860
  onClick: $options.click
35562
35861
  }, null, 8, ["type", "color", "size", "proConfig", "onClick"]);
35563
35862
  }
35564
- var CommonIcon = /* @__PURE__ */ _export_sfc$1(_sfc_main$14, [["render", _sfc_render$$]]);
35565
- const _sfc_main$13 = {
35863
+ var CommonIcon = /* @__PURE__ */ _export_sfc$1(_sfc_main$13, [["render", _sfc_render$_]]);
35864
+ const _sfc_main$12 = {
35566
35865
  name: "billbox",
35567
35866
  mixins: [size],
35568
35867
  data() {
@@ -35616,9 +35915,9 @@ const _sfc_main$13 = {
35616
35915
  mounted() {
35617
35916
  }
35618
35917
  };
35619
- const _hoisted_1$M = { key: 0 };
35918
+ const _hoisted_1$L = { key: 0 };
35620
35919
  const _hoisted_2$w = ["src", "height"];
35621
- function _sfc_render$_(_ctx, _cache, $props, $setup, $data, $options) {
35920
+ function _sfc_render$Z(_ctx, _cache, $props, $setup, $data, $options) {
35622
35921
  const _component_Modal = resolveComponent("Modal");
35623
35922
  return openBlock(), createBlock(_component_Modal, {
35624
35923
  modelValue: $data.modalflag,
@@ -35629,7 +35928,7 @@ function _sfc_render$_(_ctx, _cache, $props, $setup, $data, $options) {
35629
35928
  onOnVisibleChange: $options.ondestroy
35630
35929
  }, {
35631
35930
  default: withCtx(() => [
35632
- $data.modalflag ? (openBlock(), createElementBlock("div", _hoisted_1$M, [
35931
+ $data.modalflag ? (openBlock(), createElementBlock("div", _hoisted_1$L, [
35633
35932
  createElementVNode("iframe", {
35634
35933
  ref: "bill",
35635
35934
  src: $data.myConfig.url,
@@ -35644,8 +35943,8 @@ function _sfc_render$_(_ctx, _cache, $props, $setup, $data, $options) {
35644
35943
  _: 1
35645
35944
  }, 8, ["modelValue", "width", "title", "onOnVisibleChange"]);
35646
35945
  }
35647
- var BillBox = /* @__PURE__ */ _export_sfc$1(_sfc_main$13, [["render", _sfc_render$_]]);
35648
- const _sfc_main$12 = {
35946
+ var BillBox = /* @__PURE__ */ _export_sfc$1(_sfc_main$12, [["render", _sfc_render$Z]]);
35947
+ const _sfc_main$11 = {
35649
35948
  name: "radiogroupbox",
35650
35949
  extends: _sfc_main$1T,
35651
35950
  data() {
@@ -35707,11 +36006,11 @@ const _sfc_main$12 = {
35707
36006
  }
35708
36007
  }
35709
36008
  };
35710
- const _hoisted_1$L = { style: { "white-space": "nowrap" } };
35711
- function _sfc_render$Z(_ctx, _cache, $props, $setup, $data, $options) {
36009
+ const _hoisted_1$K = { style: { "white-space": "nowrap" } };
36010
+ function _sfc_render$Y(_ctx, _cache, $props, $setup, $data, $options) {
35712
36011
  const _component_Radio = resolveComponent("Radio");
35713
36012
  const _component_RadioGroup = resolveComponent("RadioGroup");
35714
- return withDirectives((openBlock(), createElementBlock("div", _hoisted_1$L, [
36013
+ return withDirectives((openBlock(), createElementBlock("div", _hoisted_1$K, [
35715
36014
  createVNode(_component_RadioGroup, {
35716
36015
  ref: "myControl",
35717
36016
  modelValue: _ctx.value,
@@ -35745,8 +36044,8 @@ function _sfc_render$Z(_ctx, _cache, $props, $setup, $data, $options) {
35745
36044
  [vShow, $data.myConfig.visible]
35746
36045
  ]);
35747
36046
  }
35748
- var RadioGroupBox = /* @__PURE__ */ _export_sfc$1(_sfc_main$12, [["render", _sfc_render$Z]]);
35749
- const _sfc_main$11 = {
36047
+ var RadioGroupBox = /* @__PURE__ */ _export_sfc$1(_sfc_main$11, [["render", _sfc_render$Y]]);
36048
+ const _sfc_main$10 = {
35750
36049
  name: "colorbox",
35751
36050
  extends: _sfc_main$1T,
35752
36051
  data() {
@@ -35782,7 +36081,7 @@ const _sfc_main$11 = {
35782
36081
  }
35783
36082
  }
35784
36083
  };
35785
- function _sfc_render$Y(_ctx, _cache, $props, $setup, $data, $options) {
36084
+ function _sfc_render$X(_ctx, _cache, $props, $setup, $data, $options) {
35786
36085
  const _component_ColorPicker = resolveComponent("ColorPicker");
35787
36086
  return withDirectives((openBlock(), createElementBlock("div", null, [
35788
36087
  createVNode(_component_ColorPicker, {
@@ -35801,12 +36100,12 @@ function _sfc_render$Y(_ctx, _cache, $props, $setup, $data, $options) {
35801
36100
  [vShow, $data.myConfig.visible]
35802
36101
  ]);
35803
36102
  }
35804
- var ColorBox = /* @__PURE__ */ _export_sfc$1(_sfc_main$11, [["render", _sfc_render$Y]]);
36103
+ var ColorBox = /* @__PURE__ */ _export_sfc$1(_sfc_main$10, [["render", _sfc_render$X]]);
35805
36104
  require("echarts/lib/component/tooltip");
35806
36105
  require("echarts/lib/component/title");
35807
36106
  require("echarts/lib/component/legend");
35808
36107
  require("echarts/lib/component/toolbox");
35809
- const _sfc_main$10 = {
36108
+ const _sfc_main$$ = {
35810
36109
  mixins: [size],
35811
36110
  name: "mychart",
35812
36111
  data() {
@@ -35970,9 +36269,9 @@ const _sfc_main$10 = {
35970
36269
  }
35971
36270
  };
35972
36271
  require("echarts/lib/chart/bar");
35973
- const _sfc_main$$ = {
36272
+ const _sfc_main$_ = {
35974
36273
  name: "bar",
35975
- extends: _sfc_main$10,
36274
+ extends: _sfc_main$$,
35976
36275
  data() {
35977
36276
  return {
35978
36277
  mychartconfig: {
@@ -36150,17 +36449,17 @@ const _sfc_main$$ = {
36150
36449
  }
36151
36450
  }
36152
36451
  };
36153
- function _sfc_render$X(_ctx, _cache, $props, $setup, $data, $options) {
36452
+ function _sfc_render$W(_ctx, _cache, $props, $setup, $data, $options) {
36154
36453
  return openBlock(), createElementBlock("div", {
36155
36454
  style: normalizeStyle(_ctx.currentStyle),
36156
36455
  ref: "mychart"
36157
36456
  }, null, 4);
36158
36457
  }
36159
- var MyBar = /* @__PURE__ */ _export_sfc$1(_sfc_main$$, [["render", _sfc_render$X]]);
36458
+ var MyBar = /* @__PURE__ */ _export_sfc$1(_sfc_main$_, [["render", _sfc_render$W]]);
36160
36459
  require("echarts/lib/chart/pie");
36161
- const _sfc_main$_ = {
36460
+ const _sfc_main$Z = {
36162
36461
  name: "pie",
36163
- extends: _sfc_main$10,
36462
+ extends: _sfc_main$$,
36164
36463
  data() {
36165
36464
  return {
36166
36465
  mychartconfig: {
@@ -36239,17 +36538,17 @@ const _sfc_main$_ = {
36239
36538
  }
36240
36539
  }
36241
36540
  };
36242
- function _sfc_render$W(_ctx, _cache, $props, $setup, $data, $options) {
36541
+ function _sfc_render$V(_ctx, _cache, $props, $setup, $data, $options) {
36243
36542
  return openBlock(), createElementBlock("div", {
36244
36543
  style: normalizeStyle(_ctx.currentStyle),
36245
36544
  ref: "mychart"
36246
36545
  }, null, 4);
36247
36546
  }
36248
- var MyPie = /* @__PURE__ */ _export_sfc$1(_sfc_main$_, [["render", _sfc_render$W]]);
36547
+ var MyPie = /* @__PURE__ */ _export_sfc$1(_sfc_main$Z, [["render", _sfc_render$V]]);
36249
36548
  require("echarts/lib/chart/line");
36250
- const _sfc_main$Z = {
36549
+ const _sfc_main$Y = {
36251
36550
  name: "line",
36252
- extends: _sfc_main$10,
36551
+ extends: _sfc_main$$,
36253
36552
  data() {
36254
36553
  return {
36255
36554
  mychartconfig: {
@@ -36427,17 +36726,17 @@ const _sfc_main$Z = {
36427
36726
  }
36428
36727
  }
36429
36728
  };
36430
- function _sfc_render$V(_ctx, _cache, $props, $setup, $data, $options) {
36729
+ function _sfc_render$U(_ctx, _cache, $props, $setup, $data, $options) {
36431
36730
  return openBlock(), createElementBlock("div", {
36432
36731
  style: normalizeStyle(_ctx.currentStyle),
36433
36732
  ref: "mychart"
36434
36733
  }, null, 4);
36435
36734
  }
36436
- var MyLine = /* @__PURE__ */ _export_sfc$1(_sfc_main$Z, [["render", _sfc_render$V]]);
36735
+ var MyLine = /* @__PURE__ */ _export_sfc$1(_sfc_main$Y, [["render", _sfc_render$U]]);
36437
36736
  require("echarts/lib/chart/scatter");
36438
- const _sfc_main$Y = {
36737
+ const _sfc_main$X = {
36439
36738
  name: "scatter",
36440
- extends: _sfc_main$10,
36739
+ extends: _sfc_main$$,
36441
36740
  data() {
36442
36741
  return {
36443
36742
  mychartconfig: {
@@ -36498,18 +36797,18 @@ const _sfc_main$Y = {
36498
36797
  }
36499
36798
  }
36500
36799
  };
36501
- function _sfc_render$U(_ctx, _cache, $props, $setup, $data, $options) {
36800
+ function _sfc_render$T(_ctx, _cache, $props, $setup, $data, $options) {
36502
36801
  return openBlock(), createElementBlock("div", {
36503
36802
  style: normalizeStyle(_ctx.currentStyle),
36504
36803
  ref: "mychart"
36505
36804
  }, null, 4);
36506
36805
  }
36507
- var MyScatter = /* @__PURE__ */ _export_sfc$1(_sfc_main$Y, [["render", _sfc_render$U]]);
36806
+ var MyScatter = /* @__PURE__ */ _export_sfc$1(_sfc_main$X, [["render", _sfc_render$T]]);
36508
36807
  require("echarts/lib/chart/bar");
36509
36808
  require("echarts/lib/chart/line");
36510
- const _sfc_main$X = {
36809
+ const _sfc_main$W = {
36511
36810
  name: "barline",
36512
- extends: _sfc_main$10,
36811
+ extends: _sfc_main$$,
36513
36812
  data() {
36514
36813
  return {
36515
36814
  mychartconfig: {
@@ -36641,17 +36940,17 @@ const _sfc_main$X = {
36641
36940
  }
36642
36941
  }
36643
36942
  };
36644
- function _sfc_render$T(_ctx, _cache, $props, $setup, $data, $options) {
36943
+ function _sfc_render$S(_ctx, _cache, $props, $setup, $data, $options) {
36645
36944
  return openBlock(), createElementBlock("div", {
36646
36945
  style: normalizeStyle(_ctx.currentStyle),
36647
36946
  ref: "mychart"
36648
36947
  }, null, 4);
36649
36948
  }
36650
- var MyBarLine = /* @__PURE__ */ _export_sfc$1(_sfc_main$X, [["render", _sfc_render$T]]);
36949
+ var MyBarLine = /* @__PURE__ */ _export_sfc$1(_sfc_main$W, [["render", _sfc_render$S]]);
36651
36950
  require("echarts/lib/chart/gauge");
36652
- const _sfc_main$W = {
36951
+ const _sfc_main$V = {
36653
36952
  name: "gauge",
36654
- extends: _sfc_main$10,
36953
+ extends: _sfc_main$$,
36655
36954
  data() {
36656
36955
  return {
36657
36956
  mychartconfig: {
@@ -36719,17 +37018,17 @@ const _sfc_main$W = {
36719
37018
  }
36720
37019
  }
36721
37020
  };
36722
- function _sfc_render$S(_ctx, _cache, $props, $setup, $data, $options) {
37021
+ function _sfc_render$R(_ctx, _cache, $props, $setup, $data, $options) {
36723
37022
  return openBlock(), createElementBlock("div", {
36724
37023
  style: normalizeStyle(_ctx.currentStyle),
36725
37024
  ref: "mychart"
36726
37025
  }, null, 4);
36727
37026
  }
36728
- var MyGauge = /* @__PURE__ */ _export_sfc$1(_sfc_main$W, [["render", _sfc_render$S]]);
37027
+ var MyGauge = /* @__PURE__ */ _export_sfc$1(_sfc_main$V, [["render", _sfc_render$R]]);
36729
37028
  require("echarts/lib/chart/radar");
36730
- const _sfc_main$V = {
37029
+ const _sfc_main$U = {
36731
37030
  name: "radar",
36732
- extends: _sfc_main$10,
37031
+ extends: _sfc_main$$,
36733
37032
  data() {
36734
37033
  return {
36735
37034
  mychartconfig: {
@@ -36831,16 +37130,16 @@ const _sfc_main$V = {
36831
37130
  }
36832
37131
  }
36833
37132
  };
36834
- function _sfc_render$R(_ctx, _cache, $props, $setup, $data, $options) {
37133
+ function _sfc_render$Q(_ctx, _cache, $props, $setup, $data, $options) {
36835
37134
  return openBlock(), createElementBlock("div", {
36836
37135
  style: normalizeStyle(_ctx.currentStyle),
36837
37136
  ref: "mychart"
36838
37137
  }, null, 4);
36839
37138
  }
36840
- var MyRadar = /* @__PURE__ */ _export_sfc$1(_sfc_main$V, [["render", _sfc_render$R]]);
36841
- const _sfc_main$U = {
37139
+ var MyRadar = /* @__PURE__ */ _export_sfc$1(_sfc_main$U, [["render", _sfc_render$Q]]);
37140
+ const _sfc_main$T = {
36842
37141
  name: "liquidfill",
36843
- extends: _sfc_main$10,
37142
+ extends: _sfc_main$$,
36844
37143
  data() {
36845
37144
  return {
36846
37145
  mychartconfig: {
@@ -36936,14 +37235,14 @@ const _sfc_main$U = {
36936
37235
  }
36937
37236
  }
36938
37237
  };
36939
- function _sfc_render$Q(_ctx, _cache, $props, $setup, $data, $options) {
37238
+ function _sfc_render$P(_ctx, _cache, $props, $setup, $data, $options) {
36940
37239
  return openBlock(), createElementBlock("div", {
36941
37240
  style: normalizeStyle(_ctx.currentStyle),
36942
37241
  ref: "mychart"
36943
37242
  }, null, 4);
36944
37243
  }
36945
- var MyLiquidFill = /* @__PURE__ */ _export_sfc$1(_sfc_main$U, [["render", _sfc_render$Q]]);
36946
- const _sfc_main$T = {
37244
+ var MyLiquidFill = /* @__PURE__ */ _export_sfc$1(_sfc_main$T, [["render", _sfc_render$P]]);
37245
+ const _sfc_main$S = {
36947
37246
  name: "poptagbox",
36948
37247
  extends: _sfc_main$1T,
36949
37248
  data() {
@@ -37300,8 +37599,8 @@ const _sfc_main$T = {
37300
37599
  }
37301
37600
  }
37302
37601
  };
37303
- const _hoisted_1$K = { style: { "padding-left": "16px", "padding-right": "16px" } };
37304
- function _sfc_render$P(_ctx, _cache, $props, $setup, $data, $options) {
37602
+ const _hoisted_1$J = { style: { "padding-left": "16px", "padding-right": "16px" } };
37603
+ function _sfc_render$O(_ctx, _cache, $props, $setup, $data, $options) {
37305
37604
  const _component_Tag = resolveComponent("Tag");
37306
37605
  const _component_Button = resolveComponent("Button");
37307
37606
  const _component_Col = resolveComponent("Col");
@@ -37377,7 +37676,7 @@ function _sfc_render$P(_ctx, _cache, $props, $setup, $data, $options) {
37377
37676
  ])
37378
37677
  ]),
37379
37678
  default: withCtx(() => [
37380
- createElementVNode("div", _hoisted_1$K, [
37679
+ createElementVNode("div", _hoisted_1$J, [
37381
37680
  (openBlock(), createBlock(resolveDynamicComponent($options.pop), {
37382
37681
  ref: "popView",
37383
37682
  config: $data.queryConfig,
@@ -37394,8 +37693,8 @@ function _sfc_render$P(_ctx, _cache, $props, $setup, $data, $options) {
37394
37693
  [vShow, $data.myConfig.visible]
37395
37694
  ]);
37396
37695
  }
37397
- var PopTagBox = /* @__PURE__ */ _export_sfc$1(_sfc_main$T, [["render", _sfc_render$P]]);
37398
- const _sfc_main$S = {
37696
+ var PopTagBox = /* @__PURE__ */ _export_sfc$1(_sfc_main$S, [["render", _sfc_render$O]]);
37697
+ const _sfc_main$R = {
37399
37698
  name: "cascaderbox",
37400
37699
  extends: _sfc_main$1T,
37401
37700
  data() {
@@ -37547,7 +37846,7 @@ const _sfc_main$S = {
37547
37846
  }
37548
37847
  }
37549
37848
  };
37550
- function _sfc_render$O(_ctx, _cache, $props, $setup, $data, $options) {
37849
+ function _sfc_render$N(_ctx, _cache, $props, $setup, $data, $options) {
37551
37850
  const _component_Cascader = resolveComponent("Cascader");
37552
37851
  return withDirectives((openBlock(), createElementBlock("div", null, [
37553
37852
  createVNode(_component_Cascader, {
@@ -37567,8 +37866,8 @@ function _sfc_render$O(_ctx, _cache, $props, $setup, $data, $options) {
37567
37866
  [vShow, $data.myConfig.visible]
37568
37867
  ]);
37569
37868
  }
37570
- var CascaderBox = /* @__PURE__ */ _export_sfc$1(_sfc_main$S, [["render", _sfc_render$O]]);
37571
- const _sfc_main$R = {
37869
+ var CascaderBox = /* @__PURE__ */ _export_sfc$1(_sfc_main$R, [["render", _sfc_render$N]]);
37870
+ const _sfc_main$Q = {
37572
37871
  name: "PageCustom",
37573
37872
  extends: Page,
37574
37873
  data() {
@@ -37578,7 +37877,7 @@ const _sfc_main$R = {
37578
37877
  };
37579
37878
  }
37580
37879
  };
37581
- const _hoisted_1$J = ["title"];
37880
+ const _hoisted_1$I = ["title"];
37582
37881
  const _hoisted_2$v = ["title"];
37583
37882
  const _hoisted_3$j = ["value", "disabled"];
37584
37883
  const _hoisted_4$g = ["title"];
@@ -37602,7 +37901,7 @@ const _hoisted_18$1 = {
37602
37901
  key: 1,
37603
37902
  class: "ivu-icon ivu-icon-ios-arrow-forward"
37604
37903
  };
37605
- function _sfc_render$N(_ctx, _cache, $props, $setup, $data, $options) {
37904
+ function _sfc_render$M(_ctx, _cache, $props, $setup, $data, $options) {
37606
37905
  const _component_Options = resolveComponent("Options");
37607
37906
  return _ctx.simple ? (openBlock(), createElementBlock("ul", {
37608
37907
  key: 0,
@@ -37617,7 +37916,7 @@ function _sfc_render$N(_ctx, _cache, $props, $setup, $data, $options) {
37617
37916
  createElementVNode("a", null, [
37618
37917
  createElementVNode("i", { class: "ivu-icon ivu-icon-ios-arrow-back" })
37619
37918
  ], -1)
37620
- ]), 10, _hoisted_1$J),
37919
+ ]), 10, _hoisted_1$I),
37621
37920
  createElementVNode("div", {
37622
37921
  class: normalizeClass(_ctx.simplePagerClasses),
37623
37922
  title: _ctx.currentPage + "/" + _ctx.allPages
@@ -37806,8 +38105,8 @@ function _sfc_render$N(_ctx, _cache, $props, $setup, $data, $options) {
37806
38105
  }, null, 8, ["show-sizer", "page-size", "page-size-opts", "placement", "transfer", "show-elevator", "_current", "current", "disabled", "all-pages", "is-small", "onOnSize", "onOnPage"])
37807
38106
  ], 6));
37808
38107
  }
37809
- var PageCustom = /* @__PURE__ */ _export_sfc$1(_sfc_main$R, [["render", _sfc_render$N]]);
37810
- const _sfc_main$Q = {
38108
+ var PageCustom = /* @__PURE__ */ _export_sfc$1(_sfc_main$Q, [["render", _sfc_render$M]]);
38109
+ const _sfc_main$P = {
37811
38110
  name: "mimpleviewgrid",
37812
38111
  extends: _sfc_main$1O,
37813
38112
  methods: {
@@ -37870,7 +38169,7 @@ const _sfc_main$Q = {
37870
38169
  mounted() {
37871
38170
  }
37872
38171
  };
37873
- const _hoisted_1$I = { ref: "head" };
38172
+ const _hoisted_1$H = { ref: "head" };
37874
38173
  const _hoisted_2$u = {
37875
38174
  ref: "page",
37876
38175
  name: "page"
@@ -37890,7 +38189,7 @@ const _hoisted_6$a = {
37890
38189
  style: { "padding-top": "10px" }
37891
38190
  };
37892
38191
  const _hoisted_7$3 = ["textContent"];
37893
- function _sfc_render$M(_ctx, _cache, $props, $setup, $data, $options) {
38192
+ function _sfc_render$L(_ctx, _cache, $props, $setup, $data, $options) {
37894
38193
  const _component_ConditionBox = resolveComponent("ConditionBox");
37895
38194
  const _component_Col = resolveComponent("Col");
37896
38195
  const _component_Row = resolveComponent("Row");
@@ -37901,7 +38200,7 @@ function _sfc_render$M(_ctx, _cache, $props, $setup, $data, $options) {
37901
38200
  const _component_Button = resolveComponent("Button");
37902
38201
  const _component_Tooltip = resolveComponent("Tooltip");
37903
38202
  return openBlock(), createElementBlock("div", null, [
37904
- createElementVNode("div", _hoisted_1$I, [
38203
+ createElementVNode("div", _hoisted_1$H, [
37905
38204
  _ctx.showCondition ? (openBlock(), createBlock(_component_Row, { key: 0 }, {
37906
38205
  default: withCtx(() => [
37907
38206
  createVNode(_component_Col, { span: "24" }, {
@@ -38218,12 +38517,12 @@ function _sfc_render$M(_ctx, _cache, $props, $setup, $data, $options) {
38218
38517
  }))
38219
38518
  ]);
38220
38519
  }
38221
- var SimpleViewGrid = /* @__PURE__ */ _export_sfc$1(_sfc_main$Q, [["render", _sfc_render$M]]);
38520
+ var SimpleViewGrid = /* @__PURE__ */ _export_sfc$1(_sfc_main$P, [["render", _sfc_render$L]]);
38222
38521
  var simpletree_vue_vue_type_style_index_0_lang = "";
38223
- const _sfc_main$P = {
38522
+ const _sfc_main$O = {
38224
38523
  name: "mtreedata",
38225
38524
  components: { CompatTree },
38226
- extends: _sfc_main$17,
38525
+ extends: _sfc_main$16,
38227
38526
  data() {
38228
38527
  return {
38229
38528
  searchPlaceholder: "\u8BF7\u8F93\u5165\u7F16\u7801\u6216\u540D\u79F0",
@@ -38327,11 +38626,11 @@ const _sfc_main$P = {
38327
38626
  }
38328
38627
  }
38329
38628
  };
38330
- const _hoisted_1$H = {
38629
+ const _hoisted_1$G = {
38331
38630
  key: 0,
38332
38631
  ref: "conditiondiv"
38333
38632
  };
38334
- function _sfc_render$L(_ctx, _cache, $props, $setup, $data, $options) {
38633
+ function _sfc_render$K(_ctx, _cache, $props, $setup, $data, $options) {
38335
38634
  const _component_Input = resolveComponent("Input");
38336
38635
  const _component_CompatTree = resolveComponent("CompatTree");
38337
38636
  const _component_SimpleViewGrid = resolveComponent("SimpleViewGrid");
@@ -38343,7 +38642,7 @@ function _sfc_render$L(_ctx, _cache, $props, $setup, $data, $options) {
38343
38642
  style: { "width": "100%", "overflow-x": "hidden", "padding": "14px" }
38344
38643
  }, {
38345
38644
  default: withCtx(() => [
38346
- _ctx.showCondition ? (openBlock(), createElementBlock("div", _hoisted_1$H, [
38645
+ _ctx.showCondition ? (openBlock(), createElementBlock("div", _hoisted_1$G, [
38347
38646
  createVNode(_component_Input, {
38348
38647
  ref: "condition",
38349
38648
  placeholder: $data.searchPlaceholder,
@@ -38386,8 +38685,8 @@ function _sfc_render$L(_ctx, _cache, $props, $setup, $data, $options) {
38386
38685
  _: 1
38387
38686
  }, 8, ["bordered"]);
38388
38687
  }
38389
- var SimpleTree = /* @__PURE__ */ _export_sfc$1(_sfc_main$P, [["render", _sfc_render$L]]);
38390
- const _sfc_main$O = {
38688
+ var SimpleTree = /* @__PURE__ */ _export_sfc$1(_sfc_main$O, [["render", _sfc_render$K]]);
38689
+ const _sfc_main$N = {
38391
38690
  name: "mrowbtntoolbar",
38392
38691
  data() {
38393
38692
  return {
@@ -38477,7 +38776,7 @@ const _sfc_main$O = {
38477
38776
  }
38478
38777
  }
38479
38778
  };
38480
- function _sfc_render$K(_ctx, _cache, $props, $setup, $data, $options) {
38779
+ function _sfc_render$J(_ctx, _cache, $props, $setup, $data, $options) {
38481
38780
  const _component_Button = resolveComponent("Button");
38482
38781
  const _component_Col = resolveComponent("Col");
38483
38782
  const _component_Divider = resolveComponent("Divider");
@@ -38584,9 +38883,9 @@ function _sfc_render$K(_ctx, _cache, $props, $setup, $data, $options) {
38584
38883
  _: 1
38585
38884
  }, 8, ["justify"]);
38586
38885
  }
38587
- var RowBtnToolbar = /* @__PURE__ */ _export_sfc$1(_sfc_main$O, [["render", _sfc_render$K]]);
38886
+ var RowBtnToolbar = /* @__PURE__ */ _export_sfc$1(_sfc_main$N, [["render", _sfc_render$J]]);
38588
38887
  var detailbtntoolbar_vue_vue_type_style_index_0_scoped_true_lang = "";
38589
- const _sfc_main$N = {
38888
+ const _sfc_main$M = {
38590
38889
  name: "mdetailbtntoolbar",
38591
38890
  data() {
38592
38891
  return {
@@ -38808,7 +39107,7 @@ const _sfc_main$N = {
38808
39107
  }
38809
39108
  }
38810
39109
  };
38811
- function _sfc_render$J(_ctx, _cache, $props, $setup, $data, $options) {
39110
+ function _sfc_render$I(_ctx, _cache, $props, $setup, $data, $options) {
38812
39111
  const _component_Button = resolveComponent("Button");
38813
39112
  const _component_Col = resolveComponent("Col");
38814
39113
  const _component_Divider = resolveComponent("Divider");
@@ -39103,7 +39402,7 @@ function _sfc_render$J(_ctx, _cache, $props, $setup, $data, $options) {
39103
39402
  _: 1
39104
39403
  });
39105
39404
  }
39106
- var DetailBtnToolbar = /* @__PURE__ */ _export_sfc$1(_sfc_main$N, [["render", _sfc_render$J], ["__scopeId", "data-v-3e779d51"]]);
39405
+ var DetailBtnToolbar = /* @__PURE__ */ _export_sfc$1(_sfc_main$M, [["render", _sfc_render$I], ["__scopeId", "data-v-3e779d51"]]);
39107
39406
  var load = {
39108
39407
  name: "load",
39109
39408
  data() {
@@ -39124,7 +39423,7 @@ var load = {
39124
39423
  }
39125
39424
  }
39126
39425
  };
39127
- const _sfc_main$M = {
39426
+ const _sfc_main$L = {
39128
39427
  name: "mbase",
39129
39428
  mixins: [load],
39130
39429
  data() {
@@ -40108,7 +40407,7 @@ const _sfc_main$M = {
40108
40407
  }
40109
40408
  }
40110
40409
  };
40111
- const _sfc_main$L = {
40410
+ const _sfc_main$K = {
40112
40411
  name: "meditgridcard2",
40113
40412
  extends: _sfc_main$1M,
40114
40413
  data() {
@@ -40184,14 +40483,14 @@ const _sfc_main$L = {
40184
40483
  }
40185
40484
  }
40186
40485
  };
40187
- const _hoisted_1$G = { key: 0 };
40486
+ const _hoisted_1$F = { key: 0 };
40188
40487
  const _hoisted_2$t = ["onClick"];
40189
40488
  const _hoisted_3$h = {
40190
40489
  key: 0,
40191
40490
  ref: "page",
40192
40491
  style: { "background": "#eee", "padding-top": "5px", "width": "100%" }
40193
40492
  };
40194
- function _sfc_render$I(_ctx, _cache, $props, $setup, $data, $options) {
40493
+ function _sfc_render$H(_ctx, _cache, $props, $setup, $data, $options) {
40195
40494
  const _component_Button = resolveComponent("Button");
40196
40495
  const _component_Col = resolveComponent("Col");
40197
40496
  const _component_Divider = resolveComponent("Divider");
@@ -40210,7 +40509,7 @@ function _sfc_render$I(_ctx, _cache, $props, $setup, $data, $options) {
40210
40509
  "dis-hover": ""
40211
40510
  }, {
40212
40511
  default: withCtx(() => [
40213
- _ctx.$slots.header ? (openBlock(), createElementBlock("div", _hoisted_1$G, [
40512
+ _ctx.$slots.header ? (openBlock(), createElementBlock("div", _hoisted_1$F, [
40214
40513
  renderSlot(_ctx.$slots, "header")
40215
40514
  ])) : withDirectives((openBlock(), createBlock(_component_Row, {
40216
40515
  key: 1,
@@ -40377,8 +40676,8 @@ function _sfc_render$I(_ctx, _cache, $props, $setup, $data, $options) {
40377
40676
  _: 3
40378
40677
  }, 512);
40379
40678
  }
40380
- var EditGridCardS = /* @__PURE__ */ _export_sfc$1(_sfc_main$L, [["render", _sfc_render$I]]);
40381
- const _sfc_main$K = {
40679
+ var EditGridCardS = /* @__PURE__ */ _export_sfc$1(_sfc_main$K, [["render", _sfc_render$H]]);
40680
+ const _sfc_main$J = {
40382
40681
  name: "mappendix",
40383
40682
  components: { EditGridCardS },
40384
40683
  mixins: [load],
@@ -40902,7 +41201,7 @@ const _sfc_main$K = {
40902
41201
  }
40903
41202
  }
40904
41203
  };
40905
- const _hoisted_1$F = ["textContent"];
41204
+ const _hoisted_1$E = ["textContent"];
40906
41205
  const _hoisted_2$s = { style: { "padding-left": "24px" } };
40907
41206
  const _hoisted_3$g = { ref: "photo" };
40908
41207
  const _hoisted_4$e = ["src", "data-original"];
@@ -40911,7 +41210,7 @@ const _hoisted_6$9 = {
40911
41210
  ref: "pdf",
40912
41211
  style: { "height": "630px" }
40913
41212
  };
40914
- function _sfc_render$H(_ctx, _cache, $props, $setup, $data, $options) {
41213
+ function _sfc_render$G(_ctx, _cache, $props, $setup, $data, $options) {
40915
41214
  const _component_Icon = resolveComponent("Icon");
40916
41215
  const _component_Row = resolveComponent("Row");
40917
41216
  const _component_Divider = resolveComponent("Divider");
@@ -40955,7 +41254,7 @@ function _sfc_render$H(_ctx, _cache, $props, $setup, $data, $options) {
40955
41254
  createElementVNode("span", {
40956
41255
  style: { "margin-left": "10px", "font-size": "14px", "font-weight": "bold" },
40957
41256
  textContent: toDisplayString($data.myConfig.title)
40958
- }, null, 8, _hoisted_1$F)
41257
+ }, null, 8, _hoisted_1$E)
40959
41258
  ]),
40960
41259
  _: 1
40961
41260
  })
@@ -41067,9 +41366,9 @@ function _sfc_render$H(_ctx, _cache, $props, $setup, $data, $options) {
41067
41366
  _: 1
41068
41367
  });
41069
41368
  }
41070
- var mAppendixBoxs = /* @__PURE__ */ _export_sfc$1(_sfc_main$K, [["render", _sfc_render$H]]);
41369
+ var mAppendixBoxs = /* @__PURE__ */ _export_sfc$1(_sfc_main$J, [["render", _sfc_render$G]]);
41071
41370
  var billasyncimport_vue_vue_type_style_index_0_scoped_true_lang = "";
41072
- const _sfc_main$J = {
41371
+ const _sfc_main$I = {
41073
41372
  name: "mbillasyncimport",
41074
41373
  data() {
41075
41374
  return {
@@ -41536,7 +41835,7 @@ const _sfc_main$J = {
41536
41835
  }
41537
41836
  }
41538
41837
  };
41539
- const _hoisted_1$E = { style: { "margin-bottom": "10px", "display": "flex", "justify-content": "space-between" } };
41838
+ const _hoisted_1$D = { style: { "margin-bottom": "10px", "display": "flex", "justify-content": "space-between" } };
41540
41839
  const _hoisted_2$r = { style: { "margin-bottom": "10px", "display": "flex", "justify-content": "space-between" } };
41541
41840
  const _hoisted_3$f = { class: "demo-spin-col-bill" };
41542
41841
  const _hoisted_4$d = {
@@ -41549,7 +41848,7 @@ const _hoisted_5$b = {
41549
41848
  };
41550
41849
  const _hoisted_6$8 = { style: { "margin-bottom": "10px", "display": "flex", "justify-content": "space-between" } };
41551
41850
  const _hoisted_7$2 = ["textContent"];
41552
- function _sfc_render$G(_ctx, _cache, $props, $setup, $data, $options) {
41851
+ function _sfc_render$F(_ctx, _cache, $props, $setup, $data, $options) {
41553
41852
  const _component_Button = resolveComponent("Button");
41554
41853
  const _component_SimpleViewGrid = resolveComponent("SimpleViewGrid");
41555
41854
  const _component_Card = resolveComponent("Card");
@@ -41589,7 +41888,7 @@ function _sfc_render$G(_ctx, _cache, $props, $setup, $data, $options) {
41589
41888
  "dis-hover": ""
41590
41889
  }, {
41591
41890
  default: withCtx(() => [
41592
- createElementVNode("div", _hoisted_1$E, [
41891
+ createElementVNode("div", _hoisted_1$D, [
41593
41892
  _cache[7] || (_cache[7] = createElementVNode("div", null, [
41594
41893
  createElementVNode("span", { class: "efuture-title-verticalline" }),
41595
41894
  createTextVNode(),
@@ -41898,9 +42197,9 @@ function _sfc_render$G(_ctx, _cache, $props, $setup, $data, $options) {
41898
42197
  }, 8, ["modelValue", "width"])) : createCommentVNode("", true)
41899
42198
  ]);
41900
42199
  }
41901
- var mBillAsyncImport = /* @__PURE__ */ _export_sfc$1(_sfc_main$J, [["render", _sfc_render$G], ["__scopeId", "data-v-19948b1e"]]);
42200
+ var mBillAsyncImport = /* @__PURE__ */ _export_sfc$1(_sfc_main$I, [["render", _sfc_render$F], ["__scopeId", "data-v-19948b1e"]]);
41902
42201
  var billimport_vue_vue_type_style_index_0_scoped_true_lang = "";
41903
- const _sfc_main$I = {
42202
+ const _sfc_main$H = {
41904
42203
  name: "mbillimport",
41905
42204
  data() {
41906
42205
  return {
@@ -42094,9 +42393,9 @@ const _sfc_main$I = {
42094
42393
  }
42095
42394
  }
42096
42395
  };
42097
- const _hoisted_1$D = { class: "demo-spin-col-bill" };
42396
+ const _hoisted_1$C = { class: "demo-spin-col-bill" };
42098
42397
  const _hoisted_2$q = { style: { "height": "220px", "background-color": "#F5F7FA", "border": "1px #DCDFE6 dashed" } };
42099
- function _sfc_render$F(_ctx, _cache, $props, $setup, $data, $options) {
42398
+ function _sfc_render$E(_ctx, _cache, $props, $setup, $data, $options) {
42100
42399
  const _component_Radio = resolveComponent("Radio");
42101
42400
  const _component_RadioGroup = resolveComponent("RadioGroup");
42102
42401
  const _component_Icon = resolveComponent("Icon");
@@ -42117,7 +42416,7 @@ function _sfc_render$F(_ctx, _cache, $props, $setup, $data, $options) {
42117
42416
  "footer-hide": true
42118
42417
  }, {
42119
42418
  default: withCtx(() => [
42120
- createElementVNode("div", _hoisted_1$D, [
42419
+ createElementVNode("div", _hoisted_1$C, [
42121
42420
  $data.showType ? (openBlock(), createBlock(_component_RadioGroup, {
42122
42421
  key: 0,
42123
42422
  modelValue: $data.type,
@@ -42295,11 +42594,11 @@ function _sfc_render$F(_ctx, _cache, $props, $setup, $data, $options) {
42295
42594
  }, 8, ["modelValue", "onOnOk"])) : createCommentVNode("", true)
42296
42595
  ]);
42297
42596
  }
42298
- var mBillImport = /* @__PURE__ */ _export_sfc$1(_sfc_main$I, [["render", _sfc_render$F], ["__scopeId", "data-v-14d9a5da"]]);
42597
+ var mBillImport = /* @__PURE__ */ _export_sfc$1(_sfc_main$H, [["render", _sfc_render$E], ["__scopeId", "data-v-14d9a5da"]]);
42299
42598
  var layouttemplate_vue_vue_type_style_index_0_lang = "";
42300
- const _sfc_main$H = {
42599
+ const _sfc_main$G = {
42301
42600
  name: "BillTemplate",
42302
- extends: _sfc_main$M,
42601
+ extends: _sfc_main$L,
42303
42602
  components: { AppendixBoxs: mAppendixBoxs, BillAsyncImport: mBillAsyncImport, BillImport: mBillImport },
42304
42603
  computed: {
42305
42604
  uiLayoutType() {
@@ -42310,8 +42609,8 @@ const _sfc_main$H = {
42310
42609
  }
42311
42610
  }
42312
42611
  };
42313
- const _hoisted_1$C = ["src"];
42314
- function _sfc_render$E(_ctx, _cache, $props, $setup, $data, $options) {
42612
+ const _hoisted_1$B = ["src"];
42613
+ function _sfc_render$D(_ctx, _cache, $props, $setup, $data, $options) {
42315
42614
  const _component_AppendixBoxs = resolveComponent("AppendixBoxs");
42316
42615
  const _component_Modal = resolveComponent("Modal");
42317
42616
  const _component_BillAsyncImport = resolveComponent("BillAsyncImport");
@@ -42361,7 +42660,7 @@ function _sfc_render$E(_ctx, _cache, $props, $setup, $data, $options) {
42361
42660
  height: "100%",
42362
42661
  allowtransparency: "true",
42363
42662
  frameborder: "0"
42364
- }, null, 8, _hoisted_1$C)) : createCommentVNode("", true)
42663
+ }, null, 8, _hoisted_1$B)) : createCommentVNode("", true)
42365
42664
  ]),
42366
42665
  _: 1
42367
42666
  }, 8, ["modelValue", "width"]),
@@ -42377,8 +42676,8 @@ function _sfc_render$E(_ctx, _cache, $props, $setup, $data, $options) {
42377
42676
  }, null, 8, ["config"])) : createCommentVNode("", true)
42378
42677
  ]);
42379
42678
  }
42380
- var BillTemplate = /* @__PURE__ */ _export_sfc$1(_sfc_main$H, [["render", _sfc_render$E]]);
42381
- const _sfc_main$G = {
42679
+ var BillTemplate = /* @__PURE__ */ _export_sfc$1(_sfc_main$G, [["render", _sfc_render$D]]);
42680
+ const _sfc_main$F = {
42382
42681
  name: "mpromptmessage",
42383
42682
  props: {
42384
42683
  modetype: {
@@ -42425,8 +42724,8 @@ const _sfc_main$G = {
42425
42724
  }
42426
42725
  }
42427
42726
  };
42428
- const _hoisted_1$B = { class: "modulecodetext" };
42429
- function _sfc_render$D(_ctx, _cache, $props, $setup, $data, $options) {
42727
+ const _hoisted_1$A = { class: "modulecodetext" };
42728
+ function _sfc_render$C(_ctx, _cache, $props, $setup, $data, $options) {
42430
42729
  const _component_Divider = resolveComponent("Divider");
42431
42730
  const _component_Col = resolveComponent("Col");
42432
42731
  const _component_Icon = resolveComponent("Icon");
@@ -42482,7 +42781,7 @@ function _sfc_render$D(_ctx, _cache, $props, $setup, $data, $options) {
42482
42781
  })) : createCommentVNode("", true),
42483
42782
  $data.modulecodeFlag ? (openBlock(), createBlock(_component_Col, { key: 3 }, {
42484
42783
  default: withCtx(() => [
42485
- createElementVNode("div", _hoisted_1$B, [
42784
+ createElementVNode("div", _hoisted_1$A, [
42486
42785
  createElementVNode("span", null, toDisplayString($data.modulecode), 1)
42487
42786
  ])
42488
42787
  ]),
@@ -42492,8 +42791,8 @@ function _sfc_render$D(_ctx, _cache, $props, $setup, $data, $options) {
42492
42791
  _: 1
42493
42792
  });
42494
42793
  }
42495
- var PromptMessages = /* @__PURE__ */ _export_sfc$1(_sfc_main$G, [["render", _sfc_render$D]]);
42496
- const _sfc_main$F = {
42794
+ var PromptMessages = /* @__PURE__ */ _export_sfc$1(_sfc_main$F, [["render", _sfc_render$C]]);
42795
+ const _sfc_main$E = {
42497
42796
  name: "mbillconditionbox",
42498
42797
  data() {
42499
42798
  return {
@@ -42709,11 +43008,11 @@ const _sfc_main$F = {
42709
43008
  }
42710
43009
  }
42711
43010
  };
42712
- const _hoisted_1$A = { style: { "display": "flex", "align-items": "center" } };
42713
- function _sfc_render$C(_ctx, _cache, $props, $setup, $data, $options) {
43011
+ const _hoisted_1$z = { style: { "display": "flex", "align-items": "center" } };
43012
+ function _sfc_render$B(_ctx, _cache, $props, $setup, $data, $options) {
42714
43013
  const _component_Icon = resolveComponent("Icon");
42715
43014
  const _component_FormBox = resolveComponent("FormBox");
42716
- return openBlock(), createElementBlock("div", _hoisted_1$A, [
43015
+ return openBlock(), createElementBlock("div", _hoisted_1$z, [
42717
43016
  createVNode(_component_Icon, {
42718
43017
  custom: "iconfont icon-custom-delcond",
42719
43018
  onClick: withModifiers($options.doDel, ["stop"]),
@@ -42729,9 +43028,9 @@ function _sfc_render$C(_ctx, _cache, $props, $setup, $data, $options) {
42729
43028
  }, null, 8, ["config", "onInputValue"])
42730
43029
  ]);
42731
43030
  }
42732
- var BillConditionBox = /* @__PURE__ */ _export_sfc$1(_sfc_main$F, [["render", _sfc_render$C]]);
43031
+ var BillConditionBox = /* @__PURE__ */ _export_sfc$1(_sfc_main$E, [["render", _sfc_render$B]]);
42733
43032
  var billconditionsbox_vue_vue_type_style_index_0_scoped_true_lang = "";
42734
- const _sfc_main$E = {
43033
+ const _sfc_main$D = {
42735
43034
  name: "mbillconditionsbox",
42736
43035
  components: { BillConditionBox },
42737
43036
  data() {
@@ -43025,7 +43324,7 @@ const _sfc_main$E = {
43025
43324
  }
43026
43325
  }
43027
43326
  };
43028
- function _sfc_render$B(_ctx, _cache, $props, $setup, $data, $options) {
43327
+ function _sfc_render$A(_ctx, _cache, $props, $setup, $data, $options) {
43029
43328
  const _component_BillConditionBox = resolveComponent("BillConditionBox");
43030
43329
  const _component_Col = resolveComponent("Col");
43031
43330
  const _component_Row = resolveComponent("Row");
@@ -43247,9 +43546,9 @@ function _sfc_render$B(_ctx, _cache, $props, $setup, $data, $options) {
43247
43546
  _: 1
43248
43547
  });
43249
43548
  }
43250
- var BillConditionsBox = /* @__PURE__ */ _export_sfc$1(_sfc_main$E, [["render", _sfc_render$B], ["__scopeId", "data-v-0f085024"]]);
43549
+ var BillConditionsBox = /* @__PURE__ */ _export_sfc$1(_sfc_main$D, [["render", _sfc_render$A], ["__scopeId", "data-v-0f085024"]]);
43251
43550
  var querybar_vue_vue_type_style_index_0_scoped_true_lang = "";
43252
- const _sfc_main$D = {
43551
+ const _sfc_main$C = {
43253
43552
  name: "mquerybar",
43254
43553
  components: {
43255
43554
  BillConditionsBox,
@@ -43637,9 +43936,9 @@ const _sfc_main$D = {
43637
43936
  }
43638
43937
  }
43639
43938
  };
43640
- const _hoisted_1$z = { class: "querybar" };
43939
+ const _hoisted_1$y = { class: "querybar" };
43641
43940
  const _hoisted_2$p = { style: { "margin-top": "20px" } };
43642
- function _sfc_render$A(_ctx, _cache, $props, $setup, $data, $options) {
43941
+ function _sfc_render$z(_ctx, _cache, $props, $setup, $data, $options) {
43643
43942
  const _component_ControlBox = resolveComponent("ControlBox");
43644
43943
  const _component_Col = resolveComponent("Col");
43645
43944
  const _component_Button = resolveComponent("Button");
@@ -43652,7 +43951,7 @@ function _sfc_render$A(_ctx, _cache, $props, $setup, $data, $options) {
43652
43951
  const _component_Row = resolveComponent("Row");
43653
43952
  const _component_PromptMessages = resolveComponent("PromptMessages");
43654
43953
  const _component_BillConditionsBox = resolveComponent("BillConditionsBox");
43655
- return openBlock(), createElementBlock("div", _hoisted_1$z, [
43954
+ return openBlock(), createElementBlock("div", _hoisted_1$y, [
43656
43955
  createVNode(_component_Row, {
43657
43956
  type: "flex",
43658
43957
  gutter: 0
@@ -43906,9 +44205,9 @@ function _sfc_render$A(_ctx, _cache, $props, $setup, $data, $options) {
43906
44205
  ])
43907
44206
  ]);
43908
44207
  }
43909
- var querybar = /* @__PURE__ */ _export_sfc$1(_sfc_main$D, [["render", _sfc_render$A], ["__scopeId", "data-v-c91c45ac"]]);
44208
+ var querybar = /* @__PURE__ */ _export_sfc$1(_sfc_main$C, [["render", _sfc_render$z], ["__scopeId", "data-v-c91c45ac"]]);
43910
44209
  var gridcolset_vue_vue_type_style_index_0_scoped_true_lang = "";
43911
- const _sfc_main$C = {
44210
+ const _sfc_main$B = {
43912
44211
  name: "gridcolset",
43913
44212
  components: {
43914
44213
  VueDraggable
@@ -44050,13 +44349,13 @@ const _sfc_main$C = {
44050
44349
  }
44051
44350
  }
44052
44351
  };
44053
- const _hoisted_1$y = { style: { "margin-top": "3px", "margin-bottom": "3px", "margin-left": "8px", "margin-right": "10px" } };
44352
+ const _hoisted_1$x = { style: { "margin-top": "3px", "margin-bottom": "3px", "margin-left": "8px", "margin-right": "10px" } };
44054
44353
  const _hoisted_2$o = { style: { "color": "#AF292E", "font-size": "14px" } };
44055
44354
  const _hoisted_3$e = { style: { "max-height": "400px", "overflow-y": "auto", "overflow-x": "hidden", "margin": "14px 16px" } };
44056
44355
  const _hoisted_4$c = { style: { "padding-left": "14px" } };
44057
44356
  const _hoisted_5$a = ["onClick"];
44058
44357
  const _hoisted_6$7 = ["onClick"];
44059
- function _sfc_render$z(_ctx, _cache, $props, $setup, $data, $options) {
44358
+ function _sfc_render$y(_ctx, _cache, $props, $setup, $data, $options) {
44060
44359
  const _component_Col = resolveComponent("Col");
44061
44360
  const _component_Icon = resolveComponent("Icon");
44062
44361
  const _component_Row = resolveComponent("Row");
@@ -44121,7 +44420,7 @@ function _sfc_render$z(_ctx, _cache, $props, $setup, $data, $options) {
44121
44420
  style: { "width": "330px", "margin-top": "20px" }
44122
44421
  }, {
44123
44422
  title: withCtx(() => [
44124
- createElementVNode("p", _hoisted_1$y, [
44423
+ createElementVNode("p", _hoisted_1$x, [
44125
44424
  _cache[5] || (_cache[5] = createElementVNode("span", { style: { "font-size": "14px" } }, "\u5DF2\u9009\u62E9\u5B57\u6BB5: ", -1)),
44126
44425
  createElementVNode("span", _hoisted_2$o, toDisplayString($data.num) + "\u4E2A", 1)
44127
44426
  ])
@@ -44293,8 +44592,8 @@ function _sfc_render$z(_ctx, _cache, $props, $setup, $data, $options) {
44293
44592
  _: 1
44294
44593
  });
44295
44594
  }
44296
- var GridColSet = /* @__PURE__ */ _export_sfc$1(_sfc_main$C, [["render", _sfc_render$z], ["__scopeId", "data-v-926ea6aa"]]);
44297
- const _sfc_main$B = {
44595
+ var GridColSet = /* @__PURE__ */ _export_sfc$1(_sfc_main$B, [["render", _sfc_render$y], ["__scopeId", "data-v-926ea6aa"]]);
44596
+ const _sfc_main$A = {
44298
44597
  name: "mbillquerygrid",
44299
44598
  components: { QueryBar: querybar, GridColSet },
44300
44599
  data() {
@@ -44592,11 +44891,11 @@ const _sfc_main$B = {
44592
44891
  }
44593
44892
  }
44594
44893
  };
44595
- const _hoisted_1$x = {
44894
+ const _hoisted_1$w = {
44596
44895
  ref: "toolbar",
44597
44896
  style: { "padding-bottom": "14px" }
44598
44897
  };
44599
- function _sfc_render$y(_ctx, _cache, $props, $setup, $data, $options) {
44898
+ function _sfc_render$x(_ctx, _cache, $props, $setup, $data, $options) {
44600
44899
  const _component_QueryBar = resolveComponent("QueryBar");
44601
44900
  const _component_Icon = resolveComponent("Icon");
44602
44901
  const _component_Tooltip = resolveComponent("Tooltip");
@@ -44613,7 +44912,7 @@ function _sfc_render$y(_ctx, _cache, $props, $setup, $data, $options) {
44613
44912
  style: { "background": "#fff", "padding": "14px 16px 14px 16px" }
44614
44913
  }, {
44615
44914
  default: withCtx(() => [
44616
- createElementVNode("div", _hoisted_1$x, [
44915
+ createElementVNode("div", _hoisted_1$w, [
44617
44916
  createVNode(_component_QueryBar, {
44618
44917
  config: $data.myConfig.queryConfig,
44619
44918
  dictData: $props.dictData,
@@ -44689,9 +44988,9 @@ function _sfc_render$y(_ctx, _cache, $props, $setup, $data, $options) {
44689
44988
  })
44690
44989
  ]);
44691
44990
  }
44692
- var billquerygrid = /* @__PURE__ */ _export_sfc$1(_sfc_main$B, [["render", _sfc_render$y]]);
44991
+ var billquerygrid = /* @__PURE__ */ _export_sfc$1(_sfc_main$A, [["render", _sfc_render$x]]);
44693
44992
  var editgridcard_vue_vue_type_style_index_0_scoped_true_lang = "";
44694
- const _sfc_main$A = {
44993
+ const _sfc_main$z = {
44695
44994
  name: "meditgridcard",
44696
44995
  extends: _sfc_main$1M,
44697
44996
  data() {
@@ -44886,7 +45185,7 @@ const _sfc_main$A = {
44886
45185
  }
44887
45186
  }
44888
45187
  };
44889
- const _hoisted_1$w = ["textContent"];
45188
+ const _hoisted_1$v = ["textContent"];
44890
45189
  const _hoisted_2$n = {
44891
45190
  key: 0,
44892
45191
  style: { "margin-bottom": "10px" }
@@ -44899,7 +45198,7 @@ const _hoisted_6$6 = {
44899
45198
  ref: "page",
44900
45199
  style: { "background": "#eee", "padding-top": "5px", "width": "100%" }
44901
45200
  };
44902
- function _sfc_render$x(_ctx, _cache, $props, $setup, $data, $options) {
45201
+ function _sfc_render$w(_ctx, _cache, $props, $setup, $data, $options) {
44903
45202
  const _component_Icon = resolveComponent("Icon");
44904
45203
  const _component_Row = resolveComponent("Row");
44905
45204
  const _component_Divider = resolveComponent("Divider");
@@ -44950,7 +45249,7 @@ function _sfc_render$x(_ctx, _cache, $props, $setup, $data, $options) {
44950
45249
  createElementVNode("span", {
44951
45250
  style: { "margin-left": "10px", "font-size": "14px", "font-weight": "bold" },
44952
45251
  textContent: toDisplayString($data.myConfig.title)
44953
- }, null, 8, _hoisted_1$w)
45252
+ }, null, 8, _hoisted_1$v)
44954
45253
  ]),
44955
45254
  _: 1
44956
45255
  })
@@ -45211,8 +45510,8 @@ function _sfc_render$x(_ctx, _cache, $props, $setup, $data, $options) {
45211
45510
  _: 3
45212
45511
  }, 512);
45213
45512
  }
45214
- var mEditGridCard = /* @__PURE__ */ _export_sfc$1(_sfc_main$A, [["render", _sfc_render$x], ["__scopeId", "data-v-60ea7df7"]]);
45215
- const _sfc_main$z = {
45513
+ var mEditGridCard = /* @__PURE__ */ _export_sfc$1(_sfc_main$z, [["render", _sfc_render$w], ["__scopeId", "data-v-60ea7df7"]]);
45514
+ const _sfc_main$y = {
45216
45515
  name: "mformcard",
45217
45516
  extends: FormBox,
45218
45517
  data() {
@@ -45270,13 +45569,13 @@ const _sfc_main$z = {
45270
45569
  }
45271
45570
  }
45272
45571
  };
45273
- const _hoisted_1$v = ["textContent"];
45572
+ const _hoisted_1$u = ["textContent"];
45274
45573
  const _hoisted_2$m = {
45275
45574
  key: 1,
45276
45575
  style: { "margin-bottom": "10px" }
45277
45576
  };
45278
45577
  const _hoisted_3$c = ["textContent"];
45279
- function _sfc_render$w(_ctx, _cache, $props, $setup, $data, $options) {
45578
+ function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
45280
45579
  const _component_Icon = resolveComponent("Icon");
45281
45580
  const _component_Row = resolveComponent("Row");
45282
45581
  const _component_Divider = resolveComponent("Divider");
@@ -45322,7 +45621,7 @@ function _sfc_render$w(_ctx, _cache, $props, $setup, $data, $options) {
45322
45621
  createElementVNode("span", {
45323
45622
  style: { "margin-left": "10px", "font-size": "14px", "font-weight": "bold" },
45324
45623
  textContent: toDisplayString($data.myConfig.title)
45325
- }, null, 8, _hoisted_1$v)
45624
+ }, null, 8, _hoisted_1$u)
45326
45625
  ]),
45327
45626
  _: 1
45328
45627
  })
@@ -45444,8 +45743,8 @@ function _sfc_render$w(_ctx, _cache, $props, $setup, $data, $options) {
45444
45743
  _: 1
45445
45744
  });
45446
45745
  }
45447
- var mFormCardBox = /* @__PURE__ */ _export_sfc$1(_sfc_main$z, [["render", _sfc_render$w]]);
45448
- const _sfc_main$y = {
45746
+ var mFormCardBox = /* @__PURE__ */ _export_sfc$1(_sfc_main$y, [["render", _sfc_render$v]]);
45747
+ const _sfc_main$x = {
45449
45748
  name: "mformdetail",
45450
45749
  components: { Formcard: mFormCardBox, EditGridCard: mEditGridCard },
45451
45750
  data() {
@@ -45743,9 +46042,9 @@ const _sfc_main$y = {
45743
46042
  });
45744
46043
  }
45745
46044
  };
45746
- const _hoisted_1$u = ["textContent"];
46045
+ const _hoisted_1$t = ["textContent"];
45747
46046
  const _hoisted_2$l = { style: { "padding-left": "10px" } };
45748
- function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
46047
+ function _sfc_render$u(_ctx, _cache, $props, $setup, $data, $options) {
45749
46048
  const _component_Icon = resolveComponent("Icon");
45750
46049
  const _component_Col = resolveComponent("Col");
45751
46050
  const _component_Button = resolveComponent("Button");
@@ -45791,7 +46090,7 @@ function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
45791
46090
  createElementVNode("span", {
45792
46091
  style: { "margin-left": "16px", "font-size": "14px", "font-weight": "bold" },
45793
46092
  textContent: toDisplayString($options.title)
45794
- }, null, 8, _hoisted_1$u)
46093
+ }, null, 8, _hoisted_1$t)
45795
46094
  ]),
45796
46095
  _: 1
45797
46096
  }),
@@ -46012,7 +46311,7 @@ function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
46012
46311
  _: 1
46013
46312
  });
46014
46313
  }
46015
- var FormDetail = /* @__PURE__ */ _export_sfc$1(_sfc_main$y, [["render", _sfc_render$v]]);
46314
+ var FormDetail = /* @__PURE__ */ _export_sfc$1(_sfc_main$x, [["render", _sfc_render$u]]);
46016
46315
  function random$3(len = 32) {
46017
46316
  const $chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890";
46018
46317
  const maxPos = $chars.length;
@@ -46022,7 +46321,7 @@ function random$3(len = 32) {
46022
46321
  }
46023
46322
  return str;
46024
46323
  }
46025
- const _sfc_main$x = {
46324
+ const _sfc_main$w = {
46026
46325
  name: "mdetail",
46027
46326
  components: {
46028
46327
  FormDetail
@@ -46360,9 +46659,9 @@ const _sfc_main$x = {
46360
46659
  mounted() {
46361
46660
  }
46362
46661
  };
46363
- const _hoisted_1$t = ["textContent"];
46662
+ const _hoisted_1$s = ["textContent"];
46364
46663
  const _hoisted_2$k = { style: { "margin-left": "24px" } };
46365
- function _sfc_render$u(_ctx, _cache, $props, $setup, $data, $options) {
46664
+ function _sfc_render$t(_ctx, _cache, $props, $setup, $data, $options) {
46366
46665
  const _component_Icon = resolveComponent("Icon");
46367
46666
  const _component_Col = resolveComponent("Col");
46368
46667
  const _component_Button = resolveComponent("Button");
@@ -46410,7 +46709,7 @@ function _sfc_render$u(_ctx, _cache, $props, $setup, $data, $options) {
46410
46709
  createElementVNode("span", {
46411
46710
  style: { "margin-left": "10px", "font-size": "14px", "font-weight": "bold" },
46412
46711
  textContent: toDisplayString($data.myConfig.title)
46413
- }, null, 8, _hoisted_1$t)
46712
+ }, null, 8, _hoisted_1$s)
46414
46713
  ]),
46415
46714
  _: 1
46416
46715
  }),
@@ -46533,8 +46832,8 @@ function _sfc_render$u(_ctx, _cache, $props, $setup, $data, $options) {
46533
46832
  _: 1
46534
46833
  });
46535
46834
  }
46536
- var DetailsBoxs = /* @__PURE__ */ _export_sfc$1(_sfc_main$x, [["render", _sfc_render$u]]);
46537
- const _sfc_main$w = {
46835
+ var DetailsBoxs = /* @__PURE__ */ _export_sfc$1(_sfc_main$w, [["render", _sfc_render$t]]);
46836
+ const _sfc_main$v = {
46538
46837
  name: "mappendix",
46539
46838
  components: { EditGridCardS },
46540
46839
  mixins: [load],
@@ -46685,11 +46984,6 @@ const _sfc_main$w = {
46685
46984
  if (this.myConfig.fileSize !== void 0) {
46686
46985
  this.fileSize = Number(this.myConfig.fileSize) * 1024;
46687
46986
  }
46688
- if (this.myConfig.notdelfile) {
46689
- this.myConfig.items[0].visible = true;
46690
- } else {
46691
- this.myConfig.items[0].visible = false;
46692
- }
46693
46987
  if (this.myConfig.uploadfile.indexOf("?") != -1) {
46694
46988
  this.uploadfile = this.myConfig.uploadfile + "&token=" + this.getToken();
46695
46989
  } else {
@@ -47155,7 +47449,7 @@ const _sfc_main$w = {
47155
47449
  }
47156
47450
  }
47157
47451
  };
47158
- const _hoisted_1$s = ["textContent"];
47452
+ const _hoisted_1$r = ["textContent"];
47159
47453
  const _hoisted_2$j = { style: { "padding-left": "24px" } };
47160
47454
  const _hoisted_3$b = { ref: "photo" };
47161
47455
  const _hoisted_4$a = ["src", "data-original"];
@@ -47164,7 +47458,7 @@ const _hoisted_6$5 = {
47164
47458
  ref: "pdf",
47165
47459
  style: { "height": "630px" }
47166
47460
  };
47167
- function _sfc_render$t(_ctx, _cache, $props, $setup, $data, $options) {
47461
+ function _sfc_render$s(_ctx, _cache, $props, $setup, $data, $options) {
47168
47462
  const _component_Icon = resolveComponent("Icon");
47169
47463
  const _component_Row = resolveComponent("Row");
47170
47464
  const _component_Divider = resolveComponent("Divider");
@@ -47207,7 +47501,7 @@ function _sfc_render$t(_ctx, _cache, $props, $setup, $data, $options) {
47207
47501
  createElementVNode("span", {
47208
47502
  style: { "margin-left": "10px", "font-size": "14px", "font-weight": "bold" },
47209
47503
  textContent: toDisplayString($data.myConfig.title)
47210
- }, null, 8, _hoisted_1$s)
47504
+ }, null, 8, _hoisted_1$r)
47211
47505
  ]),
47212
47506
  _: 1
47213
47507
  })
@@ -47288,306 +47582,7 @@ function _sfc_render$t(_ctx, _cache, $props, $setup, $data, $options) {
47288
47582
  _: 1
47289
47583
  });
47290
47584
  }
47291
- var AppendixBoxs2 = /* @__PURE__ */ _export_sfc$1(_sfc_main$w, [["render", _sfc_render$t]]);
47292
- const _sfc_main$v = {
47293
- name: "FormCardBox",
47294
- extends: _sfc_main$1R,
47295
- data() {
47296
- return {
47297
- myConfig: {
47298
- hide: true,
47299
- titleType: 1,
47300
- editBtnText: "\u7F16\u8F91",
47301
- saveBtnText: "\u4FDD\u5B58",
47302
- cancelBtnText: "\u653E\u5F03",
47303
- showBtn: true,
47304
- bordered: true,
47305
- disHover: false,
47306
- showSubSpecialStyle: false,
47307
- divStyle: "padding:0 24px"
47308
- },
47309
- btnReadOnly: false,
47310
- showBtn: true,
47311
- showForm: true,
47312
- showTitle: true,
47313
- editFlag: false,
47314
- saveFlag: false,
47315
- cancelFlag: false,
47316
- pStyle: "",
47317
- iconStyle: ""
47318
- };
47319
- },
47320
- created() {
47321
- this.init();
47322
- },
47323
- computed: {
47324
- cardClass() {
47325
- if (this.myConfig.showSubSpecialStyle) {
47326
- return `efuture-card-head-title-${this.myConfig.titleType} efuture-card-head-title efuture-card-extra-title-${this.myConfig.titleType}`;
47327
- } else {
47328
- if (!this.showForm) {
47329
- return `efuture-card-head-title-${this.myConfig.titleType} efuture-card-head-title-nobottom efuture-card-extra-title-${this.myConfig.titleType}`;
47330
- } else {
47331
- return `efuture-card-head-title-${this.myConfig.titleType} efuture-card-extra-title-${this.myConfig.titleType}`;
47332
- }
47333
- }
47334
- },
47335
- titleClass() {
47336
- return `efuture-title-font-${this.myConfig.titleType}`;
47337
- }
47338
- },
47339
- methods: {
47340
- customInit() {
47341
- if (this.myConfig.hide) {
47342
- this.pStyle = "cursor:pointer";
47343
- this.iconStyle = "transform: rotate(90deg)";
47344
- }
47345
- if (!this.myConfig.title) {
47346
- if (this.myConfig.titleType !== 1) {
47347
- this.showTitle = true;
47348
- } else {
47349
- this.showTitle = false;
47350
- }
47351
- }
47352
- if (this.myConfig.readOnly !== void 0) {
47353
- this.readOnly = this.myConfig.readOnly;
47354
- }
47355
- if (this.myConfig.titleType !== 1) {
47356
- if (this.config.hide === void 0) {
47357
- this.myConfig.hide = false;
47358
- }
47359
- if (this.config.bordered === void 0) {
47360
- this.myConfig.bordered = false;
47361
- }
47362
- if (this.config.disHover === void 0) {
47363
- this.myConfig.disHover = true;
47364
- }
47365
- }
47366
- this.showBtn = this.myConfig.showBtn;
47367
- if (this.myConfig.cancelBtn !== void 0) {
47368
- this.cancelFlag = this.myConfig.cancelBtn;
47369
- }
47370
- },
47371
- setFormReadOnly(value) {
47372
- this.editFlag = value;
47373
- if (!this.myConfig.items || this.myConfig.items.length === 0) {
47374
- return false;
47375
- }
47376
- let self2 = this;
47377
- this.myConfig.items.forEach((el2) => {
47378
- let name2 = "";
47379
- if (el2.name) {
47380
- name2 = el2.name;
47381
- } else if (el2.sname) {
47382
- name2 = el2.sname;
47383
- }
47384
- if (!value) {
47385
- if (this.myConfig.cellbeginedit) {
47386
- let obj = {};
47387
- obj.name = name2;
47388
- obj.form = this.$Method.copy(this.form);
47389
- obj.formObject = self2;
47390
- let flag = this.myConfig.cellbeginedit(obj);
47391
- if (flag) {
47392
- this.setReadOnly(name2, value);
47393
- } else {
47394
- this.setReadOnly(name2, !value);
47395
- }
47396
- } else {
47397
- this.setReadOnly(name2, value);
47398
- }
47399
- } else {
47400
- this.setReadOnly(name2, value);
47401
- }
47402
- });
47403
- },
47404
- editForm() {
47405
- let flag = true;
47406
- if (this.myConfig.editObjectBefore) {
47407
- flag = this.myConfig.editObjectBefore(this.myConfig.name);
47408
- }
47409
- if (flag) {
47410
- this.setFormReadOnly(false);
47411
- let obj = {};
47412
- obj.name = "editForm";
47413
- obj.formname = this.myConfig.name;
47414
- this.$emit("doAction", obj);
47415
- }
47416
- },
47417
- cancelForm() {
47418
- this.setData(this.oldForm);
47419
- this.setFormReadOnly(true);
47420
- let obj = {};
47421
- obj.name = "cancelForm";
47422
- obj.formname = this.myConfig.name;
47423
- this.$emit("doAction", obj);
47424
- },
47425
- saveForm() {
47426
- this.checkValidate();
47427
- if (this.errorFlag) {
47428
- return false;
47429
- }
47430
- this.setFormReadOnly(true);
47431
- let obj = {};
47432
- obj.name = "saveForm";
47433
- obj.formname = this.myConfig.name;
47434
- obj.para = this.getData();
47435
- this.$emit("doAction", obj);
47436
- },
47437
- toggle() {
47438
- this.showForm = !this.showForm;
47439
- },
47440
- setShowForm(value) {
47441
- this.showForm = value;
47442
- this.setTitleStyle();
47443
- },
47444
- setTitleStyle() {
47445
- if (this.showForm) {
47446
- this.iconStyle = "transform: rotate(90deg)";
47447
- } else {
47448
- this.iconStyle = "";
47449
- }
47450
- },
47451
- isEdit() {
47452
- return this.editFlag;
47453
- },
47454
- setShowBtn(value) {
47455
- this.showBtn = value;
47456
- },
47457
- setBtnReadOnly(value) {
47458
- this.btnReadOnly = value;
47459
- }
47460
- }
47461
- };
47462
- const _hoisted_1$r = ["textContent"];
47463
- function _sfc_render$s(_ctx, _cache, $props, $setup, $data, $options) {
47464
- const _component_Icon = resolveComponent("Icon");
47465
- const _component_Row = resolveComponent("Row");
47466
- const _component_Divider = resolveComponent("Divider");
47467
- const _component_ControlBox = resolveComponent("ControlBox");
47468
- const _component_FormItem = resolveComponent("FormItem");
47469
- const _component_Col = resolveComponent("Col");
47470
- const _component_Form = resolveComponent("Form");
47471
- const _component_Card = resolveComponent("Card");
47472
- return openBlock(), createBlock(_component_Card, {
47473
- bordered: false,
47474
- padding: 0,
47475
- "dis-hover": ""
47476
- }, {
47477
- default: withCtx(() => [
47478
- $data.showTitle ? (openBlock(), createElementBlock("p", {
47479
- key: 0,
47480
- onClick: _cache[0] || (_cache[0] = (...args) => $options.toggle && $options.toggle(...args)),
47481
- style: { "cursor": "pointer" }
47482
- }, [
47483
- createVNode(_component_Row, {
47484
- type: "flex",
47485
- justify: "start",
47486
- align: "middle",
47487
- style: { "margin-top": "14px", "margin-bottom": "14px" }
47488
- }, {
47489
- default: withCtx(() => [
47490
- withDirectives(createVNode(_component_Icon, {
47491
- custom: "iconfont icon-custom-pack",
47492
- color: "#f3b352",
47493
- size: "14"
47494
- }, null, 512), [
47495
- [vShow, $data.showForm]
47496
- ]),
47497
- withDirectives(createVNode(_component_Icon, {
47498
- color: "#f3b352",
47499
- custom: "iconfont icon-custom-spread",
47500
- size: "14"
47501
- }, null, 512), [
47502
- [vShow, !$data.showForm]
47503
- ]),
47504
- createElementVNode("span", {
47505
- style: { "margin-left": "10px", "font-size": "14px", "font-weight": "bold" },
47506
- textContent: toDisplayString($data.myConfig.title)
47507
- }, null, 8, _hoisted_1$r)
47508
- ]),
47509
- _: 1
47510
- })
47511
- ])) : createCommentVNode("", true),
47512
- $data.showTitle ? (openBlock(), createBlock(_component_Divider, {
47513
- key: 1,
47514
- style: { "margin-top": "0px", "margin-bottom": "10px", "margin-left": "24px" }
47515
- })) : createCommentVNode("", true),
47516
- withDirectives(createElementVNode("div", {
47517
- style: normalizeStyle($data.myConfig.divStyle)
47518
- }, [
47519
- createVNode(_component_Form, {
47520
- ref: "form",
47521
- model: _ctx.form,
47522
- rules: _ctx.formRules,
47523
- "label-position": $data.myConfig.labelPosition,
47524
- "label-width": $data.myConfig.labelWidth,
47525
- inline: $data.myConfig.inline,
47526
- id: $data.myConfig.name,
47527
- onSubmit: _cache[1] || (_cache[1] = withModifiers(() => {
47528
- }, ["prevent"]))
47529
- }, {
47530
- default: withCtx(() => [
47531
- createVNode(_component_Row, {
47532
- type: "flex",
47533
- justify: "start"
47534
- }, {
47535
- default: withCtx(() => [
47536
- (openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.items, (item, index) => {
47537
- return openBlock(), createElementBlock(Fragment, {
47538
- key: "form_" + index
47539
- }, [
47540
- item.status ? withDirectives((openBlock(), createBlock(_component_Col, {
47541
- key: 0,
47542
- span: _ctx.initFormItemCol(index)
47543
- }, {
47544
- default: withCtx(() => [
47545
- item.type !== "Divider" && item.status && item.visible !== false ? (openBlock(), createBlock(_component_FormItem, {
47546
- key: 0,
47547
- label: item.label,
47548
- prop: item.name || item.sname,
47549
- style: normalizeStyle(_ctx.getFormItemStyle(item)),
47550
- "show-message": false
47551
- }, {
47552
- default: withCtx(() => [
47553
- createVNode(_component_ControlBox, {
47554
- ref_for: true,
47555
- ref: item.name || item.sname,
47556
- valueData: _ctx.form,
47557
- config: item,
47558
- onInputValue: _ctx.input,
47559
- onDoAction: _ctx.doAction
47560
- }, null, 8, ["valueData", "config", "onInputValue", "onDoAction"])
47561
- ]),
47562
- _: 2
47563
- }, 1032, ["label", "prop", "style"])) : createCommentVNode("", true),
47564
- item.type === "Divider" ? (openBlock(), createBlock(_component_ControlBox, {
47565
- key: 1,
47566
- ref_for: true,
47567
- ref: item.dividerName,
47568
- config: item
47569
- }, null, 8, ["config"])) : createCommentVNode("", true)
47570
- ]),
47571
- _: 2
47572
- }, 1032, ["span"])), [
47573
- [vShow, item.visible !== false]
47574
- ]) : createCommentVNode("", true)
47575
- ], 64);
47576
- }), 128))
47577
- ]),
47578
- _: 1
47579
- })
47580
- ]),
47581
- _: 1
47582
- }, 8, ["model", "rules", "label-position", "label-width", "inline", "id"])
47583
- ], 4), [
47584
- [vShow, $data.showForm]
47585
- ])
47586
- ]),
47587
- _: 1
47588
- });
47589
- }
47590
- var FormCardBox2 = /* @__PURE__ */ _export_sfc$1(_sfc_main$v, [["render", _sfc_render$s]]);
47585
+ var AppendixBoxs2 = /* @__PURE__ */ _export_sfc$1(_sfc_main$v, [["render", _sfc_render$s]]);
47591
47586
  const _sfc_main$u = {
47592
47587
  name: "mbilldetailform",
47593
47588
  components: { AppendixBoxs2, Formcard: mFormCardBox, EditGridCardS: mEditGridCard, DetailsBoxs, AppendixBoxs: mAppendixBoxs, FormCardBox2 },
@@ -135649,7 +135644,7 @@ const components = {
135649
135644
  BillBox,
135650
135645
  ShowText,
135651
135646
  BillImport,
135652
- TreeBoxBase: _sfc_main$17,
135647
+ TreeBoxBase: _sfc_main$16,
135653
135648
  TreeBox,
135654
135649
  CommonIcon,
135655
135650
  RadioGroupBox,