@fecp/designer 5.4.79 → 5.4.80

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 (37) hide show
  1. package/es/designer/package.json.mjs +1 -1
  2. package/es/designer/src/packages/dialog/index.vue2.mjs +1 -1
  3. package/es/designer/src/packages/dialog/useDialogDialog.mjs +1 -1
  4. package/es/designer/src/packages/dialogGlobal/index.vue2.mjs +1 -1
  5. package/es/designer/src/packages/dialogGlobal/useDialogGlobalDialog.mjs +1 -1
  6. package/es/designer/src/packages/form/formSetting.vue.mjs +16 -36
  7. package/es/designer/src/packages/form/property/widgets.vue.mjs +2 -2
  8. package/es/designer.css +99 -78
  9. package/es/packages/vue/src/components/dialog/DialogRenderer.vue2.mjs +1 -1
  10. package/es/packages/vue/src/components/forms/formItem/FormItem.vue.mjs +3 -3
  11. package/es/packages/vue/src/components/forms/select/Select.vue.mjs +1 -1
  12. package/es/packages/vue/src/components/forms/text/Text.vue.mjs +1 -1
  13. package/es/packages/vue/src/components/table/CustomButtons.vue.mjs +6 -3
  14. package/es/packages/vue/src/components/table/DynamicQuery.vue.mjs +25 -8
  15. package/es/packages/vue/src/components/table/TableColumn.vue.mjs +3 -2
  16. package/es/packages/vue/src/components/table/TableFilter.vue.mjs +14 -18
  17. package/es/packages/vue/src/composables/usePageEvents.mjs +1 -1
  18. package/es/packages/vue/src/utils/datasource.mjs +1 -1
  19. package/lib/designer/package.json.js +1 -1
  20. package/lib/designer/src/packages/dialog/index.vue2.js +1 -1
  21. package/lib/designer/src/packages/dialog/useDialogDialog.js +1 -1
  22. package/lib/designer/src/packages/dialogGlobal/index.vue2.js +1 -1
  23. package/lib/designer/src/packages/dialogGlobal/useDialogGlobalDialog.js +1 -1
  24. package/lib/designer/src/packages/form/formSetting.vue.js +21 -41
  25. package/lib/designer/src/packages/form/property/widgets.vue.js +2 -2
  26. package/lib/designer.css +99 -78
  27. package/lib/packages/vue/src/components/dialog/DialogRenderer.vue2.js +1 -1
  28. package/lib/packages/vue/src/components/forms/formItem/FormItem.vue.js +3 -3
  29. package/lib/packages/vue/src/components/forms/select/Select.vue.js +1 -1
  30. package/lib/packages/vue/src/components/forms/text/Text.vue.js +1 -1
  31. package/lib/packages/vue/src/components/table/CustomButtons.vue.js +5 -2
  32. package/lib/packages/vue/src/components/table/DynamicQuery.vue.js +24 -7
  33. package/lib/packages/vue/src/components/table/TableColumn.vue.js +3 -2
  34. package/lib/packages/vue/src/components/table/TableFilter.vue.js +18 -22
  35. package/lib/packages/vue/src/composables/usePageEvents.js +1 -1
  36. package/lib/packages/vue/src/utils/datasource.js +1 -1
  37. package/package.json +1 -1
@@ -1,4 +1,4 @@
1
- const version = "5.4.79";
1
+ const version = "5.4.80";
2
2
  const packageJson = {
3
3
  version
4
4
  };
@@ -982,7 +982,7 @@ const _sfc_main = {
982
982
  };
983
983
  }
984
984
  };
985
- const DialogDialog = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-24bfc32a"]]);
985
+ const DialogDialog = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-47900630"]]);
986
986
  export {
987
987
  DialogDialog as default
988
988
  };
@@ -1,4 +1,4 @@
1
- import DialogDialog from "./index.vue.mjs";
1
+ import DialogDialog from "./index.vue2.mjs";
2
2
  import { ref } from "vue";
3
3
  function useDialogDialog() {
4
4
  const dialogDialogVisible = ref(false);
@@ -1029,7 +1029,7 @@ const _sfc_main = {
1029
1029
  };
1030
1030
  }
1031
1031
  };
1032
- const DialogGlobalDialog = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-e641bf90"]]);
1032
+ const DialogGlobalDialog = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-60556147"]]);
1033
1033
  export {
1034
1034
  DialogGlobalDialog as default
1035
1035
  };
@@ -1,4 +1,4 @@
1
- import DialogGlobalDialog from "./index.vue.mjs";
1
+ import DialogGlobalDialog from "./index.vue2.mjs";
2
2
  import { ref } from "vue";
3
3
  function useDialogGlobalDialog() {
4
4
  const dialogGlobalDialogVisible = ref(false);
@@ -4,8 +4,6 @@ import "../../../../node_modules/element-plus/es/index.mjs";
4
4
  /* empty css */
5
5
  /* empty css */
6
6
  /* empty css */
7
- /* empty css */
8
- /* empty css */
9
7
  /* empty css */
10
8
  /* empty css */
11
9
  /* empty css */
@@ -18,7 +16,6 @@ import { useDataSourceDialog } from "../dataSource/useDataSourceDialog.mjs";
18
16
  /* empty css */
19
17
  import _export_sfc from "../../../../_virtual/_plugin-vue_export-helper.mjs";
20
18
  import { ElSelect, ElOption } from "../../../../node_modules/element-plus/es/components/select/index.mjs";
21
- import { ElInputNumber } from "../../../../node_modules/element-plus/es/components/input-number/index.mjs";
22
19
  import { ElRadioGroup, ElRadioButton } from "../../../../node_modules/element-plus/es/components/radio/index.mjs";
23
20
  import { ElSwitch } from "../../../../node_modules/element-plus/es/components/switch/index.mjs";
24
21
  const _hoisted_1 = { class: "form-setting" };
@@ -53,14 +50,13 @@ const _sfc_main = {
53
50
  return (_ctx, _cache) => {
54
51
  const _component_el_option = ElOption;
55
52
  const _component_el_select = ElSelect;
56
- const _component_el_input_number = ElInputNumber;
57
53
  const _component_el_radio_button = ElRadioButton;
58
54
  const _component_el_radio_group = ElRadioGroup;
59
55
  const _component_el_switch = ElSwitch;
60
56
  return openBlock(), createElementBlock(Fragment, null, [
61
57
  createElementVNode("div", _hoisted_1, [
62
58
  createElementVNode("div", _hoisted_2, [
63
- _cache[12] || (_cache[12] = createElementVNode("span", { class: "text-label" }, "列数", -1)),
59
+ _cache[10] || (_cache[10] = createElementVNode("span", { class: "text-label" }, "列数", -1)),
64
60
  createVNode(_component_el_select, {
65
61
  modelValue: formConfig.value.columns,
66
62
  "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => formConfig.value.columns = $event),
@@ -87,44 +83,28 @@ const _sfc_main = {
87
83
  ]),
88
84
  _: 1
89
85
  }, 8, ["modelValue"]),
90
- _cache[13] || (_cache[13] = createElementVNode("div", { class: "setting-divider" }, null, -1)),
91
- _cache[14] || (_cache[14] = createElementVNode("span", { class: "text-label" }, "标签宽度", -1)),
92
- createVNode(_component_el_input_number, {
93
- modelValue: formConfig.value.labelWidth,
94
- "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => formConfig.value.labelWidth = $event),
95
- min: 70,
96
- max: 200,
97
- size: "small",
98
- "controls-position": "right",
99
- style: { "width": "80px" }
100
- }, {
101
- append: withCtx(() => _cache[6] || (_cache[6] = [
102
- createTextVNode("px")
103
- ])),
104
- _: 1
105
- }, 8, ["modelValue"]),
106
- _cache[15] || (_cache[15] = createElementVNode("div", { class: "setting-divider" }, null, -1)),
107
- _cache[16] || (_cache[16] = createElementVNode("span", { class: "text-label" }, "标签位置", -1)),
86
+ _cache[11] || (_cache[11] = createElementVNode("div", { class: "setting-divider" }, null, -1)),
87
+ _cache[12] || (_cache[12] = createElementVNode("span", { class: "text-label" }, "标签位置", -1)),
108
88
  createVNode(_component_el_radio_group, {
109
89
  modelValue: formConfig.value.labelPosition,
110
- "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => formConfig.value.labelPosition = $event),
90
+ "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => formConfig.value.labelPosition = $event),
111
91
  size: "small"
112
92
  }, {
113
93
  default: withCtx(() => [
114
94
  createVNode(_component_el_radio_button, { value: "left" }, {
115
- default: withCtx(() => _cache[7] || (_cache[7] = [
95
+ default: withCtx(() => _cache[5] || (_cache[5] = [
116
96
  createTextVNode("左对齐")
117
97
  ])),
118
98
  _: 1
119
99
  }),
120
100
  createVNode(_component_el_radio_button, { value: "right" }, {
121
- default: withCtx(() => _cache[8] || (_cache[8] = [
101
+ default: withCtx(() => _cache[6] || (_cache[6] = [
122
102
  createTextVNode("右对齐")
123
103
  ])),
124
104
  _: 1
125
105
  }),
126
106
  createVNode(_component_el_radio_button, { value: "top" }, {
127
- default: withCtx(() => _cache[9] || (_cache[9] = [
107
+ default: withCtx(() => _cache[7] || (_cache[7] = [
128
108
  createTextVNode("顶部对齐")
129
109
  ])),
130
110
  _: 1
@@ -132,22 +112,22 @@ const _sfc_main = {
132
112
  ]),
133
113
  _: 1
134
114
  }, 8, ["modelValue"]),
135
- _cache[17] || (_cache[17] = createElementVNode("div", { class: "setting-divider" }, null, -1)),
136
- _cache[18] || (_cache[18] = createElementVNode("span", { class: "text-label" }, "表单模式", -1)),
115
+ _cache[13] || (_cache[13] = createElementVNode("div", { class: "setting-divider" }, null, -1)),
116
+ _cache[14] || (_cache[14] = createElementVNode("span", { class: "text-label" }, "表单模式", -1)),
137
117
  createVNode(_component_el_radio_group, {
138
118
  modelValue: formConfig.value.formMode,
139
- "onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => formConfig.value.formMode = $event),
119
+ "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => formConfig.value.formMode = $event),
140
120
  size: "small"
141
121
  }, {
142
122
  default: withCtx(() => [
143
123
  createVNode(_component_el_radio_button, { value: "edit" }, {
144
- default: withCtx(() => _cache[10] || (_cache[10] = [
124
+ default: withCtx(() => _cache[8] || (_cache[8] = [
145
125
  createTextVNode("编辑")
146
126
  ])),
147
127
  _: 1
148
128
  }),
149
129
  createVNode(_component_el_radio_button, { value: "query" }, {
150
- default: withCtx(() => _cache[11] || (_cache[11] = [
130
+ default: withCtx(() => _cache[9] || (_cache[9] = [
151
131
  createTextVNode("查看")
152
132
  ])),
153
133
  _: 1
@@ -157,23 +137,23 @@ const _sfc_main = {
157
137
  }, 8, ["modelValue"])
158
138
  ]),
159
139
  createElementVNode("div", _hoisted_3, [
160
- _cache[19] || (_cache[19] = createElementVNode("span", { class: "text-label" }, "显示字段名", -1)),
140
+ _cache[15] || (_cache[15] = createElementVNode("span", { class: "text-label" }, "显示字段名", -1)),
161
141
  createVNode(_component_el_switch, {
162
142
  modelValue: formConfig.value.showFieldName,
163
- "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => formConfig.value.showFieldName = $event),
143
+ "onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => formConfig.value.showFieldName = $event),
164
144
  size: "small"
165
145
  }, null, 8, ["modelValue"])
166
146
  ])
167
147
  ]),
168
148
  createVNode(unref(DataSourceDialog), {
169
149
  modelValue: unref(dataSourceDialogVisible),
170
- "onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => isRef(dataSourceDialogVisible) ? dataSourceDialogVisible.value = $event : null)
150
+ "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => isRef(dataSourceDialogVisible) ? dataSourceDialogVisible.value = $event : null)
171
151
  }, null, 8, ["modelValue"])
172
152
  ], 64);
173
153
  };
174
154
  }
175
155
  };
176
- const FormSetting = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-cc559ca7"]]);
156
+ const FormSetting = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-37091686"]]);
177
157
  export {
178
158
  FormSetting as default
179
159
  };
@@ -52,8 +52,8 @@ import _export_sfc from "../../../../../_virtual/_plugin-vue_export-helper.mjs";
52
52
  import "../../../components/TemplateSelector.vue.mjs";
53
53
  import "../../table/default.mjs";
54
54
  /* empty css */
55
- /* empty css */
56
- /* empty css */
55
+ /* empty css */
56
+ /* empty css */
57
57
  import "../../../store/index.mjs";
58
58
  /* empty css */
59
59
  import { ElCollapse, ElCollapseItem } from "../../../../../node_modules/element-plus/es/components/collapse/index.mjs";
package/es/designer.css CHANGED
@@ -4360,7 +4360,7 @@ to {
4360
4360
  }
4361
4361
  .quick-setting-panel .setting-row[data-v-55479df2] .el-checkbox .el-checkbox__label {
4362
4362
  padding-left: 5px;
4363
- }.form-setting[data-v-cc559ca7] {
4363
+ }.form-setting[data-v-37091686] {
4364
4364
  display: flex;
4365
4365
  align-items: center;
4366
4366
  justify-content: space-between;
@@ -4371,35 +4371,35 @@ to {
4371
4371
  background: #f5f7fa;
4372
4372
  border-radius: 4px;
4373
4373
  }
4374
- .form-setting .setting-left[data-v-cc559ca7] {
4374
+ .form-setting .setting-left[data-v-37091686] {
4375
4375
  display: flex;
4376
4376
  align-items: center;
4377
4377
  gap: 12px;
4378
4378
  }
4379
- .form-setting .setting-right[data-v-cc559ca7] {
4379
+ .form-setting .setting-right[data-v-37091686] {
4380
4380
  display: flex;
4381
4381
  align-items: center;
4382
4382
  gap: 12px;
4383
4383
  }
4384
- .form-setting .setting-divider[data-v-cc559ca7] {
4384
+ .form-setting .setting-divider[data-v-37091686] {
4385
4385
  width: 1px;
4386
4386
  height: 20px;
4387
4387
  background: #dcdfe6;
4388
4388
  }
4389
- .form-setting .text-label[data-v-cc559ca7] {
4389
+ .form-setting .text-label[data-v-37091686] {
4390
4390
  font-size: 13px;
4391
4391
  color: #606266;
4392
4392
  }
4393
- .form-setting .data-source-btn.is-configured[data-v-cc559ca7] {
4393
+ .form-setting .data-source-btn.is-configured[data-v-37091686] {
4394
4394
  background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
4395
4395
  border-color: #91d5ff;
4396
4396
  color: #1890ff;
4397
4397
  }
4398
- .form-setting .data-source-btn.is-configured[data-v-cc559ca7]:hover {
4398
+ .form-setting .data-source-btn.is-configured[data-v-37091686]:hover {
4399
4399
  background: linear-gradient(135deg, #e0f2ff 0%, #d6f0ff 100%);
4400
4400
  border-color: #409eff;
4401
4401
  }
4402
- .form-setting .validation-count-tag[data-v-cc559ca7] {
4402
+ .form-setting .validation-count-tag[data-v-37091686] {
4403
4403
  margin-left: 6px;
4404
4404
  height: 16px;
4405
4405
  padding: 0 5px;
@@ -5449,12 +5449,12 @@ body,
5449
5449
  font-size: 13px;
5450
5450
  color: #606266;
5451
5451
  margin-left: 8px;
5452
- }.custom-buttons[data-v-7610c2d4] {
5452
+ }.custom-buttons[data-v-8d29fa72] {
5453
5453
  display: flex;
5454
5454
  align-items: center;
5455
5455
  margin: 0 0 0 0;
5456
5456
  }
5457
- .back-icon[data-v-7610c2d4] {
5457
+ .back-icon[data-v-8d29fa72] {
5458
5458
  display: flex;
5459
5459
  align-items: center;
5460
5460
  justify-content: center;
@@ -5467,15 +5467,15 @@ body,
5467
5467
  margin-left: 4px;
5468
5468
  margin-right: -6px;
5469
5469
  }
5470
- .back-icon .el-icon[data-v-7610c2d4] {
5470
+ .back-icon .el-icon[data-v-8d29fa72] {
5471
5471
  font-size: 14px;
5472
5472
  font-weight: 500;
5473
5473
  color: var(--el-color-primary);
5474
5474
  }
5475
- .back-icon[data-v-7610c2d4]:hover {
5475
+ .back-icon[data-v-8d29fa72]:hover {
5476
5476
  opacity: 0.7;
5477
5477
  }
5478
- .template-name[data-v-7610c2d4] {
5478
+ .template-name[data-v-8d29fa72] {
5479
5479
  font-size: 16px;
5480
5480
  font-weight: 600;
5481
5481
  color: #303133;
@@ -5485,6 +5485,17 @@ body,
5485
5485
  overflow: hidden;
5486
5486
  text-overflow: ellipsis;
5487
5487
  position: relative;
5488
+ display: flex;
5489
+ align-items: center;
5490
+ }
5491
+ .template-name-line[data-v-8d29fa72] {
5492
+ height: 16px;
5493
+ width: 4px;
5494
+ background-color: var(--el-color-primary);
5495
+ display: inline-block;
5496
+ border-radius: 5px;
5497
+ margin-right: 12px;
5498
+ margin-top: 2px;
5488
5499
  }.fec-sub-title[data-v-0105f658] {
5489
5500
  width: 100%;
5490
5501
  height: 100%;
@@ -5846,21 +5857,21 @@ body,
5846
5857
  outline: none;
5847
5858
  box-shadow: 0 1px 0 0 #c0c4cc inset, 0 -1px 0 0 #c0c4cc inset, -1px 0 0 0 #c0c4cc inset;
5848
5859
  }
5849
- .info-icon[data-v-3657e72b] {
5860
+ .info-icon[data-v-3a8e5cc4] {
5850
5861
  margin-left: 4px;
5851
5862
  color: #f5b041;
5852
5863
  cursor: help;
5853
5864
  font-size: 14px;
5854
5865
  }
5855
- .credit-icon[data-v-3657e72b] {
5866
+ .credit-icon[data-v-3a8e5cc4] {
5856
5867
  color: #2e8bff;
5857
5868
  margin-right: 2px;
5858
5869
  }
5859
- .regulation-icon[data-v-3657e72b] {
5870
+ .regulation-icon[data-v-3a8e5cc4] {
5860
5871
  color: #f56c6c;
5861
5872
  margin-right: 2px;
5862
5873
  }
5863
- [data-v-3657e72b] .el-form-item__label {
5874
+ [data-v-3a8e5cc4] .el-form-item__label {
5864
5875
  padding: 0 8px 0 0;
5865
5876
  }
5866
5877
  .el-page-header.is-contentful .el-page-header__main{border-top:1px solid var(--el-border-color-light);margin-top:16px}.el-page-header__header{justify-content:space-between;align-items:center;line-height:24px;display:flex}.el-page-header__left{align-items:center;margin-right:40px;display:flex;position:relative}.el-page-header__back{cursor:pointer;align-items:center;display:flex}.el-page-header__left .el-divider--vertical{margin:0 16px}.el-page-header__icon{align-items:center;margin-right:10px;font-size:16px;display:flex}.el-page-header__icon .el-icon{font-size:inherit}.el-page-header__title{font-size:14px;font-weight:500}.el-page-header__content{color:var(--el-text-color-primary);font-size:18px}.el-page-header__breadcrumb{margin-bottom:16px}.fec-header[data-v-a55fc4ab] {
@@ -5958,10 +5969,10 @@ body,
5958
5969
  }
5959
5970
  [data-v-2e861481] .vgl-item > .el-container {
5960
5971
  height: auto !important;
5961
- }.cell-content .cell-text[data-v-77be03fc] {
5972
+ }.cell-content .cell-text[data-v-25279910] {
5962
5973
  display: inline-block;
5963
5974
  }
5964
- .cell-content .copy-icon[data-v-77be03fc] {
5975
+ .cell-content .copy-icon[data-v-25279910] {
5965
5976
  cursor: pointer;
5966
5977
  color: #909399;
5967
5978
  font-size: 14px;
@@ -5969,16 +5980,16 @@ body,
5969
5980
  top: 4px;
5970
5981
  margin-left: 4px;
5971
5982
  }
5972
- .cell-content .copy-icon[data-v-77be03fc]:hover {
5983
+ .cell-content .copy-icon[data-v-25279910]:hover {
5973
5984
  color: #409eff;
5974
- }.fec-table-filter[data-v-ea506656] {
5985
+ }.fec-table-filter[data-v-73e7d5aa] {
5975
5986
  display: flex;
5976
5987
  background-color: #fff;
5977
5988
  align-items: flex-start;
5978
5989
  gap: 12px;
5979
5990
  padding: 12px 0 8px 0;
5980
5991
  }
5981
- .fec-table-filter .filter-fields[data-v-ea506656] {
5992
+ .fec-table-filter .filter-fields[data-v-73e7d5aa] {
5982
5993
  flex: 1;
5983
5994
  display: grid;
5984
5995
  grid-template-columns: repeat(var(--column-count, 3), 1fr);
@@ -5986,19 +5997,19 @@ body,
5986
5997
  transition: all 0.4s ease;
5987
5998
  overflow: hidden;
5988
5999
  }
5989
- .fec-table-filter .filter-fields.is-collapsed[data-v-ea506656] {
5990
- max-height: var(--129ad2ff);
6000
+ .fec-table-filter .filter-fields.is-collapsed[data-v-73e7d5aa] {
6001
+ max-height: var(--13ca2eb8);
5991
6002
  }
5992
- .fec-table-filter .filter-field[data-v-ea506656] {
6003
+ .fec-table-filter .filter-field[data-v-73e7d5aa] {
5993
6004
  transition: all 0.3s ease;
5994
6005
  }
5995
- .fec-table-filter .filter-field[data-v-ea506656] .el-form-item {
6006
+ .fec-table-filter .filter-field[data-v-73e7d5aa] .el-form-item {
5996
6007
  margin-bottom: 0;
5997
6008
  display: flex;
5998
6009
  flex-direction: row;
5999
6010
  align-items: center;
6000
6011
  }
6001
- .fec-table-filter .filter-field[data-v-ea506656] .el-form-item .el-form-item__label {
6012
+ .fec-table-filter .filter-field[data-v-73e7d5aa] .el-form-item .el-form-item__label {
6002
6013
  font-size: 14px;
6003
6014
  color: #606266;
6004
6015
  font-weight: 500;
@@ -6008,56 +6019,55 @@ body,
6008
6019
  width: 100px;
6009
6020
  flex-shrink: 0;
6010
6021
  text-align: right;
6022
+ width: 35% !important;
6011
6023
  }
6012
- .fec-table-filter .filter-field[data-v-ea506656] .el-form-item .el-form-item__content {
6024
+ .fec-table-filter .filter-field[data-v-73e7d5aa] .el-form-item .el-form-item__content {
6013
6025
  flex: 1;
6014
6026
  margin-left: 0 !important;
6015
6027
  }
6016
- .fec-table-filter .filter-field[data-v-ea506656] .text-field-wrapper,
6017
- .fec-table-filter .filter-field[data-v-ea506656] .el-select,
6018
- .fec-table-filter .filter-field[data-v-ea506656] .el-date-editor {
6028
+ .fec-table-filter .filter-field[data-v-73e7d5aa] .text-field-wrapper,
6029
+ .fec-table-filter .filter-field[data-v-73e7d5aa] .el-select,
6030
+ .fec-table-filter .filter-field[data-v-73e7d5aa] .el-date-editor {
6019
6031
  width: 100%;
6020
6032
  }
6021
- .fec-table-filter .filter-actions[data-v-ea506656] {
6033
+ .fec-table-filter .filter-actions[data-v-73e7d5aa] {
6022
6034
  flex-shrink: 0;
6023
- border-left: 1px solid #eaebef;
6035
+ /* border-left: 1px solid #eaebef; */
6024
6036
  display: flex;
6025
6037
  align-items: center;
6026
6038
  flex-direction: column;
6027
- justify-content: center;
6028
- padding-left: 16px;
6029
- margin-left: 12px;
6039
+ justify-content: end;
6030
6040
  gap: 10px;
6031
6041
  height: 100%;
6032
6042
  }
6033
- .fec-table-filter .filter-actions[data-v-ea506656] .el-button {
6043
+ .fec-table-filter .filter-actions[data-v-73e7d5aa] .el-button {
6034
6044
  margin: 0;
6035
6045
  }
6036
- .fec-table-filter .filter-actions.inline[data-v-ea506656] {
6046
+ .fec-table-filter .filter-actions.inline[data-v-73e7d5aa] {
6037
6047
  flex-direction: row;
6038
6048
  gap: 8px;
6039
6049
  height: auto;
6040
6050
  align-items: center;
6041
6051
  }
6042
- .filter-fields[data-v-ea506656] {
6052
+ .filter-fields[data-v-73e7d5aa] {
6043
6053
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
6044
6054
  }
6045
- .filter-field[data-v-ea506656] {
6055
+ .filter-field[data-v-73e7d5aa] {
6046
6056
  transition: opacity 0.3s ease, transform 0.3s ease;
6047
6057
  }
6048
- .filter-divider[data-v-ea506656] {
6058
+ .filter-divider[data-v-73e7d5aa] {
6049
6059
  margin: 8px 0;
6050
6060
  z-index: 1;
6051
6061
  transition: all 0.3s ease;
6052
6062
  }
6053
- .filter-divider .collapse-toggle[data-v-ea506656] {
6063
+ .filter-divider .collapse-toggle[data-v-73e7d5aa] {
6054
6064
  display: flex;
6055
6065
  align-items: center;
6056
6066
  gap: 2px;
6057
6067
  color: #409eff;
6058
6068
  cursor: pointer;
6059
6069
  }
6060
- .filter-divider[data-v-ea506656] .el-divider__text {
6070
+ .filter-divider[data-v-73e7d5aa] .el-divider__text {
6061
6071
  font-size: 13px;
6062
6072
  color: #606266;
6063
6073
  transition: all 0.3s ease;
@@ -6067,14 +6077,14 @@ body,
6067
6077
  background-color: #fff;
6068
6078
  padding: 0 10px;
6069
6079
  }
6070
- .filter-divider[data-v-ea506656] .el-icon {
6080
+ .filter-divider[data-v-73e7d5aa] .el-icon {
6071
6081
  transition: transform 0.3s ease;
6072
- }.dynamic-mode-config .dynamic-row[data-v-d11a831a] {
6082
+ }.dynamic-mode-config .dynamic-row[data-v-349ed4c5] {
6073
6083
  display: flex;
6074
6084
  height: 54px;
6075
6085
  align-items: center;
6076
6086
  }
6077
- .dynamic-mode-config .back-icon[data-v-d11a831a] {
6087
+ .dynamic-mode-config .back-icon[data-v-349ed4c5] {
6078
6088
  display: flex;
6079
6089
  align-items: center;
6080
6090
  justify-content: center;
@@ -6087,11 +6097,11 @@ body,
6087
6097
  margin-left: 4px;
6088
6098
  margin-right: -6px;
6089
6099
  }
6090
- .dynamic-mode-config .back-icon .el-icon[data-v-d11a831a] {
6100
+ .dynamic-mode-config .back-icon .el-icon[data-v-349ed4c5] {
6091
6101
  font-size: 16px;
6092
6102
  font-weight: bold;
6093
6103
  }
6094
- .dynamic-mode-config .template-name[data-v-d11a831a] {
6104
+ .dynamic-mode-config .template-name[data-v-349ed4c5] {
6095
6105
  font-size: 16px;
6096
6106
  font-weight: 600;
6097
6107
  color: #303133;
@@ -6101,39 +6111,50 @@ body,
6101
6111
  overflow: hidden;
6102
6112
  text-overflow: ellipsis;
6103
6113
  position: relative;
6114
+ display: flex;
6115
+ align-items: center;
6116
+ }
6117
+ .dynamic-mode-config .template-name-line[data-v-349ed4c5] {
6118
+ height: 16px;
6119
+ width: 4px;
6120
+ background-color: var(--el-color-primary);
6121
+ display: inline-block;
6122
+ border-radius: 5px;
6123
+ margin-right: 12px;
6124
+ margin-top: 2px;
6104
6125
  }
6105
- .dynamic-mode-config .tab-display-section[data-v-d11a831a] {
6126
+ .dynamic-mode-config .tab-display-section[data-v-349ed4c5] {
6106
6127
  flex: 1;
6107
6128
  min-width: 0;
6108
6129
  }
6109
- .dynamic-mode-config .tab-display-section .dynamic-tabs[data-v-d11a831a] .el-tabs__header {
6130
+ .dynamic-mode-config .tab-display-section .dynamic-tabs[data-v-349ed4c5] .el-tabs__header {
6110
6131
  margin: 0;
6111
6132
  }
6112
- .dynamic-mode-config .tab-display-section .dynamic-tabs[data-v-d11a831a] .el-tabs__nav-wrap::after {
6133
+ .dynamic-mode-config .tab-display-section .dynamic-tabs[data-v-349ed4c5] .el-tabs__nav-wrap::after {
6113
6134
  height: 0;
6114
6135
  }
6115
- .dynamic-mode-config .tab-display-section .dynamic-tabs[data-v-d11a831a] .el-tabs__item {
6136
+ .dynamic-mode-config .tab-display-section .dynamic-tabs[data-v-349ed4c5] .el-tabs__item {
6116
6137
  padding: 0 12px;
6117
6138
  }
6118
- .dynamic-mode-config .search-display-section[data-v-d11a831a] {
6139
+ .dynamic-mode-config .search-display-section[data-v-349ed4c5] {
6119
6140
  flex-shrink: 0;
6120
6141
  display: flex;
6121
6142
  align-items: center;
6122
6143
  gap: 12px;
6123
6144
  margin-left: auto;
6124
6145
  }
6125
- .dynamic-mode-config .search-display-section .search-input-group .search-input[data-v-d11a831a] {
6126
- width: 300px;
6146
+ .dynamic-mode-config .search-display-section .search-input-group .search-input[data-v-349ed4c5] {
6147
+ /* width: 300px; */
6127
6148
  }
6128
- .dynamic-mode-config .search-display-section .optBtnDraggable[data-v-d11a831a] {
6149
+ .dynamic-mode-config .search-display-section .optBtnDraggable[data-v-349ed4c5] {
6129
6150
  display: flex;
6130
6151
  align-items: center;
6131
6152
  gap: 8px;
6132
6153
  }
6133
- .dynamic-mode-config .search-display-section .optBtn[data-v-d11a831a] {
6154
+ .dynamic-mode-config .search-display-section .optBtn[data-v-349ed4c5] {
6134
6155
  position: relative;
6135
6156
  }
6136
- .dynamic-mode-config .search-display-section .optBtn .delete-icon[data-v-d11a831a] {
6157
+ .dynamic-mode-config .search-display-section .optBtn .delete-icon[data-v-349ed4c5] {
6137
6158
  position: absolute;
6138
6159
  top: -10px;
6139
6160
  right: -10px;
@@ -6150,31 +6171,31 @@ body,
6150
6171
  font-size: 12px;
6151
6172
  z-index: 1;
6152
6173
  }
6153
- .dynamic-mode-config .search-display-section .optBtn .delete-icon[data-v-d11a831a]:hover {
6174
+ .dynamic-mode-config .search-display-section .optBtn .delete-icon[data-v-349ed4c5]:hover {
6154
6175
  background-color: #f56c6c;
6155
6176
  }
6156
- .dynamic-mode-config .search-display-section .optBtn.is-hover .delete-icon[data-v-d11a831a] {
6177
+ .dynamic-mode-config .search-display-section .optBtn.is-hover .delete-icon[data-v-349ed4c5] {
6157
6178
  display: flex;
6158
6179
  }
6159
- .dynamic-mode-config .search-display-section .optBtn .elBtn[data-v-d11a831a] {
6180
+ .dynamic-mode-config .search-display-section .optBtn .elBtn[data-v-349ed4c5] {
6160
6181
  pointer-events: none;
6161
6182
  }
6162
- .dynamic-mode-config .search-display-section .addLink .el-icon[data-v-d11a831a] {
6183
+ .dynamic-mode-config .search-display-section .addLink .el-icon[data-v-349ed4c5] {
6163
6184
  margin-right: 4px;
6164
6185
  }
6165
- .dynamic-mode-config .expand-filter-section[data-v-d11a831a] {
6186
+ .dynamic-mode-config .expand-filter-section[data-v-349ed4c5] {
6166
6187
  padding-top: 4px;
6167
6188
  border-top: 1px solid #ebeef5;
6168
6189
  margin-top: 4px;
6169
6190
  }
6170
- .dynamic-mode-config .expand-filter-section .filter-form-section[data-v-d11a831a] {
6191
+ .dynamic-mode-config .expand-filter-section .filter-form-section[data-v-349ed4c5] {
6171
6192
  width: 100%;
6172
6193
  }
6173
- .dynamic-mode-config .expand-filter-section .filter-form-section .filter-form .form-items-draggable[data-v-d11a831a] {
6194
+ .dynamic-mode-config .expand-filter-section .filter-form-section .filter-form .form-items-draggable[data-v-349ed4c5] {
6174
6195
  display: flex;
6175
6196
  flex-wrap: wrap;
6176
6197
  }
6177
- .dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-d11a831a] .el-form-item {
6198
+ .dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-349ed4c5] .el-form-item {
6178
6199
  padding: 2px;
6179
6200
  border: 2px solid transparent;
6180
6201
  border-radius: 2px;
@@ -6183,20 +6204,20 @@ body,
6183
6204
  cursor: move;
6184
6205
  margin-bottom: 4px;
6185
6206
  }
6186
- .dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-d11a831a] .el-form-item .el-form-item__label-wrap {
6207
+ .dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-349ed4c5] .el-form-item .el-form-item__label-wrap {
6187
6208
  margin: 0 0 0 8px !important;
6188
6209
  }
6189
- .dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-d11a831a] .el-form-item .el-form-item__content {
6210
+ .dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-349ed4c5] .el-form-item .el-form-item__content {
6190
6211
  min-width: 150px;
6191
6212
  }
6192
- .dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-d11a831a] .el-form-item .form-item-label {
6213
+ .dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-349ed4c5] .el-form-item .form-item-label {
6193
6214
  display: flex;
6194
6215
  align-items: center;
6195
6216
  }
6196
- .dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-d11a831a] .el-form-item .el-input {
6217
+ .dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-349ed4c5] .el-form-item .el-input {
6197
6218
  width: 150px;
6198
6219
  }
6199
- .dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-d11a831a] .el-form-item .delete-icon {
6220
+ .dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-349ed4c5] .el-form-item .delete-icon {
6200
6221
  position: absolute;
6201
6222
  top: -10px;
6202
6223
  right: -10px;
@@ -6213,19 +6234,19 @@ body,
6213
6234
  font-size: 12px;
6214
6235
  z-index: 1;
6215
6236
  }
6216
- .dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-d11a831a] .el-form-item .delete-icon:hover {
6237
+ .dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-349ed4c5] .el-form-item .delete-icon:hover {
6217
6238
  background-color: #f56c6c;
6218
6239
  }
6219
- .dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-d11a831a] .el-form-item.is-hover {
6240
+ .dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-349ed4c5] .el-form-item.is-hover {
6220
6241
  border: 2px dashed #7b99cb !important;
6221
6242
  }
6222
- .dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-d11a831a] .el-form-item.is-hover .delete-icon {
6243
+ .dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-349ed4c5] .el-form-item.is-hover .delete-icon {
6223
6244
  display: flex;
6224
6245
  }
6225
- .dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-d11a831a] .el-form-item.is-select {
6246
+ .dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-349ed4c5] .el-form-item.is-select {
6226
6247
  border: 2px dashed #efa53a !important;
6227
6248
  }
6228
- .dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-d11a831a] .el-form-item__label {
6249
+ .dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-349ed4c5] .el-form-item__label {
6229
6250
  font-size: 13px;
6230
6251
  color: #606266;
6231
6252
  pointer-events: none;
@@ -6234,11 +6255,11 @@ body,
6234
6255
  display: flex;
6235
6256
  align-items: center;
6236
6257
  }
6237
- [data-v-d11a831a] .el-checkbox-group {
6258
+ [data-v-349ed4c5] .el-checkbox-group {
6238
6259
  display: flex;
6239
6260
  gap: 12px;
6240
6261
  }
6241
- [data-v-d11a831a] .el-checkbox-group .el-checkbox-button__inner {
6262
+ [data-v-349ed4c5] .el-checkbox-group .el-checkbox-button__inner {
6242
6263
  border-radius: 4px;
6243
6264
  }.fec-table[data-v-5e27559e] {
6244
6265
  height: 100%;
@@ -9,9 +9,9 @@ import { Form } from "../forms/form/index.mjs";
9
9
  import { parseRouteParams } from "../../utils/parseRouteParams.mjs";
10
10
  import { calculate } from "../../utils/formulajs/calculate.mjs";
11
11
  import { useEventFlow, executeEventFlow } from "../../utils/eventFlow/eventFlowHandler.mjs";
12
- /* empty css */
13
12
  /* empty css */
14
13
  /* empty css */
14
+ /* empty css */
15
15
  import { loadComponentByPath } from "../../utils/common.mjs";
16
16
  /* empty css */
17
17
  import _export_sfc from "../../../../../_virtual/_plugin-vue_export-helper.mjs";