@fecp/designer 5.5.53 → 5.5.57

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.
Files changed (42) hide show
  1. package/es/designer/package.json.mjs +1 -1
  2. package/es/designer/src/packages/dialog/useDialogDialog.mjs +1 -1
  3. package/es/designer/src/packages/dialogGlobal/index.vue.mjs +1 -1
  4. package/es/designer/src/packages/dialogGlobal/useDialogGlobalDialog.mjs +1 -1
  5. package/es/designer/src/packages/form/default.mjs +1 -0
  6. package/es/designer/src/packages/form/formSetting.vue.mjs +27 -20
  7. package/es/designer/src/packages/form/property/widgets.vue.mjs +2 -2
  8. package/es/designer/src/packages/table/index.vue.mjs +1 -1
  9. package/es/designer.css +299 -203
  10. package/es/packages/vue/src/components/details/main/Main.vue.mjs +7 -4
  11. package/es/packages/vue/src/components/details/main/index.mjs +2 -2
  12. package/es/packages/vue/src/components/forms/form/Form.vue.mjs +161 -67
  13. package/es/packages/vue/src/components/forms/form/FormAnchorNav.vue.mjs +109 -0
  14. package/es/packages/vue/src/components/forms/form/RightAnchorNav.vue.mjs +126 -0
  15. package/es/packages/vue/src/components/forms/h2/H2.vue.mjs +7 -4
  16. package/es/packages/vue/src/components/forms/subTable/SubTable.vue.mjs +3 -2
  17. package/es/packages/vue/src/components/layout/Layout.vue.mjs +9 -17
  18. package/es/packages/vue/src/components/table/DynamicQuery.vue.mjs +4 -2
  19. package/es/packages/vue/src/components/table/Table.vue.mjs +18 -1
  20. package/es/packages/vue/src/components/table/TableFilter.vue.mjs +3 -2
  21. package/es/packages/vue/src/utils/eventBus.mjs +5 -0
  22. package/lib/designer/package.json.js +1 -1
  23. package/lib/designer/src/packages/dialog/useDialogDialog.js +1 -1
  24. package/lib/designer/src/packages/dialogGlobal/index.vue.js +1 -1
  25. package/lib/designer/src/packages/dialogGlobal/useDialogGlobalDialog.js +1 -1
  26. package/lib/designer/src/packages/form/default.js +1 -0
  27. package/lib/designer/src/packages/form/formSetting.vue.js +33 -26
  28. package/lib/designer/src/packages/form/property/widgets.vue.js +2 -2
  29. package/lib/designer/src/packages/table/index.vue.js +1 -1
  30. package/lib/designer.css +299 -203
  31. package/lib/packages/vue/src/components/details/main/Main.vue.js +7 -4
  32. package/lib/packages/vue/src/components/forms/form/Form.vue.js +166 -72
  33. package/lib/packages/vue/src/components/forms/form/FormAnchorNav.vue.js +109 -0
  34. package/lib/packages/vue/src/components/forms/form/RightAnchorNav.vue.js +126 -0
  35. package/lib/packages/vue/src/components/forms/h2/H2.vue.js +7 -4
  36. package/lib/packages/vue/src/components/forms/subTable/SubTable.vue.js +3 -2
  37. package/lib/packages/vue/src/components/layout/Layout.vue.js +9 -17
  38. package/lib/packages/vue/src/components/table/DynamicQuery.vue.js +4 -2
  39. package/lib/packages/vue/src/components/table/Table.vue.js +18 -1
  40. package/lib/packages/vue/src/components/table/TableFilter.vue.js +3 -2
  41. package/lib/packages/vue/src/utils/eventBus.js +5 -0
  42. package/package.json +1 -1
@@ -2,14 +2,12 @@ import "../../../../../node_modules/element-plus/es/index.mjs";
2
2
  /* empty css */
3
3
  /* empty css */
4
4
  /* empty css */
5
- /* empty css */
6
5
  import { ref, resolveComponent, resolveDirective, withDirectives, createBlock, openBlock, withCtx, createVNode, createElementVNode, unref, isRef, renderSlot, createCommentVNode } from "vue";
7
6
  import { cloneDeep } from "../../utils/common.mjs";
8
7
  /* empty css */
9
8
  import _export_sfc from "../../../../../_virtual/_plugin-vue_export-helper.mjs";
10
9
  import { ElRow } from "../../../../../node_modules/element-plus/es/components/row/index.mjs";
11
10
  import { ElCol } from "../../../../../node_modules/element-plus/es/components/col/index.mjs";
12
- import { ElScrollbar } from "../../../../../node_modules/element-plus/es/components/scrollbar/index.mjs";
13
11
  const _hoisted_1 = { class: "grid-content" };
14
12
  const _hoisted_2 = { class: "grid-content-statistics" };
15
13
  const _sfc_main = {
@@ -46,7 +44,6 @@ const _sfc_main = {
46
44
  }
47
45
  return (_ctx, _cache) => {
48
46
  const _component_fec_form = resolveComponent("fec-form");
49
- const _component_el_scrollbar = ElScrollbar;
50
47
  const _component_el_col = ElCol;
51
48
  const _component_el_row = ElRow;
52
49
  const _directive_fec_layout = resolveDirective("fec-layout");
@@ -63,19 +60,14 @@ const _sfc_main = {
63
60
  }, {
64
61
  default: withCtx(() => [
65
62
  createElementVNode("div", _hoisted_1, [
66
- createVNode(_component_el_scrollbar, { ref: "scrollbarRef" }, {
67
- default: withCtx(() => [
68
- createVNode(_component_fec_form, {
69
- ref: "formRef",
70
- templateKey: __props.templateKey,
71
- modelValue: unref(formData),
72
- "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => isRef(formData) ? formData.value = $event : null),
73
- onLoaded: loaded,
74
- initFormMode: __props.initFormMode
75
- }, null, 8, ["templateKey", "modelValue", "initFormMode"])
76
- ]),
77
- _: 1
78
- }, 512)
63
+ createVNode(_component_fec_form, {
64
+ ref: "formRef",
65
+ templateKey: __props.templateKey,
66
+ modelValue: unref(formData),
67
+ "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => isRef(formData) ? formData.value = $event : null),
68
+ onLoaded: loaded,
69
+ initFormMode: __props.initFormMode
70
+ }, null, 8, ["templateKey", "modelValue", "initFormMode"])
79
71
  ])
80
72
  ]),
81
73
  _: 1
@@ -99,7 +91,7 @@ const _sfc_main = {
99
91
  };
100
92
  }
101
93
  };
102
- const _Layout = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-87f04a91"]]);
94
+ const _Layout = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-1eb7b697"]]);
103
95
  export {
104
96
  _Layout as default
105
97
  };
@@ -320,6 +320,7 @@ const _sfc_main = {
320
320
  placeholder: "请输入查询条件",
321
321
  class: "search-input",
322
322
  clearable: "",
323
+ size: "default",
323
324
  onKeyup: onSearchInputKeyup
324
325
  }, createSlots({
325
326
  suffix: withCtx(() => [
@@ -386,7 +387,8 @@ const _sfc_main = {
386
387
  model: filterValues.value,
387
388
  class: "filter-form",
388
389
  "label-width": "100px",
389
- inline: ""
390
+ inline: "",
391
+ size: "default"
390
392
  }, {
391
393
  default: withCtx(() => [
392
394
  createElementVNode("div", _hoisted_10, [
@@ -483,7 +485,7 @@ const _sfc_main = {
483
485
  };
484
486
  }
485
487
  };
486
- const DynamicQuery = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-e95c842d"]]);
488
+ const DynamicQuery = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-ba490486"]]);
487
489
  export {
488
490
  DynamicQuery as default
489
491
  };
@@ -40,6 +40,7 @@ import _export_sfc from "../../../../../_virtual/_plugin-vue_export-helper.mjs";
40
40
  /* empty css */
41
41
  /* empty css */
42
42
  import getJsonAsyncUtil from "../../utils/getJsonAsyncUtil.mjs";
43
+ import emitter from "../../utils/eventBus.mjs";
43
44
  /* empty css */
44
45
  import { ElContainer } from "../../../../../node_modules/element-plus/es/components/container/index.mjs";
45
46
  import { ElMessage } from "../../../../../node_modules/element-plus/es/components/message/index.mjs";
@@ -120,6 +121,10 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
120
121
  btnRollbackEvent: {
121
122
  type: Object,
122
123
  default: {}
124
+ },
125
+ subTableConfig: {
126
+ type: Object,
127
+ default: {}
123
128
  }
124
129
  },
125
130
  emits: [
@@ -549,6 +554,12 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
549
554
  const handleInitRendered = ({ visibleColumn, visibleData, $event }) => {
550
555
  const offsetHeight = fecTableContainerRef.value.$el.offsetHeight;
551
556
  emit("height-loaded", localConfig.value, offsetHeight);
557
+ if ((visibleData == null ? void 0 : visibleData.length) > 0) {
558
+ emitter.emit("onSubTableDataLoaded", {
559
+ subTableConfig: props.subTableConfig,
560
+ visibleData
561
+ });
562
+ }
552
563
  };
553
564
  const handleDataRendered = ({
554
565
  isReload,
@@ -558,6 +569,12 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
558
569
  }) => {
559
570
  const offsetHeight = fecTableContainerRef.value.$el.offsetHeight;
560
571
  emit("height-loaded", localConfig.value, offsetHeight);
572
+ if ((visibleData == null ? void 0 : visibleData.length) > 0) {
573
+ emitter.emit("onSubTableDataLoaded", {
574
+ subTableConfig: props.subTableConfig,
575
+ visibleData
576
+ });
577
+ }
561
578
  };
562
579
  const handleFilterSearch = (filters) => {
563
580
  var _a, _b;
@@ -971,7 +988,7 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
971
988
  };
972
989
  }
973
990
  });
974
- const _Table = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-b224babf"]]);
991
+ const _Table = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-3726d701"]]);
975
992
  export {
976
993
  _Table as default
977
994
  };
@@ -52,7 +52,7 @@ const _sfc_main = {
52
52
  setup(__props, { expose: __expose, emit: __emit }) {
53
53
  var _a;
54
54
  useCssVars((_ctx) => ({
55
- "7cffb288": `${config.value.collapseRows * 90}px`
55
+ "12f9d7c1": `${config.value.collapseRows * 90}px`
56
56
  }));
57
57
  const props = __props;
58
58
  const emit = __emit;
@@ -188,6 +188,7 @@ const _sfc_main = {
188
188
  "label-position": "right",
189
189
  style: normalizeStyle({ "--column-count": config.value.columnCount }),
190
190
  tabindex: "0",
191
+ size: "default",
191
192
  onKeydown: withKeys(handleSearch, ["enter"])
192
193
  }, {
193
194
  default: withCtx(() => [
@@ -300,7 +301,7 @@ const _sfc_main = {
300
301
  };
301
302
  }
302
303
  };
303
- const TableFilter = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-0d77bdaf"]]);
304
+ const TableFilter = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-220e0331"]]);
304
305
  export {
305
306
  TableFilter as default
306
307
  };
@@ -0,0 +1,5 @@
1
+ import mitt from "../../../../node_modules/mitt/dist/mitt.mjs";
2
+ const emitter = mitt();
3
+ export {
4
+ emitter as default
5
+ };
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
3
- const version = "5.5.53";
3
+ const version = "5.5.57";
4
4
  const packageJson = {
5
5
  version
6
6
  };
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
- const index = require("./index.vue2.js");
3
+ const index = require("./index.vue.js");
4
4
  const Vue = require("vue");
5
5
  function useDialogDialog() {
6
6
  const dialogDialogVisible = Vue.ref(false);
@@ -86,7 +86,7 @@ const widgets = require("../table/property/widgets.vue.js");
86
86
  require("../../../../node_modules/element-plus/theme-chalk/el-tab-pane.css.js");
87
87
  ;/* empty css */
88
88
  ;/* empty css */
89
- ;/* empty css */
89
+ ;/* empty css */
90
90
  ;/* empty css */
91
91
  ;/* empty css */
92
92
  ;/* empty css */
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
- const index = require("./index.vue2.js");
3
+ const index = require("./index.vue.js");
4
4
  const Vue = require("vue");
5
5
  function useDialogGlobalDialog() {
6
6
  const dialogGlobalDialogVisible = Vue.ref(false);
@@ -3,6 +3,7 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
3
  const defaultFormConfig = {
4
4
  fieldsData: [],
5
5
  columns: 2,
6
+ navigationEnabled: false,
6
7
  labelWidth: 120,
7
8
  formMode: "edit",
8
9
  labelPosition: "right",
@@ -2,7 +2,6 @@
2
2
  Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
3
3
  require("../../../../node_modules/element-plus/es/index.js");
4
4
  ;/* empty css */
5
- ;/* empty css */
6
5
  ;/* empty css */
7
6
  ;/* empty css */
8
7
  ;/* empty css */
@@ -12,14 +11,15 @@ require("../../../../node_modules/element-plus/es/index.js");
12
11
  ;/* empty css */
13
12
  ;/* empty css */
14
13
  ;/* empty css */
14
+ ;/* empty css */
15
15
  const Vue = require("vue");
16
16
  const common = require("../utils/common.js");
17
17
  const useDataSourceDialog = require("../dataSource/useDataSourceDialog.js");
18
18
  ;/* empty css */
19
19
  const _pluginVue_exportHelper = require("../../../../_virtual/_plugin-vue_export-helper.js");
20
- const index = require("../../../../node_modules/element-plus/es/components/select/index.js");
21
- const index$1 = require("../../../../node_modules/element-plus/es/components/radio/index.js");
22
- const index$2 = require("../../../../node_modules/element-plus/es/components/switch/index.js");
20
+ const index = require("../../../../node_modules/element-plus/es/components/switch/index.js");
21
+ const index$1 = require("../../../../node_modules/element-plus/es/components/select/index.js");
22
+ const index$2 = require("../../../../node_modules/element-plus/es/components/radio/index.js");
23
23
  const _hoisted_1 = { class: "form-setting" };
24
24
  const _hoisted_2 = { class: "setting-left" };
25
25
  const _hoisted_3 = { class: "setting-right" };
@@ -50,18 +50,25 @@ const _sfc_main = {
50
50
  return formConfig.value.validationRules || [];
51
51
  });
52
52
  return (_ctx, _cache) => {
53
- const _component_el_option = index.ElOption;
54
- const _component_el_select = index.ElSelect;
55
- const _component_el_radio_button = index$1.ElRadioButton;
56
- const _component_el_radio_group = index$1.ElRadioGroup;
57
- const _component_el_switch = index$2.ElSwitch;
53
+ const _component_el_switch = index.ElSwitch;
54
+ const _component_el_option = index$1.ElOption;
55
+ const _component_el_select = index$1.ElSelect;
56
+ const _component_el_radio_button = index$2.ElRadioButton;
57
+ const _component_el_radio_group = index$2.ElRadioGroup;
58
58
  return Vue.openBlock(), Vue.createElementBlock(Vue.Fragment, null, [
59
59
  Vue.createElementVNode("div", _hoisted_1, [
60
60
  Vue.createElementVNode("div", _hoisted_2, [
61
- _cache[10] || (_cache[10] = Vue.createElementVNode("span", { class: "text-label" }, "列数", -1)),
61
+ _cache[11] || (_cache[11] = Vue.createElementVNode("span", { class: "text-label" }, "启用导航", -1)),
62
+ Vue.createVNode(_component_el_switch, {
63
+ modelValue: formConfig.value.navigationEnabled,
64
+ "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => formConfig.value.navigationEnabled = $event),
65
+ size: "small"
66
+ }, null, 8, ["modelValue"]),
67
+ _cache[12] || (_cache[12] = Vue.createElementVNode("div", { class: "setting-divider" }, null, -1)),
68
+ _cache[13] || (_cache[13] = Vue.createElementVNode("span", { class: "text-label" }, "列数", -1)),
62
69
  Vue.createVNode(_component_el_select, {
63
70
  modelValue: formConfig.value.columns,
64
- "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => formConfig.value.columns = $event),
71
+ "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => formConfig.value.columns = $event),
65
72
  size: "small",
66
73
  style: { "width": "100px" }
67
74
  }, {
@@ -85,28 +92,28 @@ const _sfc_main = {
85
92
  ]),
86
93
  _: 1
87
94
  }, 8, ["modelValue"]),
88
- _cache[11] || (_cache[11] = Vue.createElementVNode("div", { class: "setting-divider" }, null, -1)),
89
- _cache[12] || (_cache[12] = Vue.createElementVNode("span", { class: "text-label" }, "标签位置", -1)),
95
+ _cache[14] || (_cache[14] = Vue.createElementVNode("div", { class: "setting-divider" }, null, -1)),
96
+ _cache[15] || (_cache[15] = Vue.createElementVNode("span", { class: "text-label" }, "标签位置", -1)),
90
97
  Vue.createVNode(_component_el_radio_group, {
91
98
  modelValue: formConfig.value.labelPosition,
92
- "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => formConfig.value.labelPosition = $event),
99
+ "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => formConfig.value.labelPosition = $event),
93
100
  size: "small"
94
101
  }, {
95
102
  default: Vue.withCtx(() => [
96
103
  Vue.createVNode(_component_el_radio_button, { value: "left" }, {
97
- default: Vue.withCtx(() => _cache[5] || (_cache[5] = [
104
+ default: Vue.withCtx(() => _cache[6] || (_cache[6] = [
98
105
  Vue.createTextVNode("左对齐")
99
106
  ])),
100
107
  _: 1
101
108
  }),
102
109
  Vue.createVNode(_component_el_radio_button, { value: "right" }, {
103
- default: Vue.withCtx(() => _cache[6] || (_cache[6] = [
110
+ default: Vue.withCtx(() => _cache[7] || (_cache[7] = [
104
111
  Vue.createTextVNode("右对齐")
105
112
  ])),
106
113
  _: 1
107
114
  }),
108
115
  Vue.createVNode(_component_el_radio_button, { value: "top" }, {
109
- default: Vue.withCtx(() => _cache[7] || (_cache[7] = [
116
+ default: Vue.withCtx(() => _cache[8] || (_cache[8] = [
110
117
  Vue.createTextVNode("顶部对齐")
111
118
  ])),
112
119
  _: 1
@@ -114,22 +121,22 @@ const _sfc_main = {
114
121
  ]),
115
122
  _: 1
116
123
  }, 8, ["modelValue"]),
117
- _cache[13] || (_cache[13] = Vue.createElementVNode("div", { class: "setting-divider" }, null, -1)),
118
- _cache[14] || (_cache[14] = Vue.createElementVNode("span", { class: "text-label" }, "表单模式", -1)),
124
+ _cache[16] || (_cache[16] = Vue.createElementVNode("div", { class: "setting-divider" }, null, -1)),
125
+ _cache[17] || (_cache[17] = Vue.createElementVNode("span", { class: "text-label" }, "表单模式", -1)),
119
126
  Vue.createVNode(_component_el_radio_group, {
120
127
  modelValue: formConfig.value.formMode,
121
- "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => formConfig.value.formMode = $event),
128
+ "onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => formConfig.value.formMode = $event),
122
129
  size: "small"
123
130
  }, {
124
131
  default: Vue.withCtx(() => [
125
132
  Vue.createVNode(_component_el_radio_button, { value: "edit" }, {
126
- default: Vue.withCtx(() => _cache[8] || (_cache[8] = [
133
+ default: Vue.withCtx(() => _cache[9] || (_cache[9] = [
127
134
  Vue.createTextVNode("编辑")
128
135
  ])),
129
136
  _: 1
130
137
  }),
131
138
  Vue.createVNode(_component_el_radio_button, { value: "query" }, {
132
- default: Vue.withCtx(() => _cache[9] || (_cache[9] = [
139
+ default: Vue.withCtx(() => _cache[10] || (_cache[10] = [
133
140
  Vue.createTextVNode("查看")
134
141
  ])),
135
142
  _: 1
@@ -139,21 +146,21 @@ const _sfc_main = {
139
146
  }, 8, ["modelValue"])
140
147
  ]),
141
148
  Vue.createElementVNode("div", _hoisted_3, [
142
- _cache[15] || (_cache[15] = Vue.createElementVNode("span", { class: "text-label" }, "显示字段名", -1)),
149
+ _cache[18] || (_cache[18] = Vue.createElementVNode("span", { class: "text-label" }, "显示字段名", -1)),
143
150
  Vue.createVNode(_component_el_switch, {
144
151
  modelValue: formConfig.value.showFieldName,
145
- "onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => formConfig.value.showFieldName = $event),
152
+ "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => formConfig.value.showFieldName = $event),
146
153
  size: "small"
147
154
  }, null, 8, ["modelValue"])
148
155
  ])
149
156
  ]),
150
157
  Vue.createVNode(Vue.unref(DataSourceDialog), {
151
158
  modelValue: Vue.unref(dataSourceDialogVisible),
152
- "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => Vue.isRef(dataSourceDialogVisible) ? dataSourceDialogVisible.value = $event : null)
159
+ "onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => Vue.isRef(dataSourceDialogVisible) ? dataSourceDialogVisible.value = $event : null)
153
160
  }, null, 8, ["modelValue"])
154
161
  ], 64);
155
162
  };
156
163
  }
157
164
  };
158
- const FormSetting = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-37091686"]]);
165
+ const FormSetting = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-22405d4d"]]);
159
166
  exports.default = FormSetting;
@@ -54,8 +54,8 @@ const _pluginVue_exportHelper = require("../../../../../_virtual/_plugin-vue_exp
54
54
  require("../../../components/TemplateSelector.vue.js");
55
55
  require("../../table/default.js");
56
56
  ;/* empty css */
57
- ;/* empty css */
58
- ;/* empty css */
57
+ ;/* empty css */
58
+ ;/* empty css */
59
59
  require("../../../store/index.js");
60
60
  ;/* empty css */
61
61
  const index$2 = require("../../../../../node_modules/element-plus/es/components/collapse/index.js");
@@ -325,5 +325,5 @@ const _sfc_main = {
325
325
  };
326
326
  }
327
327
  };
328
- const tableWorkArea = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-4248fdc3"]]);
328
+ const tableWorkArea = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-87fe3266"]]);
329
329
  exports.default = tableWorkArea;