super-page-designer 2.0.67 → 2.0.70
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/es/components/design/utils/form-design-util.js +6 -0
- package/dist/es/components/design/utils/page-table-util.js +17 -14
- package/dist/es/components/design/views/assemblys/common/common-variable-bind.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/common/common-variable-bind.vue2.js +4 -4
- package/dist/es/components/design/views/assemblys/data/component/data-origin.vue2.js +1 -1
- package/dist/es/components/design/views/assemblys/data/table/table-design.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/data/table/table-design.vue2.js +10 -1
- package/dist/es/components/design/views/assemblys/form/common/data-format.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/form/common/data-origin.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/form/common/data-origin.vue2.js +9 -1
- package/dist/es/components/design/views/assemblys/form/common/dataorigin-input-table.vue.js +152 -1
- package/dist/es/components/design/views/assemblys/form/common/dataorigin-input-table.vue2.js +1 -152
- package/dist/es/components/design/views/assemblys/form/common/suffixmodule.vue.js +27 -8
- package/dist/es/components/design/views/assemblys/form/date-picker/datepicker-design.vue2.js +4 -4
- package/dist/es/components/design/views/assemblys/form/dept-tree/depttree-autoset.vue.js +0 -1
- package/dist/es/components/design/views/assemblys/form/dept-tree/depttree-design.vue2.js +1 -0
- package/dist/es/components/design/views/assemblys/form/file-upload/fileupload-design.vue2.js +1 -0
- package/dist/es/components/design/views/assemblys/form/input-number/input-number-design.vue2.js +2 -2
- package/dist/es/components/design/views/assemblys/form/input-text/inputtext-design.vue2.js +2 -2
- package/dist/es/components/design/views/assemblys/form/rich-text/richtext-design.vue2.js +1 -1
- package/dist/es/components/design/views/assemblys/form/select/select-design.vue.js +1 -0
- package/dist/es/components/design/views/assemblys/form/select/select-design.vue2.js +2 -2
- package/dist/es/components/design/views/assemblys/form/select/select-design.vue3.js +1 -0
- package/dist/es/components/design/views/assemblys/form/switch/switch-design.vue.js +1 -0
- package/dist/es/components/design/views/assemblys/form/switch/switch-design.vue2.js +2 -2
- package/dist/es/components/design/views/assemblys/form/switch/switch-design.vue3.js +1 -0
- package/dist/es/components/design/views/assemblys/form/textarea/textarea-design.vue2.js +2 -2
- package/dist/es/components/design/views/design/page-event/config.vue.js +1 -7
- package/dist/es/components/design/views/design/page-event/config.vue2.js +7 -1
- package/dist/es/components/design/views/design/page-event/page-event-content.vue.js +1 -1
- package/dist/es/components/design/views/design/view/view-design-display.vue.js +1 -1
- package/dist/es/stores/table-store.js +3 -1
- package/dist/es/style.css +116 -108
- package/package.json +4 -4
package/dist/es/components/design/views/assemblys/form/input-number/input-number-design.vue2.js
CHANGED
|
@@ -85,7 +85,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
85
85
|
default: withCtx(() => [
|
|
86
86
|
createVNode(_component_el_input_number, {
|
|
87
87
|
disabled: designProperty.value.state === "disabled",
|
|
88
|
-
readonly:
|
|
88
|
+
readonly: "",
|
|
89
89
|
controls: designProperty.value.showButton,
|
|
90
90
|
size: designProperty.value.size,
|
|
91
91
|
placeholder: designProperty.value.placeholder,
|
|
@@ -95,7 +95,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
95
95
|
step: designProperty.value.step,
|
|
96
96
|
min: designProperty.value.min,
|
|
97
97
|
max: designProperty.value.max
|
|
98
|
-
}, null, 8, ["disabled", "
|
|
98
|
+
}, null, 8, ["disabled", "controls", "size", "placeholder", "modelValue", "precision", "step", "min", "max"])
|
|
99
99
|
]),
|
|
100
100
|
_: 1
|
|
101
101
|
}, 8, ["required", "class", "label-width", "style"])
|
|
@@ -82,7 +82,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
82
82
|
default: withCtx(() => [
|
|
83
83
|
createVNode(_component_el_input, {
|
|
84
84
|
disabled: designProperty.value.state === "disabled",
|
|
85
|
-
readonly:
|
|
85
|
+
readonly: "",
|
|
86
86
|
size: designProperty.value.size,
|
|
87
87
|
clearable: designProperty.value.clearable,
|
|
88
88
|
placeholder: designProperty.value.placeholder,
|
|
@@ -139,7 +139,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
139
139
|
]),
|
|
140
140
|
key: "3"
|
|
141
141
|
} : void 0
|
|
142
|
-
]), 1032, ["disabled", "
|
|
142
|
+
]), 1032, ["disabled", "size", "clearable", "placeholder", "maxlength", "show-word-limit", "modelValue"])
|
|
143
143
|
]),
|
|
144
144
|
_: 1
|
|
145
145
|
}, 8, ["required", "class", "label-width", "style"]);
|
|
@@ -107,7 +107,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
107
107
|
createVNode(_component_el_select, {
|
|
108
108
|
ref_key: "thisRef",
|
|
109
109
|
ref: thisRef,
|
|
110
|
-
disabled:
|
|
110
|
+
disabled: "",
|
|
111
111
|
size: designProperty.value.size,
|
|
112
112
|
clearable: designProperty.value.clearable,
|
|
113
113
|
multiple: designProperty.value.multiple,
|
|
@@ -130,7 +130,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
130
130
|
}), 128))
|
|
131
131
|
]),
|
|
132
132
|
_: 1
|
|
133
|
-
}, 8, ["
|
|
133
|
+
}, 8, ["size", "clearable", "multiple", "collapse-tags", "collapse-tags-tooltip", "filterable", "allow-create", "placeholder", "modelValue"])
|
|
134
134
|
]),
|
|
135
135
|
_: 1
|
|
136
136
|
}, 8, ["required", "class", "label-width", "style"]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -76,7 +76,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
76
76
|
]),
|
|
77
77
|
default: withCtx(() => [
|
|
78
78
|
createVNode(_component_el_switch, {
|
|
79
|
-
disabled:
|
|
79
|
+
disabled: "",
|
|
80
80
|
"active-value:": designProperty.value.activeValue,
|
|
81
81
|
"active-text": designProperty.value.activeText,
|
|
82
82
|
"inactive-value": designProperty.value.inactiveValue,
|
|
@@ -86,7 +86,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
86
86
|
style: normalizeStyle(switchStyle.value),
|
|
87
87
|
modelValue: designProperty.value.value,
|
|
88
88
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => designProperty.value.value = $event)
|
|
89
|
-
}, null, 8, ["
|
|
89
|
+
}, null, 8, ["active-value:", "active-text", "inactive-value", "inactive-text", "width", "size", "style", "modelValue"])
|
|
90
90
|
]),
|
|
91
91
|
_: 1
|
|
92
92
|
}, 8, ["required", "class", "label-width", "style"]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -62,7 +62,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
62
62
|
default: withCtx(() => [
|
|
63
63
|
createVNode(_component_el_input, {
|
|
64
64
|
disabled: designProperty.value.state === "disabled",
|
|
65
|
-
readonly:
|
|
65
|
+
readonly: "",
|
|
66
66
|
size: designProperty.value.size,
|
|
67
67
|
placeholder: designProperty.value.placeholder,
|
|
68
68
|
modelValue: designProperty.value.value,
|
|
@@ -71,7 +71,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
71
71
|
maxlength: designProperty.value.maxLength,
|
|
72
72
|
"show-word-limit": designProperty.value.showInputNum,
|
|
73
73
|
type: "textarea"
|
|
74
|
-
}, null, 8, ["disabled", "
|
|
74
|
+
}, null, 8, ["disabled", "size", "placeholder", "modelValue", "rows", "maxlength", "show-word-limit"])
|
|
75
75
|
]),
|
|
76
76
|
_: 1
|
|
77
77
|
}, 8, ["required", "class", "label-width", "style"])
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
import "./config.vue2.js";
|
|
3
|
-
import _export_sfc from "../../../../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const config = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-26f79956"]]);
|
|
5
|
-
export {
|
|
6
|
-
config as default
|
|
7
|
-
};
|
|
1
|
+
|
|
@@ -1 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
import _sfc_main from "./config.vue3.js";
|
|
2
|
+
import "./config.vue.js";
|
|
3
|
+
import _export_sfc from "../../../../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
+
const config = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-26f79956"]]);
|
|
5
|
+
export {
|
|
6
|
+
config as default
|
|
7
|
+
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { defineComponent, ref, onMounted, onUnmounted, watch, resolveComponent, openBlock, createElementBlock, createElementVNode, createVNode, withCtx, withDirectives, vShow, unref, createTextVNode, toDisplayString, Fragment, renderList, createBlock } from "vue";
|
|
2
2
|
import { ElMessageBox, ElMessage } from "element-plus";
|
|
3
|
-
import config from "./config.
|
|
3
|
+
import config from "./config.vue2.js";
|
|
4
4
|
import { standardButtonOperations } from "../../../utils/assemblys-config.js";
|
|
5
5
|
import { getUuidv4, deepCopy } from "../../../utils/common-util.js";
|
|
6
6
|
import { usePageContextStore } from "../../../../../stores/page-store.js";
|
|
@@ -15,7 +15,7 @@ import "@codemirror/state";
|
|
|
15
15
|
import "@codemirror/autocomplete";
|
|
16
16
|
import "@codemirror/language";
|
|
17
17
|
import "@codemirror/search";
|
|
18
|
-
import "../page-event/config.
|
|
18
|
+
import "../page-event/config.vue.js";
|
|
19
19
|
import "../../../utils/assemblys-config.js";
|
|
20
20
|
import "../../../../../stores/page-store.js";
|
|
21
21
|
import "../../../../../stores/event-undo-redo-store.js";
|
|
@@ -3,12 +3,14 @@ import { defineStore } from "pinia";
|
|
|
3
3
|
const tableField = defineStore("dataOptions", () => {
|
|
4
4
|
const fieldList = ref([]);
|
|
5
5
|
function addFieldList(tableFields) {
|
|
6
|
+
console.log("%c描述-161256", "color:#2E3435;background:#F8BB07;padding:3px;border-radius:2px", tableFields);
|
|
6
7
|
let arr = [];
|
|
7
8
|
tableFields.forEach((item) => {
|
|
8
9
|
arr.push({
|
|
9
10
|
value: item.name,
|
|
10
11
|
label: item.alias,
|
|
11
|
-
alias: item.alias
|
|
12
|
+
alias: item.alias,
|
|
13
|
+
dbColumnName: item.dbColumnName
|
|
12
14
|
});
|
|
13
15
|
});
|
|
14
16
|
fieldList.value = arr;
|
package/dist/es/style.css
CHANGED
|
@@ -461,7 +461,7 @@ fieldset.amb-design-item-selected {
|
|
|
461
461
|
height: 22px;
|
|
462
462
|
right: 0;
|
|
463
463
|
top: 0;
|
|
464
|
-
z-index:
|
|
464
|
+
z-index: 2;
|
|
465
465
|
padding: 6px;
|
|
466
466
|
padding-top: 2px;
|
|
467
467
|
padding-left: 0px;
|
|
@@ -1133,7 +1133,7 @@ fieldset.amb-design-item-selected {
|
|
|
1133
1133
|
height: 22px;
|
|
1134
1134
|
right: 0;
|
|
1135
1135
|
top: 0;
|
|
1136
|
-
z-index:
|
|
1136
|
+
z-index: 2;
|
|
1137
1137
|
padding: 6px;
|
|
1138
1138
|
padding-top: 2px;
|
|
1139
1139
|
padding-left: 0px;
|
|
@@ -1752,7 +1752,7 @@ fieldset.amb-design-item-selected {
|
|
|
1752
1752
|
height: 22px;
|
|
1753
1753
|
right: 0;
|
|
1754
1754
|
top: 0;
|
|
1755
|
-
z-index:
|
|
1755
|
+
z-index: 2;
|
|
1756
1756
|
padding: 6px;
|
|
1757
1757
|
padding-top: 2px;
|
|
1758
1758
|
padding-left: 0px;
|
|
@@ -2371,7 +2371,7 @@ fieldset.amb-design-item-selected {
|
|
|
2371
2371
|
height: 22px;
|
|
2372
2372
|
right: 0;
|
|
2373
2373
|
top: 0;
|
|
2374
|
-
z-index:
|
|
2374
|
+
z-index: 2;
|
|
2375
2375
|
padding: 6px;
|
|
2376
2376
|
padding-top: 2px;
|
|
2377
2377
|
padding-left: 0px;
|
|
@@ -2990,7 +2990,7 @@ fieldset.amb-design-item-selected {
|
|
|
2990
2990
|
height: 22px;
|
|
2991
2991
|
right: 0;
|
|
2992
2992
|
top: 0;
|
|
2993
|
-
z-index:
|
|
2993
|
+
z-index: 2;
|
|
2994
2994
|
padding: 6px;
|
|
2995
2995
|
padding-top: 2px;
|
|
2996
2996
|
padding-left: 0px;
|
|
@@ -3151,6 +3151,10 @@ fieldset.amb-design-item-selected {
|
|
|
3151
3151
|
padding: 10px;
|
|
3152
3152
|
font-weight: bold;
|
|
3153
3153
|
}
|
|
3154
|
+
|
|
3155
|
+
.el-select__wrapper.is-disabled{
|
|
3156
|
+
cursor: default;
|
|
3157
|
+
}
|
|
3154
3158
|
.el-tree-node__content {
|
|
3155
3159
|
height: 34px !important;
|
|
3156
3160
|
}
|
|
@@ -3609,7 +3613,7 @@ fieldset.amb-design-item-selected {
|
|
|
3609
3613
|
height: 22px;
|
|
3610
3614
|
right: 0;
|
|
3611
3615
|
top: 0;
|
|
3612
|
-
z-index:
|
|
3616
|
+
z-index: 2;
|
|
3613
3617
|
padding: 6px;
|
|
3614
3618
|
padding-top: 2px;
|
|
3615
3619
|
padding-left: 0px;
|
|
@@ -3770,6 +3774,10 @@ fieldset.amb-design-item-selected {
|
|
|
3770
3774
|
padding: 10px;
|
|
3771
3775
|
font-weight: bold;
|
|
3772
3776
|
}
|
|
3777
|
+
|
|
3778
|
+
.el-switch.is-disabled .el-switch__core, .el-switch.is-disabled .el-switch__label{
|
|
3779
|
+
cursor: default;
|
|
3780
|
+
}
|
|
3773
3781
|
.el-tree-node__content {
|
|
3774
3782
|
height: 34px !important;
|
|
3775
3783
|
}
|
|
@@ -4228,7 +4236,7 @@ fieldset.amb-design-item-selected {
|
|
|
4228
4236
|
height: 22px;
|
|
4229
4237
|
right: 0;
|
|
4230
4238
|
top: 0;
|
|
4231
|
-
z-index:
|
|
4239
|
+
z-index: 2;
|
|
4232
4240
|
padding: 6px;
|
|
4233
4241
|
padding-top: 2px;
|
|
4234
4242
|
padding-left: 0px;
|
|
@@ -4847,7 +4855,7 @@ fieldset.amb-design-item-selected {
|
|
|
4847
4855
|
height: 22px;
|
|
4848
4856
|
right: 0;
|
|
4849
4857
|
top: 0;
|
|
4850
|
-
z-index:
|
|
4858
|
+
z-index: 2;
|
|
4851
4859
|
padding: 6px;
|
|
4852
4860
|
padding-top: 2px;
|
|
4853
4861
|
padding-left: 0px;
|
|
@@ -5466,7 +5474,7 @@ fieldset.amb-design-item-selected {
|
|
|
5466
5474
|
height: 22px;
|
|
5467
5475
|
right: 0;
|
|
5468
5476
|
top: 0;
|
|
5469
|
-
z-index:
|
|
5477
|
+
z-index: 2;
|
|
5470
5478
|
padding: 6px;
|
|
5471
5479
|
padding-top: 2px;
|
|
5472
5480
|
padding-left: 0px;
|
|
@@ -6085,7 +6093,7 @@ fieldset.amb-design-item-selected {
|
|
|
6085
6093
|
height: 22px;
|
|
6086
6094
|
right: 0;
|
|
6087
6095
|
top: 0;
|
|
6088
|
-
z-index:
|
|
6096
|
+
z-index: 2;
|
|
6089
6097
|
padding: 6px;
|
|
6090
6098
|
padding-top: 2px;
|
|
6091
6099
|
padding-left: 0px;
|
|
@@ -6704,7 +6712,7 @@ fieldset.amb-design-item-selected {
|
|
|
6704
6712
|
height: 22px;
|
|
6705
6713
|
right: 0;
|
|
6706
6714
|
top: 0;
|
|
6707
|
-
z-index:
|
|
6715
|
+
z-index: 2;
|
|
6708
6716
|
padding: 6px;
|
|
6709
6717
|
padding-top: 2px;
|
|
6710
6718
|
padding-left: 0px;
|
|
@@ -7323,7 +7331,7 @@ fieldset.amb-design-item-selected {
|
|
|
7323
7331
|
height: 22px;
|
|
7324
7332
|
right: 0;
|
|
7325
7333
|
top: 0;
|
|
7326
|
-
z-index:
|
|
7334
|
+
z-index: 2;
|
|
7327
7335
|
padding: 6px;
|
|
7328
7336
|
padding-top: 2px;
|
|
7329
7337
|
padding-left: 0px;
|
|
@@ -7942,7 +7950,7 @@ fieldset.amb-design-item-selected {
|
|
|
7942
7950
|
height: 22px;
|
|
7943
7951
|
right: 0;
|
|
7944
7952
|
top: 0;
|
|
7945
|
-
z-index:
|
|
7953
|
+
z-index: 2;
|
|
7946
7954
|
padding: 6px;
|
|
7947
7955
|
padding-top: 2px;
|
|
7948
7956
|
padding-left: 0px;
|
|
@@ -8561,7 +8569,7 @@ fieldset.amb-design-item-selected {
|
|
|
8561
8569
|
height: 22px;
|
|
8562
8570
|
right: 0;
|
|
8563
8571
|
top: 0;
|
|
8564
|
-
z-index:
|
|
8572
|
+
z-index: 2;
|
|
8565
8573
|
padding: 6px;
|
|
8566
8574
|
padding-top: 2px;
|
|
8567
8575
|
padding-left: 0px;
|
|
@@ -9180,7 +9188,7 @@ fieldset.amb-design-item-selected {
|
|
|
9180
9188
|
height: 22px;
|
|
9181
9189
|
right: 0;
|
|
9182
9190
|
top: 0;
|
|
9183
|
-
z-index:
|
|
9191
|
+
z-index: 2;
|
|
9184
9192
|
padding: 6px;
|
|
9185
9193
|
padding-top: 2px;
|
|
9186
9194
|
padding-left: 0px;
|
|
@@ -9341,56 +9349,6 @@ fieldset.amb-design-item-selected {
|
|
|
9341
9349
|
padding: 10px;
|
|
9342
9350
|
font-weight: bold;
|
|
9343
9351
|
}
|
|
9344
|
-
|
|
9345
|
-
/*不显示列样式*/
|
|
9346
|
-
.hiddenBorder {
|
|
9347
|
-
border-right: solid 1px #ebebeb !important;
|
|
9348
|
-
border-left: solid 1px #ebebeb !important;
|
|
9349
|
-
background-color: #ebebeb !important;
|
|
9350
|
-
}
|
|
9351
|
-
/*选中列样式*/
|
|
9352
|
-
.addBorder {
|
|
9353
|
-
border-right: solid 1px #5893ef !important;
|
|
9354
|
-
border-left: solid 1px #5893ef !important;
|
|
9355
|
-
background-color: #5893ef !important;
|
|
9356
|
-
color: #ffffff;
|
|
9357
|
-
}
|
|
9358
|
-
.ghost {
|
|
9359
|
-
opacity: 0.5;
|
|
9360
|
-
background: #c8ebfb;
|
|
9361
|
-
}
|
|
9362
|
-
|
|
9363
|
-
li[data-v-20ea5d48] {
|
|
9364
|
-
color: #333;
|
|
9365
|
-
}
|
|
9366
|
-
.context-menu[data-v-20ea5d48] {
|
|
9367
|
-
position: fixed;
|
|
9368
|
-
background: #fff;
|
|
9369
|
-
z-index: 999;
|
|
9370
|
-
padding: 5px;
|
|
9371
|
-
margin: 0;
|
|
9372
|
-
margin-top: 30px;
|
|
9373
|
-
}
|
|
9374
|
-
.context-menu li[data-v-20ea5d48] {
|
|
9375
|
-
min-width: 75px;
|
|
9376
|
-
height: 28px;
|
|
9377
|
-
line-height: 28px;
|
|
9378
|
-
text-align: left;
|
|
9379
|
-
color: #1a1a1a;
|
|
9380
|
-
cursor: pointer;
|
|
9381
|
-
}
|
|
9382
|
-
.context-menu li[data-v-20ea5d48]:hover {
|
|
9383
|
-
background: #5893ef;
|
|
9384
|
-
color: #fff;
|
|
9385
|
-
}
|
|
9386
|
-
.context-menu[data-v-20ea5d48] {
|
|
9387
|
-
border: 1px solid #eee;
|
|
9388
|
-
box-shadow: 0 0.5em 1em 0 rgba(0, 0, 0, 0.1);
|
|
9389
|
-
border-radius: 5px;
|
|
9390
|
-
}
|
|
9391
|
-
li[data-v-20ea5d48] {
|
|
9392
|
-
list-style-type: none;
|
|
9393
|
-
}
|
|
9394
9352
|
.el-tree-node__content {
|
|
9395
9353
|
height: 34px !important;
|
|
9396
9354
|
}
|
|
@@ -9849,7 +9807,7 @@ fieldset.amb-design-item-selected {
|
|
|
9849
9807
|
height: 22px;
|
|
9850
9808
|
right: 0;
|
|
9851
9809
|
top: 0;
|
|
9852
|
-
z-index:
|
|
9810
|
+
z-index: 2;
|
|
9853
9811
|
padding: 6px;
|
|
9854
9812
|
padding-top: 2px;
|
|
9855
9813
|
padding-left: 0px;
|
|
@@ -10010,6 +9968,56 @@ fieldset.amb-design-item-selected {
|
|
|
10010
9968
|
padding: 10px;
|
|
10011
9969
|
font-weight: bold;
|
|
10012
9970
|
}
|
|
9971
|
+
|
|
9972
|
+
/*不显示列样式*/
|
|
9973
|
+
.hiddenBorder {
|
|
9974
|
+
border-right: solid 1px #ebebeb !important;
|
|
9975
|
+
border-left: solid 1px #ebebeb !important;
|
|
9976
|
+
background-color: #ebebeb !important;
|
|
9977
|
+
}
|
|
9978
|
+
/*选中列样式*/
|
|
9979
|
+
.addBorder {
|
|
9980
|
+
border-right: solid 1px #5893ef !important;
|
|
9981
|
+
border-left: solid 1px #5893ef !important;
|
|
9982
|
+
background-color: #5893ef !important;
|
|
9983
|
+
color: #ffffff;
|
|
9984
|
+
}
|
|
9985
|
+
.ghost {
|
|
9986
|
+
opacity: 0.5;
|
|
9987
|
+
background: #c8ebfb;
|
|
9988
|
+
}
|
|
9989
|
+
|
|
9990
|
+
li[data-v-fdf0b268] {
|
|
9991
|
+
color: #333;
|
|
9992
|
+
}
|
|
9993
|
+
.context-menu[data-v-fdf0b268] {
|
|
9994
|
+
position: fixed;
|
|
9995
|
+
background: #fff;
|
|
9996
|
+
z-index: 999;
|
|
9997
|
+
padding: 5px;
|
|
9998
|
+
margin: 0;
|
|
9999
|
+
margin-top: 30px;
|
|
10000
|
+
}
|
|
10001
|
+
.context-menu li[data-v-fdf0b268] {
|
|
10002
|
+
min-width: 75px;
|
|
10003
|
+
height: 28px;
|
|
10004
|
+
line-height: 28px;
|
|
10005
|
+
text-align: left;
|
|
10006
|
+
color: #1a1a1a;
|
|
10007
|
+
cursor: pointer;
|
|
10008
|
+
}
|
|
10009
|
+
.context-menu li[data-v-fdf0b268]:hover {
|
|
10010
|
+
background: #5893ef;
|
|
10011
|
+
color: #fff;
|
|
10012
|
+
}
|
|
10013
|
+
.context-menu[data-v-fdf0b268] {
|
|
10014
|
+
border: 1px solid #eee;
|
|
10015
|
+
box-shadow: 0 0.5em 1em 0 rgba(0, 0, 0, 0.1);
|
|
10016
|
+
border-radius: 5px;
|
|
10017
|
+
}
|
|
10018
|
+
li[data-v-fdf0b268] {
|
|
10019
|
+
list-style-type: none;
|
|
10020
|
+
}
|
|
10013
10021
|
.el-tree-node__content {
|
|
10014
10022
|
height: 34px !important;
|
|
10015
10023
|
}
|
|
@@ -10468,7 +10476,7 @@ fieldset.amb-design-item-selected {
|
|
|
10468
10476
|
height: 22px;
|
|
10469
10477
|
right: 0;
|
|
10470
10478
|
top: 0;
|
|
10471
|
-
z-index:
|
|
10479
|
+
z-index: 2;
|
|
10472
10480
|
padding: 6px;
|
|
10473
10481
|
padding-top: 2px;
|
|
10474
10482
|
padding-left: 0px;
|
|
@@ -11087,7 +11095,7 @@ fieldset.amb-design-item-selected {
|
|
|
11087
11095
|
height: 22px;
|
|
11088
11096
|
right: 0;
|
|
11089
11097
|
top: 0;
|
|
11090
|
-
z-index:
|
|
11098
|
+
z-index: 2;
|
|
11091
11099
|
padding: 6px;
|
|
11092
11100
|
padding-top: 2px;
|
|
11093
11101
|
padding-left: 0px;
|
|
@@ -11706,7 +11714,7 @@ fieldset.amb-design-item-selected {
|
|
|
11706
11714
|
height: 22px;
|
|
11707
11715
|
right: 0;
|
|
11708
11716
|
top: 0;
|
|
11709
|
-
z-index:
|
|
11717
|
+
z-index: 2;
|
|
11710
11718
|
padding: 6px;
|
|
11711
11719
|
padding-top: 2px;
|
|
11712
11720
|
padding-left: 0px;
|
|
@@ -12325,7 +12333,7 @@ fieldset.amb-design-item-selected {
|
|
|
12325
12333
|
height: 22px;
|
|
12326
12334
|
right: 0;
|
|
12327
12335
|
top: 0;
|
|
12328
|
-
z-index:
|
|
12336
|
+
z-index: 2;
|
|
12329
12337
|
padding: 6px;
|
|
12330
12338
|
padding-top: 2px;
|
|
12331
12339
|
padding-left: 0px;
|
|
@@ -12944,7 +12952,7 @@ fieldset.amb-design-item-selected {
|
|
|
12944
12952
|
height: 22px;
|
|
12945
12953
|
right: 0;
|
|
12946
12954
|
top: 0;
|
|
12947
|
-
z-index:
|
|
12955
|
+
z-index: 2;
|
|
12948
12956
|
padding: 6px;
|
|
12949
12957
|
padding-top: 2px;
|
|
12950
12958
|
padding-left: 0px;
|
|
@@ -13563,7 +13571,7 @@ fieldset.amb-design-item-selected {
|
|
|
13563
13571
|
height: 22px;
|
|
13564
13572
|
right: 0;
|
|
13565
13573
|
top: 0;
|
|
13566
|
-
z-index:
|
|
13574
|
+
z-index: 2;
|
|
13567
13575
|
padding: 6px;
|
|
13568
13576
|
padding-top: 2px;
|
|
13569
13577
|
padding-left: 0px;
|
|
@@ -14182,7 +14190,7 @@ fieldset.amb-design-item-selected {
|
|
|
14182
14190
|
height: 22px;
|
|
14183
14191
|
right: 0;
|
|
14184
14192
|
top: 0;
|
|
14185
|
-
z-index:
|
|
14193
|
+
z-index: 2;
|
|
14186
14194
|
padding: 6px;
|
|
14187
14195
|
padding-top: 2px;
|
|
14188
14196
|
padding-left: 0px;
|
|
@@ -14801,7 +14809,7 @@ fieldset.amb-design-item-selected {
|
|
|
14801
14809
|
height: 22px;
|
|
14802
14810
|
right: 0;
|
|
14803
14811
|
top: 0;
|
|
14804
|
-
z-index:
|
|
14812
|
+
z-index: 2;
|
|
14805
14813
|
padding: 6px;
|
|
14806
14814
|
padding-top: 2px;
|
|
14807
14815
|
padding-left: 0px;
|
|
@@ -15420,7 +15428,7 @@ fieldset.amb-design-item-selected {
|
|
|
15420
15428
|
height: 22px;
|
|
15421
15429
|
right: 0;
|
|
15422
15430
|
top: 0;
|
|
15423
|
-
z-index:
|
|
15431
|
+
z-index: 2;
|
|
15424
15432
|
padding: 6px;
|
|
15425
15433
|
padding-top: 2px;
|
|
15426
15434
|
padding-left: 0px;
|
|
@@ -15581,6 +15589,10 @@ fieldset.amb-design-item-selected {
|
|
|
15581
15589
|
padding: 10px;
|
|
15582
15590
|
font-weight: bold;
|
|
15583
15591
|
}
|
|
15592
|
+
|
|
15593
|
+
[data-v-d87986ba] .el-form-item__label{
|
|
15594
|
+
padding: 0;
|
|
15595
|
+
}
|
|
15584
15596
|
.el-tree-node__content {
|
|
15585
15597
|
height: 34px !important;
|
|
15586
15598
|
}
|
|
@@ -16039,7 +16051,7 @@ fieldset.amb-design-item-selected {
|
|
|
16039
16051
|
height: 22px;
|
|
16040
16052
|
right: 0;
|
|
16041
16053
|
top: 0;
|
|
16042
|
-
z-index:
|
|
16054
|
+
z-index: 2;
|
|
16043
16055
|
padding: 6px;
|
|
16044
16056
|
padding-top: 2px;
|
|
16045
16057
|
padding-left: 0px;
|
|
@@ -16201,10 +16213,6 @@ fieldset.amb-design-item-selected {
|
|
|
16201
16213
|
font-weight: bold;
|
|
16202
16214
|
}
|
|
16203
16215
|
|
|
16204
|
-
[data-v-d87986ba] .el-form-item__label{
|
|
16205
|
-
padding: 0;
|
|
16206
|
-
}
|
|
16207
|
-
|
|
16208
16216
|
.amb-design-attr-header[data-v-226997f7] {
|
|
16209
16217
|
position: sticky;
|
|
16210
16218
|
position: -webkit-sticky;
|
|
@@ -16238,12 +16246,7 @@ fieldset.amb-design-item-selected {
|
|
|
16238
16246
|
padding-bottom: 5px;
|
|
16239
16247
|
}
|
|
16240
16248
|
|
|
16241
|
-
|
|
16242
|
-
border-radius: 5px;
|
|
16243
|
-
border: 1px solid rgba(88, 147, 239);
|
|
16244
|
-
}
|
|
16245
|
-
|
|
16246
|
-
[data-v-48d27f9e] .el-cascader-menu {
|
|
16249
|
+
[data-v-cfaaf957] .el-cascader-menu {
|
|
16247
16250
|
min-width: 120px !important;
|
|
16248
16251
|
}
|
|
16249
16252
|
|
|
@@ -16284,6 +16287,11 @@ fieldset.amb-design-item-selected {
|
|
|
16284
16287
|
margin-bottom: 20px;
|
|
16285
16288
|
}
|
|
16286
16289
|
|
|
16290
|
+
.seleteSort[data-v-f1c21952] {
|
|
16291
|
+
border-radius: 5px;
|
|
16292
|
+
border: 1px solid rgba(88, 147, 239);
|
|
16293
|
+
}
|
|
16294
|
+
|
|
16287
16295
|
.editorTool[data-v-26f79956] {
|
|
16288
16296
|
margin-left: auto;
|
|
16289
16297
|
}
|
|
@@ -16297,9 +16305,25 @@ fieldset.amb-design-item-selected {
|
|
|
16297
16305
|
align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
|
|
16298
16306
|
}
|
|
16299
16307
|
|
|
16300
|
-
.
|
|
16301
|
-
|
|
16302
|
-
|
|
16308
|
+
.el-tag[data-v-665d3bf4]{
|
|
16309
|
+
margin-left: 10px;
|
|
16310
|
+
}
|
|
16311
|
+
|
|
16312
|
+
.row-backgroud-header-tittle[data-v-b203475d]{
|
|
16313
|
+
display: flex;
|
|
16314
|
+
justify-content: space-between;
|
|
16315
|
+
text-align: center
|
|
16316
|
+
}
|
|
16317
|
+
.row-backgroud-header-tittle > div[data-v-b203475d]{
|
|
16318
|
+
width: 100%
|
|
16319
|
+
}
|
|
16320
|
+
|
|
16321
|
+
.seleteSort[data-v-97438be5] {
|
|
16322
|
+
border-radius: 5px;
|
|
16323
|
+
border: 1px solid rgba(88, 147, 239);
|
|
16324
|
+
}
|
|
16325
|
+
[data-v-97438be5] .el-select__selection{
|
|
16326
|
+
display: inline-block;
|
|
16303
16327
|
}
|
|
16304
16328
|
|
|
16305
16329
|
.stateBtn[data-v-ae2798fb]{
|
|
@@ -16347,25 +16371,9 @@ li[data-v-b436905c] {
|
|
|
16347
16371
|
list-style-type: none;
|
|
16348
16372
|
}
|
|
16349
16373
|
|
|
16350
|
-
.
|
|
16351
|
-
|
|
16352
|
-
|
|
16353
|
-
text-align: center
|
|
16354
|
-
}
|
|
16355
|
-
.row-backgroud-header-tittle > div[data-v-b203475d]{
|
|
16356
|
-
width: 100%
|
|
16357
|
-
}
|
|
16358
|
-
|
|
16359
|
-
.seleteSort[data-v-97438be5] {
|
|
16360
|
-
border-radius: 5px;
|
|
16361
|
-
border: 1px solid rgba(88, 147, 239);
|
|
16362
|
-
}
|
|
16363
|
-
[data-v-97438be5] .el-select__selection{
|
|
16364
|
-
display: inline-block;
|
|
16365
|
-
}
|
|
16366
|
-
|
|
16367
|
-
.el-tag[data-v-665d3bf4]{
|
|
16368
|
-
margin-left: 10px;
|
|
16374
|
+
.seleteSort[data-v-4978a9d6] {
|
|
16375
|
+
border-radius: 5px;
|
|
16376
|
+
border: 1px solid rgba(88, 147, 239);
|
|
16369
16377
|
}
|
|
16370
16378
|
|
|
16371
16379
|
.input-with-select .el-input-group__append {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "super-page-designer",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.70",
|
|
4
4
|
"description": "AgileBuilder super page designer",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"main": "dist/es/index.js",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"@logicflow/layout": "1.2.0-alpha.16",
|
|
29
29
|
"@vitejs/plugin-vue": "^5.0.4",
|
|
30
30
|
"@vueuse/core": "^10.9.0",
|
|
31
|
-
"agilebuilder-ui": "1.0.
|
|
31
|
+
"agilebuilder-ui": "1.0.50",
|
|
32
32
|
"echarts": "^5.5.0",
|
|
33
33
|
"element-plus": "^2.6.1",
|
|
34
34
|
"font-awesome": "^4.7.0",
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"pinia": "^2.1.7",
|
|
39
39
|
"qrcode": "^1.5.3",
|
|
40
40
|
"quill": "^2.0.1",
|
|
41
|
-
"service-flow-designer": "2.0.
|
|
42
|
-
"super-page-runtime": "2.0.
|
|
41
|
+
"service-flow-designer": "2.0.68",
|
|
42
|
+
"super-page-runtime": "2.0.69",
|
|
43
43
|
"uuid": "^9.0.1",
|
|
44
44
|
"vite": "^5.1.6",
|
|
45
45
|
"vite-plugin-node-stdlib-browser": "^0.2.1",
|