super-page-designer 2.0.70 → 2.0.73
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/views/assemblys/common/common-variable-bind.vue.js +2 -2
- package/dist/es/components/design/views/assemblys/common/common-variable-bind.vue2.js +1 -702
- package/dist/es/components/design/views/assemblys/common/common-variable-bind.vue3.js +702 -1
- package/dist/es/components/design/views/assemblys/data/component/configuration-value.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/data/component/data-origin.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/data/component/data-origin.vue2.js +13 -1
- package/dist/es/components/design/views/assemblys/data/component/formatting.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/data/component/querySetting.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/data/component/table-children-column.vue.js +11 -3
- package/dist/es/components/design/views/assemblys/data/table/table-attr-base.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/data/table/tablecolumn-attr-base.vue.js +4 -5
- package/dist/es/components/design/views/assemblys/form/common/data-format.vue.js +2 -2
- package/dist/es/components/design/views/assemblys/form/common/dataorigin-input-table.vue.js +1 -152
- package/dist/es/components/design/views/assemblys/form/common/dataorigin-input-table.vue2.js +152 -1
- package/dist/es/components/design/views/assemblys/form/common/icon-set-dialog.vue.js +2 -2
- package/dist/es/components/design/views/assemblys/form/common/icon-set-dialog.vue2.js +1 -217
- package/dist/es/components/design/views/assemblys/form/common/icon-set-dialog.vue3.js +217 -1
- package/dist/es/components/design/views/design/page-event/config.vue.js +7 -1
- package/dist/es/components/design/views/design/page-event/config.vue2.js +1 -7
- 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/style.css +35 -35
- package/package.json +3 -3
|
@@ -1,217 +1 @@
|
|
|
1
|
-
|
|
2
|
-
import { Search, Plus, ChatLineRound, Unlock, MuteNotification, Operation, WarningFilled } from "@element-plus/icons-vue";
|
|
3
|
-
const _withScopeId = (n) => (pushScopeId("data-v-4aa5ce08"), n = n(), popScopeId(), n);
|
|
4
|
-
const _hoisted_1 = { class: "icon-set-center-body" };
|
|
5
|
-
const _hoisted_2 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("span", null, "新建", -1));
|
|
6
|
-
const _hoisted_3 = ["onClick"];
|
|
7
|
-
const _hoisted_4 = { class: "dialog-footer" };
|
|
8
|
-
const _hoisted_5 = { class: "dialog-footer" };
|
|
9
|
-
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
10
|
-
__name: "icon-set-dialog",
|
|
11
|
-
props: {
|
|
12
|
-
modelValue: {
|
|
13
|
-
type: String,
|
|
14
|
-
default: ""
|
|
15
|
-
}
|
|
16
|
-
},
|
|
17
|
-
emits: ["update:modelValue"],
|
|
18
|
-
setup(__props, { emit: __emit }) {
|
|
19
|
-
const props = __props;
|
|
20
|
-
const emit = __emit;
|
|
21
|
-
const iconValue = ref(props.modelValue);
|
|
22
|
-
const dialogVisible = ref(false);
|
|
23
|
-
const selectIconName = ref("");
|
|
24
|
-
const addIconDialogVisible = ref(false);
|
|
25
|
-
const form = reactive({});
|
|
26
|
-
const iconList = [
|
|
27
|
-
{ name: "ChatLineRound", icon: ChatLineRound },
|
|
28
|
-
{ name: "Unlock", icon: Unlock },
|
|
29
|
-
{ name: "MuteNotification", icon: MuteNotification },
|
|
30
|
-
{ name: "Operation", icon: Operation },
|
|
31
|
-
{ name: "WarningFilled", icon: WarningFilled }
|
|
32
|
-
];
|
|
33
|
-
watch(() => props.modelValue, (newVal) => {
|
|
34
|
-
iconValue.value = newVal;
|
|
35
|
-
});
|
|
36
|
-
function selectIcon(name) {
|
|
37
|
-
selectIconName.value = name;
|
|
38
|
-
}
|
|
39
|
-
function openDialog() {
|
|
40
|
-
dialogVisible.value = true;
|
|
41
|
-
}
|
|
42
|
-
function addIcon() {
|
|
43
|
-
console.log("%c描述-105701", "color:#2E3435;background:#F8BB07;padding:3px;border-radius:2px", selectIconName.value);
|
|
44
|
-
emit("update:modelValue", selectIconName.value);
|
|
45
|
-
dialogVisible.value = false;
|
|
46
|
-
}
|
|
47
|
-
return (_ctx, _cache) => {
|
|
48
|
-
const _component_el_button = resolveComponent("el-button");
|
|
49
|
-
const _component_el_input = resolveComponent("el-input");
|
|
50
|
-
const _component_el_icon = resolveComponent("el-icon");
|
|
51
|
-
const _component_el_dialog = resolveComponent("el-dialog");
|
|
52
|
-
const _component_el_form_item = resolveComponent("el-form-item");
|
|
53
|
-
const _component_el_option = resolveComponent("el-option");
|
|
54
|
-
const _component_el_select = resolveComponent("el-select");
|
|
55
|
-
const _component_el_form = resolveComponent("el-form");
|
|
56
|
-
return openBlock(), createElementBlock(Fragment, null, [
|
|
57
|
-
createVNode(_component_el_input, {
|
|
58
|
-
modelValue: iconValue.value,
|
|
59
|
-
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => iconValue.value = $event),
|
|
60
|
-
onClick: openDialog
|
|
61
|
-
}, {
|
|
62
|
-
append: withCtx(() => [
|
|
63
|
-
createVNode(_component_el_button, {
|
|
64
|
-
icon: unref(Search),
|
|
65
|
-
onClick: openDialog
|
|
66
|
-
}, null, 8, ["icon"])
|
|
67
|
-
]),
|
|
68
|
-
_: 1
|
|
69
|
-
}, 8, ["modelValue"]),
|
|
70
|
-
createVNode(_component_el_dialog, {
|
|
71
|
-
modelValue: dialogVisible.value,
|
|
72
|
-
"onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => dialogVisible.value = $event),
|
|
73
|
-
title: "选择icon",
|
|
74
|
-
width: "40%"
|
|
75
|
-
}, {
|
|
76
|
-
footer: withCtx(() => [
|
|
77
|
-
createElementVNode("div", _hoisted_4, [
|
|
78
|
-
createVNode(_component_el_button, {
|
|
79
|
-
onClick: _cache[2] || (_cache[2] = ($event) => dialogVisible.value = false)
|
|
80
|
-
}, {
|
|
81
|
-
default: withCtx(() => [
|
|
82
|
-
createTextVNode("取消")
|
|
83
|
-
]),
|
|
84
|
-
_: 1
|
|
85
|
-
}),
|
|
86
|
-
createVNode(_component_el_button, {
|
|
87
|
-
type: "primary",
|
|
88
|
-
onClick: addIcon
|
|
89
|
-
}, {
|
|
90
|
-
default: withCtx(() => [
|
|
91
|
-
createTextVNode(" 确定 ")
|
|
92
|
-
]),
|
|
93
|
-
_: 1
|
|
94
|
-
})
|
|
95
|
-
])
|
|
96
|
-
]),
|
|
97
|
-
default: withCtx(() => [
|
|
98
|
-
createElementVNode("div", _hoisted_1, [
|
|
99
|
-
createElementVNode("div", {
|
|
100
|
-
class: "icon-set-center-creation",
|
|
101
|
-
onClick: _cache[1] || (_cache[1] = ($event) => addIconDialogVisible.value = true)
|
|
102
|
-
}, [
|
|
103
|
-
createVNode(_component_el_icon, null, {
|
|
104
|
-
default: withCtx(() => [
|
|
105
|
-
createVNode(unref(Plus))
|
|
106
|
-
]),
|
|
107
|
-
_: 1
|
|
108
|
-
}),
|
|
109
|
-
_hoisted_2
|
|
110
|
-
]),
|
|
111
|
-
(openBlock(), createElementBlock(Fragment, null, renderList(iconList, (item, index) => {
|
|
112
|
-
return createElementVNode("div", {
|
|
113
|
-
key: index,
|
|
114
|
-
class: normalizeClass(selectIconName.value === item.name ? "icon-set-center-item icon-set-center-item-border" : "icon-set-center-item"),
|
|
115
|
-
onClick: ($event) => selectIcon(item.name)
|
|
116
|
-
}, [
|
|
117
|
-
(openBlock(), createBlock(resolveDynamicComponent(item.icon), { style: { "width": "40px", "height": "40px" } })),
|
|
118
|
-
createElementVNode("span", null, toDisplayString(item.name), 1)
|
|
119
|
-
], 10, _hoisted_3);
|
|
120
|
-
}), 64))
|
|
121
|
-
])
|
|
122
|
-
]),
|
|
123
|
-
_: 1
|
|
124
|
-
}, 8, ["modelValue"]),
|
|
125
|
-
createVNode(_component_el_dialog, {
|
|
126
|
-
modelValue: addIconDialogVisible.value,
|
|
127
|
-
"onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => addIconDialogVisible.value = $event),
|
|
128
|
-
title: "创建icon",
|
|
129
|
-
width: "30%"
|
|
130
|
-
}, {
|
|
131
|
-
footer: withCtx(() => [
|
|
132
|
-
createElementVNode("div", _hoisted_5, [
|
|
133
|
-
createVNode(_component_el_button, {
|
|
134
|
-
onClick: _cache[7] || (_cache[7] = ($event) => addIconDialogVisible.value = false)
|
|
135
|
-
}, {
|
|
136
|
-
default: withCtx(() => [
|
|
137
|
-
createTextVNode("取消")
|
|
138
|
-
]),
|
|
139
|
-
_: 1
|
|
140
|
-
}),
|
|
141
|
-
createVNode(_component_el_button, {
|
|
142
|
-
type: "primary",
|
|
143
|
-
onClick: _cache[8] || (_cache[8] = ($event) => addIconDialogVisible.value = false)
|
|
144
|
-
}, {
|
|
145
|
-
default: withCtx(() => [
|
|
146
|
-
createTextVNode(" 确定 ")
|
|
147
|
-
]),
|
|
148
|
-
_: 1
|
|
149
|
-
})
|
|
150
|
-
])
|
|
151
|
-
]),
|
|
152
|
-
default: withCtx(() => [
|
|
153
|
-
createVNode(_component_el_form, {
|
|
154
|
-
model: form,
|
|
155
|
-
"label-width": "80px"
|
|
156
|
-
}, {
|
|
157
|
-
default: withCtx(() => [
|
|
158
|
-
createVNode(_component_el_form_item, {
|
|
159
|
-
label: "类名",
|
|
160
|
-
prop: "name",
|
|
161
|
-
rules: [{ required: true, message: "请输入类名", trigger: "blur" }]
|
|
162
|
-
}, {
|
|
163
|
-
default: withCtx(() => [
|
|
164
|
-
createVNode(_component_el_input, {
|
|
165
|
-
size: "default",
|
|
166
|
-
modelValue: form.name,
|
|
167
|
-
"onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => form.name = $event)
|
|
168
|
-
}, null, 8, ["modelValue"])
|
|
169
|
-
]),
|
|
170
|
-
_: 1
|
|
171
|
-
}),
|
|
172
|
-
createVNode(_component_el_form_item, { label: "标准按钮" }, {
|
|
173
|
-
default: withCtx(() => [
|
|
174
|
-
createVNode(_component_el_select, {
|
|
175
|
-
size: "default",
|
|
176
|
-
modelValue: form.region,
|
|
177
|
-
"onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => form.region = $event),
|
|
178
|
-
placeholder: "please select your zone"
|
|
179
|
-
}, {
|
|
180
|
-
default: withCtx(() => [
|
|
181
|
-
createVNode(_component_el_option, {
|
|
182
|
-
label: "Zone one",
|
|
183
|
-
value: "shanghai"
|
|
184
|
-
}),
|
|
185
|
-
createVNode(_component_el_option, {
|
|
186
|
-
label: "Zone two",
|
|
187
|
-
value: "beijing"
|
|
188
|
-
})
|
|
189
|
-
]),
|
|
190
|
-
_: 1
|
|
191
|
-
}, 8, ["modelValue"])
|
|
192
|
-
]),
|
|
193
|
-
_: 1
|
|
194
|
-
}),
|
|
195
|
-
createVNode(_component_el_form_item, { label: "备注" }, {
|
|
196
|
-
default: withCtx(() => [
|
|
197
|
-
createVNode(_component_el_input, {
|
|
198
|
-
size: "default",
|
|
199
|
-
modelValue: form.name,
|
|
200
|
-
"onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => form.name = $event)
|
|
201
|
-
}, null, 8, ["modelValue"])
|
|
202
|
-
]),
|
|
203
|
-
_: 1
|
|
204
|
-
})
|
|
205
|
-
]),
|
|
206
|
-
_: 1
|
|
207
|
-
}, 8, ["model"])
|
|
208
|
-
]),
|
|
209
|
-
_: 1
|
|
210
|
-
}, 8, ["modelValue"])
|
|
211
|
-
], 64);
|
|
212
|
-
};
|
|
213
|
-
}
|
|
214
|
-
});
|
|
215
|
-
export {
|
|
216
|
-
_sfc_main as default
|
|
217
|
-
};
|
|
1
|
+
|
|
@@ -1 +1,217 @@
|
|
|
1
|
-
|
|
1
|
+
import { defineComponent, ref, reactive, watch, resolveComponent, openBlock, createElementBlock, Fragment, createVNode, withCtx, unref, createElementVNode, createTextVNode, renderList, normalizeClass, createBlock, resolveDynamicComponent, toDisplayString, pushScopeId, popScopeId } from "vue";
|
|
2
|
+
import { Search, Plus, ChatLineRound, Unlock, MuteNotification, Operation, WarningFilled } from "@element-plus/icons-vue";
|
|
3
|
+
const _withScopeId = (n) => (pushScopeId("data-v-4aa5ce08"), n = n(), popScopeId(), n);
|
|
4
|
+
const _hoisted_1 = { class: "icon-set-center-body" };
|
|
5
|
+
const _hoisted_2 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("span", null, "新建", -1));
|
|
6
|
+
const _hoisted_3 = ["onClick"];
|
|
7
|
+
const _hoisted_4 = { class: "dialog-footer" };
|
|
8
|
+
const _hoisted_5 = { class: "dialog-footer" };
|
|
9
|
+
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
10
|
+
__name: "icon-set-dialog",
|
|
11
|
+
props: {
|
|
12
|
+
modelValue: {
|
|
13
|
+
type: String,
|
|
14
|
+
default: ""
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
emits: ["update:modelValue"],
|
|
18
|
+
setup(__props, { emit: __emit }) {
|
|
19
|
+
const props = __props;
|
|
20
|
+
const emit = __emit;
|
|
21
|
+
const iconValue = ref(props.modelValue);
|
|
22
|
+
const dialogVisible = ref(false);
|
|
23
|
+
const selectIconName = ref("");
|
|
24
|
+
const addIconDialogVisible = ref(false);
|
|
25
|
+
const form = reactive({});
|
|
26
|
+
const iconList = [
|
|
27
|
+
{ name: "ChatLineRound", icon: ChatLineRound },
|
|
28
|
+
{ name: "Unlock", icon: Unlock },
|
|
29
|
+
{ name: "MuteNotification", icon: MuteNotification },
|
|
30
|
+
{ name: "Operation", icon: Operation },
|
|
31
|
+
{ name: "WarningFilled", icon: WarningFilled }
|
|
32
|
+
];
|
|
33
|
+
watch(() => props.modelValue, (newVal) => {
|
|
34
|
+
iconValue.value = newVal;
|
|
35
|
+
});
|
|
36
|
+
function selectIcon(name) {
|
|
37
|
+
selectIconName.value = name;
|
|
38
|
+
}
|
|
39
|
+
function openDialog() {
|
|
40
|
+
dialogVisible.value = true;
|
|
41
|
+
}
|
|
42
|
+
function addIcon() {
|
|
43
|
+
console.log("%c描述-105701", "color:#2E3435;background:#F8BB07;padding:3px;border-radius:2px", selectIconName.value);
|
|
44
|
+
emit("update:modelValue", selectIconName.value);
|
|
45
|
+
dialogVisible.value = false;
|
|
46
|
+
}
|
|
47
|
+
return (_ctx, _cache) => {
|
|
48
|
+
const _component_el_button = resolveComponent("el-button");
|
|
49
|
+
const _component_el_input = resolveComponent("el-input");
|
|
50
|
+
const _component_el_icon = resolveComponent("el-icon");
|
|
51
|
+
const _component_el_dialog = resolveComponent("el-dialog");
|
|
52
|
+
const _component_el_form_item = resolveComponent("el-form-item");
|
|
53
|
+
const _component_el_option = resolveComponent("el-option");
|
|
54
|
+
const _component_el_select = resolveComponent("el-select");
|
|
55
|
+
const _component_el_form = resolveComponent("el-form");
|
|
56
|
+
return openBlock(), createElementBlock(Fragment, null, [
|
|
57
|
+
createVNode(_component_el_input, {
|
|
58
|
+
modelValue: iconValue.value,
|
|
59
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => iconValue.value = $event),
|
|
60
|
+
onClick: openDialog
|
|
61
|
+
}, {
|
|
62
|
+
append: withCtx(() => [
|
|
63
|
+
createVNode(_component_el_button, {
|
|
64
|
+
icon: unref(Search),
|
|
65
|
+
onClick: openDialog
|
|
66
|
+
}, null, 8, ["icon"])
|
|
67
|
+
]),
|
|
68
|
+
_: 1
|
|
69
|
+
}, 8, ["modelValue"]),
|
|
70
|
+
createVNode(_component_el_dialog, {
|
|
71
|
+
modelValue: dialogVisible.value,
|
|
72
|
+
"onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => dialogVisible.value = $event),
|
|
73
|
+
title: "选择icon",
|
|
74
|
+
width: "40%"
|
|
75
|
+
}, {
|
|
76
|
+
footer: withCtx(() => [
|
|
77
|
+
createElementVNode("div", _hoisted_4, [
|
|
78
|
+
createVNode(_component_el_button, {
|
|
79
|
+
onClick: _cache[2] || (_cache[2] = ($event) => dialogVisible.value = false)
|
|
80
|
+
}, {
|
|
81
|
+
default: withCtx(() => [
|
|
82
|
+
createTextVNode("取消")
|
|
83
|
+
]),
|
|
84
|
+
_: 1
|
|
85
|
+
}),
|
|
86
|
+
createVNode(_component_el_button, {
|
|
87
|
+
type: "primary",
|
|
88
|
+
onClick: addIcon
|
|
89
|
+
}, {
|
|
90
|
+
default: withCtx(() => [
|
|
91
|
+
createTextVNode(" 确定 ")
|
|
92
|
+
]),
|
|
93
|
+
_: 1
|
|
94
|
+
})
|
|
95
|
+
])
|
|
96
|
+
]),
|
|
97
|
+
default: withCtx(() => [
|
|
98
|
+
createElementVNode("div", _hoisted_1, [
|
|
99
|
+
createElementVNode("div", {
|
|
100
|
+
class: "icon-set-center-creation",
|
|
101
|
+
onClick: _cache[1] || (_cache[1] = ($event) => addIconDialogVisible.value = true)
|
|
102
|
+
}, [
|
|
103
|
+
createVNode(_component_el_icon, null, {
|
|
104
|
+
default: withCtx(() => [
|
|
105
|
+
createVNode(unref(Plus))
|
|
106
|
+
]),
|
|
107
|
+
_: 1
|
|
108
|
+
}),
|
|
109
|
+
_hoisted_2
|
|
110
|
+
]),
|
|
111
|
+
(openBlock(), createElementBlock(Fragment, null, renderList(iconList, (item, index) => {
|
|
112
|
+
return createElementVNode("div", {
|
|
113
|
+
key: index,
|
|
114
|
+
class: normalizeClass(selectIconName.value === item.name ? "icon-set-center-item icon-set-center-item-border" : "icon-set-center-item"),
|
|
115
|
+
onClick: ($event) => selectIcon(item.name)
|
|
116
|
+
}, [
|
|
117
|
+
(openBlock(), createBlock(resolveDynamicComponent(item.icon), { style: { "width": "40px", "height": "40px" } })),
|
|
118
|
+
createElementVNode("span", null, toDisplayString(item.name), 1)
|
|
119
|
+
], 10, _hoisted_3);
|
|
120
|
+
}), 64))
|
|
121
|
+
])
|
|
122
|
+
]),
|
|
123
|
+
_: 1
|
|
124
|
+
}, 8, ["modelValue"]),
|
|
125
|
+
createVNode(_component_el_dialog, {
|
|
126
|
+
modelValue: addIconDialogVisible.value,
|
|
127
|
+
"onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => addIconDialogVisible.value = $event),
|
|
128
|
+
title: "创建icon",
|
|
129
|
+
width: "30%"
|
|
130
|
+
}, {
|
|
131
|
+
footer: withCtx(() => [
|
|
132
|
+
createElementVNode("div", _hoisted_5, [
|
|
133
|
+
createVNode(_component_el_button, {
|
|
134
|
+
onClick: _cache[7] || (_cache[7] = ($event) => addIconDialogVisible.value = false)
|
|
135
|
+
}, {
|
|
136
|
+
default: withCtx(() => [
|
|
137
|
+
createTextVNode("取消")
|
|
138
|
+
]),
|
|
139
|
+
_: 1
|
|
140
|
+
}),
|
|
141
|
+
createVNode(_component_el_button, {
|
|
142
|
+
type: "primary",
|
|
143
|
+
onClick: _cache[8] || (_cache[8] = ($event) => addIconDialogVisible.value = false)
|
|
144
|
+
}, {
|
|
145
|
+
default: withCtx(() => [
|
|
146
|
+
createTextVNode(" 确定 ")
|
|
147
|
+
]),
|
|
148
|
+
_: 1
|
|
149
|
+
})
|
|
150
|
+
])
|
|
151
|
+
]),
|
|
152
|
+
default: withCtx(() => [
|
|
153
|
+
createVNode(_component_el_form, {
|
|
154
|
+
model: form,
|
|
155
|
+
"label-width": "80px"
|
|
156
|
+
}, {
|
|
157
|
+
default: withCtx(() => [
|
|
158
|
+
createVNode(_component_el_form_item, {
|
|
159
|
+
label: "类名",
|
|
160
|
+
prop: "name",
|
|
161
|
+
rules: [{ required: true, message: "请输入类名", trigger: "blur" }]
|
|
162
|
+
}, {
|
|
163
|
+
default: withCtx(() => [
|
|
164
|
+
createVNode(_component_el_input, {
|
|
165
|
+
size: "default",
|
|
166
|
+
modelValue: form.name,
|
|
167
|
+
"onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => form.name = $event)
|
|
168
|
+
}, null, 8, ["modelValue"])
|
|
169
|
+
]),
|
|
170
|
+
_: 1
|
|
171
|
+
}),
|
|
172
|
+
createVNode(_component_el_form_item, { label: "标准按钮" }, {
|
|
173
|
+
default: withCtx(() => [
|
|
174
|
+
createVNode(_component_el_select, {
|
|
175
|
+
size: "default",
|
|
176
|
+
modelValue: form.region,
|
|
177
|
+
"onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => form.region = $event),
|
|
178
|
+
placeholder: "please select your zone"
|
|
179
|
+
}, {
|
|
180
|
+
default: withCtx(() => [
|
|
181
|
+
createVNode(_component_el_option, {
|
|
182
|
+
label: "Zone one",
|
|
183
|
+
value: "shanghai"
|
|
184
|
+
}),
|
|
185
|
+
createVNode(_component_el_option, {
|
|
186
|
+
label: "Zone two",
|
|
187
|
+
value: "beijing"
|
|
188
|
+
})
|
|
189
|
+
]),
|
|
190
|
+
_: 1
|
|
191
|
+
}, 8, ["modelValue"])
|
|
192
|
+
]),
|
|
193
|
+
_: 1
|
|
194
|
+
}),
|
|
195
|
+
createVNode(_component_el_form_item, { label: "备注" }, {
|
|
196
|
+
default: withCtx(() => [
|
|
197
|
+
createVNode(_component_el_input, {
|
|
198
|
+
size: "default",
|
|
199
|
+
modelValue: form.name,
|
|
200
|
+
"onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => form.name = $event)
|
|
201
|
+
}, null, 8, ["modelValue"])
|
|
202
|
+
]),
|
|
203
|
+
_: 1
|
|
204
|
+
})
|
|
205
|
+
]),
|
|
206
|
+
_: 1
|
|
207
|
+
}, 8, ["model"])
|
|
208
|
+
]),
|
|
209
|
+
_: 1
|
|
210
|
+
}, 8, ["modelValue"])
|
|
211
|
+
], 64);
|
|
212
|
+
};
|
|
213
|
+
}
|
|
214
|
+
});
|
|
215
|
+
export {
|
|
216
|
+
_sfc_main as default
|
|
217
|
+
};
|
|
@@ -1 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
import _sfc_main from "./config.vue3.js";
|
|
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,7 +1 @@
|
|
|
1
|
-
|
|
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
|
+
|
|
@@ -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.vue.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.vue2.js";
|
|
19
19
|
import "../../../utils/assemblys-config.js";
|
|
20
20
|
import "../../../../../stores/page-store.js";
|
|
21
21
|
import "../../../../../stores/event-undo-redo-store.js";
|
package/dist/es/style.css
CHANGED
|
@@ -3151,10 +3151,6 @@ 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
|
-
}
|
|
3158
3154
|
.el-tree-node__content {
|
|
3159
3155
|
height: 34px !important;
|
|
3160
3156
|
}
|
|
@@ -3775,7 +3771,7 @@ fieldset.amb-design-item-selected {
|
|
|
3775
3771
|
font-weight: bold;
|
|
3776
3772
|
}
|
|
3777
3773
|
|
|
3778
|
-
.el-
|
|
3774
|
+
.el-select__wrapper.is-disabled{
|
|
3779
3775
|
cursor: default;
|
|
3780
3776
|
}
|
|
3781
3777
|
.el-tree-node__content {
|
|
@@ -5016,6 +5012,10 @@ fieldset.amb-design-item-selected {
|
|
|
5016
5012
|
padding: 10px;
|
|
5017
5013
|
font-weight: bold;
|
|
5018
5014
|
}
|
|
5015
|
+
|
|
5016
|
+
.el-switch.is-disabled .el-switch__core, .el-switch.is-disabled .el-switch__label{
|
|
5017
|
+
cursor: default;
|
|
5018
|
+
}
|
|
5019
5019
|
.el-tree-node__content {
|
|
5020
5020
|
height: 34px !important;
|
|
5021
5021
|
}
|
|
@@ -15589,10 +15589,6 @@ fieldset.amb-design-item-selected {
|
|
|
15589
15589
|
padding: 10px;
|
|
15590
15590
|
font-weight: bold;
|
|
15591
15591
|
}
|
|
15592
|
-
|
|
15593
|
-
[data-v-d87986ba] .el-form-item__label{
|
|
15594
|
-
padding: 0;
|
|
15595
|
-
}
|
|
15596
15592
|
.el-tree-node__content {
|
|
15597
15593
|
height: 34px !important;
|
|
15598
15594
|
}
|
|
@@ -16213,6 +16209,10 @@ fieldset.amb-design-item-selected {
|
|
|
16213
16209
|
font-weight: bold;
|
|
16214
16210
|
}
|
|
16215
16211
|
|
|
16212
|
+
[data-v-d87986ba] .el-form-item__label{
|
|
16213
|
+
padding: 0;
|
|
16214
|
+
}
|
|
16215
|
+
|
|
16216
16216
|
.amb-design-attr-header[data-v-226997f7] {
|
|
16217
16217
|
position: sticky;
|
|
16218
16218
|
position: -webkit-sticky;
|
|
@@ -16250,6 +16250,19 @@ fieldset.amb-design-item-selected {
|
|
|
16250
16250
|
min-width: 120px !important;
|
|
16251
16251
|
}
|
|
16252
16252
|
|
|
16253
|
+
.editorTool[data-v-26f79956] {
|
|
16254
|
+
margin-left: auto;
|
|
16255
|
+
}
|
|
16256
|
+
.editorOption[data-v-26f79956] {
|
|
16257
|
+
margin-right: 10px;
|
|
16258
|
+
cursor: pointer;
|
|
16259
|
+
}
|
|
16260
|
+
.pppp[data-v-26f79956] {
|
|
16261
|
+
display: flex; /* 使用Flex布局 */
|
|
16262
|
+
justify-content: flex-start;
|
|
16263
|
+
align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
|
|
16264
|
+
}
|
|
16265
|
+
|
|
16253
16266
|
.icon-set-center-body[data-v-4aa5ce08]{
|
|
16254
16267
|
display: grid;
|
|
16255
16268
|
grid-template-columns:repeat(5,1fr);
|
|
@@ -16292,23 +16305,6 @@ fieldset.amb-design-item-selected {
|
|
|
16292
16305
|
border: 1px solid rgba(88, 147, 239);
|
|
16293
16306
|
}
|
|
16294
16307
|
|
|
16295
|
-
.editorTool[data-v-26f79956] {
|
|
16296
|
-
margin-left: auto;
|
|
16297
|
-
}
|
|
16298
|
-
.editorOption[data-v-26f79956] {
|
|
16299
|
-
margin-right: 10px;
|
|
16300
|
-
cursor: pointer;
|
|
16301
|
-
}
|
|
16302
|
-
.pppp[data-v-26f79956] {
|
|
16303
|
-
display: flex; /* 使用Flex布局 */
|
|
16304
|
-
justify-content: flex-start;
|
|
16305
|
-
align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
|
|
16306
|
-
}
|
|
16307
|
-
|
|
16308
|
-
.el-tag[data-v-665d3bf4]{
|
|
16309
|
-
margin-left: 10px;
|
|
16310
|
-
}
|
|
16311
|
-
|
|
16312
16308
|
.row-backgroud-header-tittle[data-v-b203475d]{
|
|
16313
16309
|
display: flex;
|
|
16314
16310
|
justify-content: space-between;
|
|
@@ -16318,14 +16314,6 @@ fieldset.amb-design-item-selected {
|
|
|
16318
16314
|
width: 100%
|
|
16319
16315
|
}
|
|
16320
16316
|
|
|
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;
|
|
16327
|
-
}
|
|
16328
|
-
|
|
16329
16317
|
.stateBtn[data-v-ae2798fb]{
|
|
16330
16318
|
display: flex;
|
|
16331
16319
|
}
|
|
@@ -16371,11 +16359,23 @@ li[data-v-b436905c] {
|
|
|
16371
16359
|
list-style-type: none;
|
|
16372
16360
|
}
|
|
16373
16361
|
|
|
16374
|
-
.seleteSort[data-v-
|
|
16362
|
+
.seleteSort[data-v-0f08e3d1] {
|
|
16375
16363
|
border-radius: 5px;
|
|
16376
16364
|
border: 1px solid rgba(88, 147, 239);
|
|
16377
16365
|
}
|
|
16378
16366
|
|
|
16367
|
+
.seleteSort[data-v-97438be5] {
|
|
16368
|
+
border-radius: 5px;
|
|
16369
|
+
border: 1px solid rgba(88, 147, 239);
|
|
16370
|
+
}
|
|
16371
|
+
[data-v-97438be5] .el-select__selection{
|
|
16372
|
+
display: inline-block;
|
|
16373
|
+
}
|
|
16374
|
+
|
|
16375
|
+
.el-tag[data-v-665d3bf4]{
|
|
16376
|
+
margin-left: 10px;
|
|
16377
|
+
}
|
|
16378
|
+
|
|
16379
16379
|
.input-with-select .el-input-group__append {
|
|
16380
16380
|
background-color: var(--el-fill-color-blank);
|
|
16381
16381
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "super-page-designer",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.73",
|
|
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.51",
|
|
32
32
|
"echarts": "^5.5.0",
|
|
33
33
|
"element-plus": "^2.6.1",
|
|
34
34
|
"font-awesome": "^4.7.0",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"qrcode": "^1.5.3",
|
|
40
40
|
"quill": "^2.0.1",
|
|
41
41
|
"service-flow-designer": "2.0.68",
|
|
42
|
-
"super-page-runtime": "2.0.
|
|
42
|
+
"super-page-runtime": "2.0.71",
|
|
43
43
|
"uuid": "^9.0.1",
|
|
44
44
|
"vite": "^5.1.6",
|
|
45
45
|
"vite-plugin-node-stdlib-browser": "^0.2.1",
|