super-page-designer 2.1.73 → 2.1.74
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/data/component/data-origin.vue2.js +1 -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/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/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 +121 -121
- package/package.json +2 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent, ref, computed, resolveComponent, openBlock, createBlock, withCtx, createElementVNode, createVNode, createTextVNode, unref, createCommentVNode, withDirectives, vShow, createElementBlock, Fragment, renderList, normalizeClass, toDisplayString, renderSlot } from "vue";
|
|
2
|
-
import _sfc_main$1 from "../../form/common/dataorigin-input-table.
|
|
2
|
+
import _sfc_main$1 from "../../form/common/dataorigin-input-table.vue2.js";
|
|
3
3
|
import { Codemirror } from "vue-codemirror";
|
|
4
4
|
import _sfc_main$6 from "../../workflow/component/combination.vue.js";
|
|
5
5
|
import _sfc_main$5 from "./return-set-table.vue.js";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent, ref, onMounted, resolveComponent, openBlock, createBlock, withCtx, createElementVNode, createVNode, unref, createCommentVNode, withDirectives, createTextVNode, createElementBlock, Fragment, renderList, vShow, normalizeClass } from "vue";
|
|
2
|
-
import _sfc_main$3 from "./dataorigin-input-table.
|
|
2
|
+
import _sfc_main$3 from "./dataorigin-input-table.vue2.js";
|
|
3
3
|
import _sfc_main$2 from "./condition.vue.js";
|
|
4
4
|
import _sfc_main$1 from "./row-ul-li.vue.js";
|
|
5
5
|
import "uuid";
|
|
@@ -1,155 +1,4 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { Search } from "@element-plus/icons-vue";
|
|
3
|
-
const _hoisted_1 = { class: "dialog-footer" };
|
|
4
|
-
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
5
|
-
__name: "dataorigin-input-table",
|
|
6
|
-
props: {
|
|
7
|
-
modelValue: {
|
|
8
|
-
type: String,
|
|
9
|
-
default: ""
|
|
10
|
-
}
|
|
11
|
-
},
|
|
12
|
-
emits: ["update:modelValue"],
|
|
13
|
-
setup(__props, { emit: __emit }) {
|
|
14
|
-
const props = __props;
|
|
15
|
-
const inputValue = ref(props.modelValue);
|
|
16
|
-
const emit = __emit;
|
|
17
|
-
const tableData = [
|
|
18
|
-
{
|
|
19
|
-
id: 1,
|
|
20
|
-
date: "2016-05-03",
|
|
21
|
-
name: "Tom",
|
|
22
|
-
address: "No. 189, Grove St, Los Angeles"
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
id: 2,
|
|
26
|
-
date: "2016-05-02",
|
|
27
|
-
name: "Tom",
|
|
28
|
-
address: "No. 189, Grove St, Los Angeles"
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
id: 3,
|
|
32
|
-
date: "2016-05-04",
|
|
33
|
-
name: "Tom",
|
|
34
|
-
address: "No. 189, Grove St, Los Angeles"
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
id: 4,
|
|
38
|
-
date: "2016-05-01",
|
|
39
|
-
name: "Tom",
|
|
40
|
-
address: "No. 189, Grove St, Los Angeles"
|
|
41
|
-
}
|
|
42
|
-
];
|
|
43
|
-
const dialogVisible = ref(false);
|
|
44
|
-
const selectData = ref([]);
|
|
45
|
-
watch(() => props.modelValue, (newVal) => {
|
|
46
|
-
inputValue.value = newVal;
|
|
47
|
-
});
|
|
48
|
-
function confirm() {
|
|
49
|
-
if (selectData.value.length > 0) {
|
|
50
|
-
let str = "";
|
|
51
|
-
selectData.value.forEach((item) => {
|
|
52
|
-
str = str + item.name + ",";
|
|
53
|
-
});
|
|
54
|
-
str = str.substring(0, str.length - 1);
|
|
55
|
-
emit("update:modelValue", str);
|
|
56
|
-
dialogVisible.value = false;
|
|
57
|
-
} else {
|
|
58
|
-
dialogVisible.value = false;
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
function handleSelectionChange(selection) {
|
|
62
|
-
selectData.value = selection;
|
|
63
|
-
}
|
|
64
|
-
function inputClick() {
|
|
65
|
-
dialogVisible.value = true;
|
|
66
|
-
}
|
|
67
|
-
return (_ctx, _cache) => {
|
|
68
|
-
const _component_el_icon = resolveComponent("el-icon");
|
|
69
|
-
const _component_el_input = resolveComponent("el-input");
|
|
70
|
-
const _component_el_table_column = resolveComponent("el-table-column");
|
|
71
|
-
const _component_el_table = resolveComponent("el-table");
|
|
72
|
-
const _component_el_button = resolveComponent("el-button");
|
|
73
|
-
const _component_el_dialog = resolveComponent("el-dialog");
|
|
74
|
-
return openBlock(), createElementBlock(Fragment, null, [
|
|
75
|
-
createVNode(_component_el_input, {
|
|
76
|
-
modelValue: inputValue.value,
|
|
77
|
-
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => inputValue.value = $event),
|
|
78
|
-
placeholder: "请选择",
|
|
79
|
-
onClick: inputClick
|
|
80
|
-
}, {
|
|
81
|
-
suffix: withCtx(() => [
|
|
82
|
-
createVNode(_component_el_icon, { onClick: inputClick }, {
|
|
83
|
-
default: withCtx(() => [
|
|
84
|
-
createVNode(unref(Search))
|
|
85
|
-
]),
|
|
86
|
-
_: 1
|
|
87
|
-
})
|
|
88
|
-
]),
|
|
89
|
-
_: 1
|
|
90
|
-
}, 8, ["modelValue"]),
|
|
91
|
-
createVNode(_component_el_dialog, {
|
|
92
|
-
modelValue: dialogVisible.value,
|
|
93
|
-
"onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => dialogVisible.value = $event),
|
|
94
|
-
title: "Tips",
|
|
95
|
-
width: "500"
|
|
96
|
-
}, {
|
|
97
|
-
footer: withCtx(() => [
|
|
98
|
-
createElementVNode("div", _hoisted_1, [
|
|
99
|
-
createVNode(_component_el_button, {
|
|
100
|
-
onClick: _cache[1] || (_cache[1] = ($event) => dialogVisible.value = false)
|
|
101
|
-
}, {
|
|
102
|
-
default: withCtx(() => [
|
|
103
|
-
createTextVNode("取消")
|
|
104
|
-
]),
|
|
105
|
-
_: 1
|
|
106
|
-
}),
|
|
107
|
-
createVNode(_component_el_button, {
|
|
108
|
-
type: "primary",
|
|
109
|
-
onClick: confirm
|
|
110
|
-
}, {
|
|
111
|
-
default: withCtx(() => [
|
|
112
|
-
createTextVNode(" 确定 ")
|
|
113
|
-
]),
|
|
114
|
-
_: 1
|
|
115
|
-
})
|
|
116
|
-
])
|
|
117
|
-
]),
|
|
118
|
-
default: withCtx(() => [
|
|
119
|
-
createVNode(_component_el_table, {
|
|
120
|
-
data: tableData,
|
|
121
|
-
style: { "width": "100%" },
|
|
122
|
-
onSelectionChange: handleSelectionChange
|
|
123
|
-
}, {
|
|
124
|
-
default: withCtx(() => [
|
|
125
|
-
createVNode(_component_el_table_column, {
|
|
126
|
-
type: "selection",
|
|
127
|
-
width: "55"
|
|
128
|
-
}),
|
|
129
|
-
createVNode(_component_el_table_column, {
|
|
130
|
-
prop: "date",
|
|
131
|
-
label: "Date",
|
|
132
|
-
width: "180"
|
|
133
|
-
}),
|
|
134
|
-
createVNode(_component_el_table_column, {
|
|
135
|
-
prop: "name",
|
|
136
|
-
label: "Name",
|
|
137
|
-
width: "180"
|
|
138
|
-
}),
|
|
139
|
-
createVNode(_component_el_table_column, {
|
|
140
|
-
prop: "address",
|
|
141
|
-
label: "Address"
|
|
142
|
-
})
|
|
143
|
-
]),
|
|
144
|
-
_: 1
|
|
145
|
-
})
|
|
146
|
-
]),
|
|
147
|
-
_: 1
|
|
148
|
-
}, 8, ["modelValue"])
|
|
149
|
-
], 64);
|
|
150
|
-
};
|
|
151
|
-
}
|
|
152
|
-
});
|
|
1
|
+
import _sfc_main from "./dataorigin-input-table.vue2.js";
|
|
153
2
|
export {
|
|
154
3
|
_sfc_main as default
|
|
155
4
|
};
|
package/dist/es/components/design/views/assemblys/form/common/dataorigin-input-table.vue2.js
CHANGED
|
@@ -1,4 +1,155 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { defineComponent, ref, watch, resolveComponent, openBlock, createElementBlock, Fragment, createVNode, withCtx, unref, createElementVNode, createTextVNode } from "vue";
|
|
2
|
+
import { Search } from "@element-plus/icons-vue";
|
|
3
|
+
const _hoisted_1 = { class: "dialog-footer" };
|
|
4
|
+
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
5
|
+
__name: "dataorigin-input-table",
|
|
6
|
+
props: {
|
|
7
|
+
modelValue: {
|
|
8
|
+
type: String,
|
|
9
|
+
default: ""
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
emits: ["update:modelValue"],
|
|
13
|
+
setup(__props, { emit: __emit }) {
|
|
14
|
+
const props = __props;
|
|
15
|
+
const inputValue = ref(props.modelValue);
|
|
16
|
+
const emit = __emit;
|
|
17
|
+
const tableData = [
|
|
18
|
+
{
|
|
19
|
+
id: 1,
|
|
20
|
+
date: "2016-05-03",
|
|
21
|
+
name: "Tom",
|
|
22
|
+
address: "No. 189, Grove St, Los Angeles"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
id: 2,
|
|
26
|
+
date: "2016-05-02",
|
|
27
|
+
name: "Tom",
|
|
28
|
+
address: "No. 189, Grove St, Los Angeles"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
id: 3,
|
|
32
|
+
date: "2016-05-04",
|
|
33
|
+
name: "Tom",
|
|
34
|
+
address: "No. 189, Grove St, Los Angeles"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
id: 4,
|
|
38
|
+
date: "2016-05-01",
|
|
39
|
+
name: "Tom",
|
|
40
|
+
address: "No. 189, Grove St, Los Angeles"
|
|
41
|
+
}
|
|
42
|
+
];
|
|
43
|
+
const dialogVisible = ref(false);
|
|
44
|
+
const selectData = ref([]);
|
|
45
|
+
watch(() => props.modelValue, (newVal) => {
|
|
46
|
+
inputValue.value = newVal;
|
|
47
|
+
});
|
|
48
|
+
function confirm() {
|
|
49
|
+
if (selectData.value.length > 0) {
|
|
50
|
+
let str = "";
|
|
51
|
+
selectData.value.forEach((item) => {
|
|
52
|
+
str = str + item.name + ",";
|
|
53
|
+
});
|
|
54
|
+
str = str.substring(0, str.length - 1);
|
|
55
|
+
emit("update:modelValue", str);
|
|
56
|
+
dialogVisible.value = false;
|
|
57
|
+
} else {
|
|
58
|
+
dialogVisible.value = false;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
function handleSelectionChange(selection) {
|
|
62
|
+
selectData.value = selection;
|
|
63
|
+
}
|
|
64
|
+
function inputClick() {
|
|
65
|
+
dialogVisible.value = true;
|
|
66
|
+
}
|
|
67
|
+
return (_ctx, _cache) => {
|
|
68
|
+
const _component_el_icon = resolveComponent("el-icon");
|
|
69
|
+
const _component_el_input = resolveComponent("el-input");
|
|
70
|
+
const _component_el_table_column = resolveComponent("el-table-column");
|
|
71
|
+
const _component_el_table = resolveComponent("el-table");
|
|
72
|
+
const _component_el_button = resolveComponent("el-button");
|
|
73
|
+
const _component_el_dialog = resolveComponent("el-dialog");
|
|
74
|
+
return openBlock(), createElementBlock(Fragment, null, [
|
|
75
|
+
createVNode(_component_el_input, {
|
|
76
|
+
modelValue: inputValue.value,
|
|
77
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => inputValue.value = $event),
|
|
78
|
+
placeholder: "请选择",
|
|
79
|
+
onClick: inputClick
|
|
80
|
+
}, {
|
|
81
|
+
suffix: withCtx(() => [
|
|
82
|
+
createVNode(_component_el_icon, { onClick: inputClick }, {
|
|
83
|
+
default: withCtx(() => [
|
|
84
|
+
createVNode(unref(Search))
|
|
85
|
+
]),
|
|
86
|
+
_: 1
|
|
87
|
+
})
|
|
88
|
+
]),
|
|
89
|
+
_: 1
|
|
90
|
+
}, 8, ["modelValue"]),
|
|
91
|
+
createVNode(_component_el_dialog, {
|
|
92
|
+
modelValue: dialogVisible.value,
|
|
93
|
+
"onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => dialogVisible.value = $event),
|
|
94
|
+
title: "Tips",
|
|
95
|
+
width: "500"
|
|
96
|
+
}, {
|
|
97
|
+
footer: withCtx(() => [
|
|
98
|
+
createElementVNode("div", _hoisted_1, [
|
|
99
|
+
createVNode(_component_el_button, {
|
|
100
|
+
onClick: _cache[1] || (_cache[1] = ($event) => dialogVisible.value = false)
|
|
101
|
+
}, {
|
|
102
|
+
default: withCtx(() => [
|
|
103
|
+
createTextVNode("取消")
|
|
104
|
+
]),
|
|
105
|
+
_: 1
|
|
106
|
+
}),
|
|
107
|
+
createVNode(_component_el_button, {
|
|
108
|
+
type: "primary",
|
|
109
|
+
onClick: confirm
|
|
110
|
+
}, {
|
|
111
|
+
default: withCtx(() => [
|
|
112
|
+
createTextVNode(" 确定 ")
|
|
113
|
+
]),
|
|
114
|
+
_: 1
|
|
115
|
+
})
|
|
116
|
+
])
|
|
117
|
+
]),
|
|
118
|
+
default: withCtx(() => [
|
|
119
|
+
createVNode(_component_el_table, {
|
|
120
|
+
data: tableData,
|
|
121
|
+
style: { "width": "100%" },
|
|
122
|
+
onSelectionChange: handleSelectionChange
|
|
123
|
+
}, {
|
|
124
|
+
default: withCtx(() => [
|
|
125
|
+
createVNode(_component_el_table_column, {
|
|
126
|
+
type: "selection",
|
|
127
|
+
width: "55"
|
|
128
|
+
}),
|
|
129
|
+
createVNode(_component_el_table_column, {
|
|
130
|
+
prop: "date",
|
|
131
|
+
label: "Date",
|
|
132
|
+
width: "180"
|
|
133
|
+
}),
|
|
134
|
+
createVNode(_component_el_table_column, {
|
|
135
|
+
prop: "name",
|
|
136
|
+
label: "Name",
|
|
137
|
+
width: "180"
|
|
138
|
+
}),
|
|
139
|
+
createVNode(_component_el_table_column, {
|
|
140
|
+
prop: "address",
|
|
141
|
+
label: "Address"
|
|
142
|
+
})
|
|
143
|
+
]),
|
|
144
|
+
_: 1
|
|
145
|
+
})
|
|
146
|
+
]),
|
|
147
|
+
_: 1
|
|
148
|
+
}, 8, ["modelValue"])
|
|
149
|
+
], 64);
|
|
150
|
+
};
|
|
151
|
+
}
|
|
152
|
+
});
|
|
2
153
|
export {
|
|
3
154
|
_sfc_main as default
|
|
4
155
|
};
|
|
@@ -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-bc0d50cd"]]);
|
|
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-bc0d50cd"]]);
|
|
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 { findDesignItemByUuid, getUuidv4, deepCopy } from "../../../utils/common-util.js";
|
|
6
6
|
import { usePageContextStore } from "../../../../../stores/page-store.js";
|
|
@@ -16,7 +16,7 @@ import "@codemirror/autocomplete";
|
|
|
16
16
|
import "@codemirror/language";
|
|
17
17
|
import "@codemirror/search";
|
|
18
18
|
import "js-beautify";
|
|
19
|
-
import "../page-event/config.
|
|
19
|
+
import "../page-event/config.vue2.js";
|
|
20
20
|
import "../../../utils/assemblys-config.js";
|
|
21
21
|
import "../../../../../stores/page-store.js";
|
|
22
22
|
import "../../../../../stores/event-undo-redo-store.js";
|
package/dist/es/style.css
CHANGED
|
@@ -674,14 +674,6 @@ fieldset.amb-design-item-selected {
|
|
|
674
674
|
[data-v-511b453b]::-webkit-scrollbar-thumb:hover {
|
|
675
675
|
background-color: grey;
|
|
676
676
|
}
|
|
677
|
-
|
|
678
|
-
.el-switch.is-disabled .el-switch__core, .el-switch.is-disabled .el-switch__label{
|
|
679
|
-
cursor: default;
|
|
680
|
-
}
|
|
681
|
-
|
|
682
|
-
.el-select__wrapper.is-disabled{
|
|
683
|
-
cursor: default;
|
|
684
|
-
}
|
|
685
677
|
.el-tree-node__content {
|
|
686
678
|
height: 34px !important;
|
|
687
679
|
}
|
|
@@ -2536,6 +2528,10 @@ fieldset.amb-design-item-selected {
|
|
|
2536
2528
|
padding: 10px;
|
|
2537
2529
|
font-weight: bold;
|
|
2538
2530
|
}
|
|
2531
|
+
|
|
2532
|
+
.el-select__wrapper.is-disabled{
|
|
2533
|
+
cursor: default;
|
|
2534
|
+
}
|
|
2539
2535
|
.el-tree-node__content {
|
|
2540
2536
|
height: 34px !important;
|
|
2541
2537
|
}
|
|
@@ -4390,6 +4386,10 @@ fieldset.amb-design-item-selected {
|
|
|
4390
4386
|
padding: 10px;
|
|
4391
4387
|
font-weight: bold;
|
|
4392
4388
|
}
|
|
4389
|
+
|
|
4390
|
+
.el-switch.is-disabled .el-switch__core, .el-switch.is-disabled .el-switch__label{
|
|
4391
|
+
cursor: default;
|
|
4392
|
+
}
|
|
4393
4393
|
.el-tree-node__content {
|
|
4394
4394
|
height: 34px !important;
|
|
4395
4395
|
}
|
|
@@ -16804,6 +16804,56 @@ fieldset.amb-design-item-selected {
|
|
|
16804
16804
|
padding: 10px;
|
|
16805
16805
|
font-weight: bold;
|
|
16806
16806
|
}
|
|
16807
|
+
|
|
16808
|
+
/*不显示列样式*/
|
|
16809
|
+
.hiddenBorder {
|
|
16810
|
+
border-right: solid 1px #ebebeb !important;
|
|
16811
|
+
border-left: solid 1px #ebebeb !important;
|
|
16812
|
+
background-color: #ebebeb !important;
|
|
16813
|
+
}
|
|
16814
|
+
/*选中列样式*/
|
|
16815
|
+
.addBorder {
|
|
16816
|
+
border-right: solid 1px #5893ef !important;
|
|
16817
|
+
border-left: solid 1px #5893ef !important;
|
|
16818
|
+
background-color: #5893ef !important;
|
|
16819
|
+
color: #ffffff;
|
|
16820
|
+
}
|
|
16821
|
+
.ghost {
|
|
16822
|
+
opacity: 0.5;
|
|
16823
|
+
background: #c8ebfb;
|
|
16824
|
+
}
|
|
16825
|
+
|
|
16826
|
+
li[data-v-a555cba7] {
|
|
16827
|
+
color: #333;
|
|
16828
|
+
}
|
|
16829
|
+
.context-menu[data-v-a555cba7] {
|
|
16830
|
+
position: fixed;
|
|
16831
|
+
background: #fff;
|
|
16832
|
+
z-index: 999;
|
|
16833
|
+
padding: 5px;
|
|
16834
|
+
margin: 0;
|
|
16835
|
+
margin-top: 30px;
|
|
16836
|
+
}
|
|
16837
|
+
.context-menu li[data-v-a555cba7] {
|
|
16838
|
+
min-width: 75px;
|
|
16839
|
+
height: 28px;
|
|
16840
|
+
line-height: 28px;
|
|
16841
|
+
text-align: left;
|
|
16842
|
+
color: #1a1a1a;
|
|
16843
|
+
cursor: pointer;
|
|
16844
|
+
}
|
|
16845
|
+
.context-menu li[data-v-a555cba7]:hover {
|
|
16846
|
+
background: #5893ef;
|
|
16847
|
+
color: #fff;
|
|
16848
|
+
}
|
|
16849
|
+
.context-menu[data-v-a555cba7] {
|
|
16850
|
+
border: 1px solid #eee;
|
|
16851
|
+
box-shadow: 0 0.5em 1em 0 rgba(0, 0, 0, 0.1);
|
|
16852
|
+
border-radius: 5px;
|
|
16853
|
+
}
|
|
16854
|
+
li[data-v-a555cba7] {
|
|
16855
|
+
list-style-type: none;
|
|
16856
|
+
}
|
|
16807
16857
|
.el-tree-node__content {
|
|
16808
16858
|
height: 34px !important;
|
|
16809
16859
|
}
|
|
@@ -17422,56 +17472,6 @@ fieldset.amb-design-item-selected {
|
|
|
17422
17472
|
padding: 10px;
|
|
17423
17473
|
font-weight: bold;
|
|
17424
17474
|
}
|
|
17425
|
-
|
|
17426
|
-
/*不显示列样式*/
|
|
17427
|
-
.hiddenBorder {
|
|
17428
|
-
border-right: solid 1px #ebebeb !important;
|
|
17429
|
-
border-left: solid 1px #ebebeb !important;
|
|
17430
|
-
background-color: #ebebeb !important;
|
|
17431
|
-
}
|
|
17432
|
-
/*选中列样式*/
|
|
17433
|
-
.addBorder {
|
|
17434
|
-
border-right: solid 1px #5893ef !important;
|
|
17435
|
-
border-left: solid 1px #5893ef !important;
|
|
17436
|
-
background-color: #5893ef !important;
|
|
17437
|
-
color: #ffffff;
|
|
17438
|
-
}
|
|
17439
|
-
.ghost {
|
|
17440
|
-
opacity: 0.5;
|
|
17441
|
-
background: #c8ebfb;
|
|
17442
|
-
}
|
|
17443
|
-
|
|
17444
|
-
li[data-v-a555cba7] {
|
|
17445
|
-
color: #333;
|
|
17446
|
-
}
|
|
17447
|
-
.context-menu[data-v-a555cba7] {
|
|
17448
|
-
position: fixed;
|
|
17449
|
-
background: #fff;
|
|
17450
|
-
z-index: 999;
|
|
17451
|
-
padding: 5px;
|
|
17452
|
-
margin: 0;
|
|
17453
|
-
margin-top: 30px;
|
|
17454
|
-
}
|
|
17455
|
-
.context-menu li[data-v-a555cba7] {
|
|
17456
|
-
min-width: 75px;
|
|
17457
|
-
height: 28px;
|
|
17458
|
-
line-height: 28px;
|
|
17459
|
-
text-align: left;
|
|
17460
|
-
color: #1a1a1a;
|
|
17461
|
-
cursor: pointer;
|
|
17462
|
-
}
|
|
17463
|
-
.context-menu li[data-v-a555cba7]:hover {
|
|
17464
|
-
background: #5893ef;
|
|
17465
|
-
color: #fff;
|
|
17466
|
-
}
|
|
17467
|
-
.context-menu[data-v-a555cba7] {
|
|
17468
|
-
border: 1px solid #eee;
|
|
17469
|
-
box-shadow: 0 0.5em 1em 0 rgba(0, 0, 0, 0.1);
|
|
17470
|
-
border-radius: 5px;
|
|
17471
|
-
}
|
|
17472
|
-
li[data-v-a555cba7] {
|
|
17473
|
-
list-style-type: none;
|
|
17474
|
-
}
|
|
17475
17475
|
|
|
17476
17476
|
.amb-design-attr-header[data-v-226997f7] {
|
|
17477
17477
|
position: sticky;
|
|
@@ -17504,11 +17504,6 @@ li[data-v-a555cba7] {
|
|
|
17504
17504
|
border: 1px solid rgba(88, 147, 239);
|
|
17505
17505
|
}
|
|
17506
17506
|
|
|
17507
|
-
.seleteSort[data-v-3336d6c5] {
|
|
17508
|
-
border-radius: 5px;
|
|
17509
|
-
border: 1px solid rgba(88, 147, 239);
|
|
17510
|
-
}
|
|
17511
|
-
|
|
17512
17507
|
.event-item[data-v-c7ab7527] {
|
|
17513
17508
|
font-size: 12px;
|
|
17514
17509
|
border-bottom: 2px dashed #f5f6f8;
|
|
@@ -17520,54 +17515,22 @@ li[data-v-a555cba7] {
|
|
|
17520
17515
|
min-width: 120px !important;
|
|
17521
17516
|
}
|
|
17522
17517
|
|
|
17523
|
-
.
|
|
17524
|
-
|
|
17525
|
-
border: 1px solid rgba(88, 147, 239);
|
|
17526
|
-
}
|
|
17527
|
-
|
|
17528
|
-
li[data-v-4fd4369c] {
|
|
17529
|
-
color: #333;
|
|
17530
|
-
}
|
|
17531
|
-
.context-menu[data-v-4fd4369c] {
|
|
17532
|
-
position: fixed;
|
|
17533
|
-
background: #fff;
|
|
17534
|
-
z-index: 999;
|
|
17535
|
-
padding: 5px;
|
|
17536
|
-
margin: 0;
|
|
17537
|
-
margin-top: 30px;
|
|
17518
|
+
.editorTool[data-v-bc0d50cd] {
|
|
17519
|
+
margin-left: auto;
|
|
17538
17520
|
}
|
|
17539
|
-
.
|
|
17540
|
-
|
|
17541
|
-
height: 28px;
|
|
17542
|
-
line-height: 28px;
|
|
17543
|
-
text-align: left;
|
|
17544
|
-
color: #1a1a1a;
|
|
17521
|
+
.editorOption[data-v-bc0d50cd] {
|
|
17522
|
+
margin-right: 10px;
|
|
17545
17523
|
cursor: pointer;
|
|
17546
|
-
}
|
|
17547
|
-
|
|
17548
|
-
/*.context-menu li:hover {*/
|
|
17549
|
-
/* background: #5893ef;*/
|
|
17550
|
-
/* color: #fff;*/
|
|
17551
|
-
/*}*/
|
|
17552
|
-
.context-menuLi[data-v-4fd4369c]:hover {
|
|
17553
|
-
background: #5893ef;
|
|
17554
|
-
color: #fff;
|
|
17555
|
-
}
|
|
17556
|
-
.context-menu[data-v-4fd4369c] {
|
|
17557
|
-
border: 1px solid #eee;
|
|
17558
|
-
box-shadow: 0 0.5em 1em 0 rgba(0, 0, 0, 0.1);
|
|
17559
|
-
border-radius: 5px;
|
|
17560
17524
|
}
|
|
17561
|
-
|
|
17562
|
-
|
|
17525
|
+
.pppp[data-v-bc0d50cd] {
|
|
17526
|
+
display: flex; /* 使用Flex布局 */
|
|
17527
|
+
justify-content: flex-start;
|
|
17528
|
+
align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
|
|
17563
17529
|
}
|
|
17564
17530
|
|
|
17565
|
-
.
|
|
17566
|
-
|
|
17567
|
-
|
|
17568
|
-
.stateText[data-v-ae2798fb]{
|
|
17569
|
-
margin-left: 10px;
|
|
17570
|
-
color: #7b7b7b;
|
|
17531
|
+
.seleteSort[data-v-8aacbe0c] {
|
|
17532
|
+
border-radius: 5px;
|
|
17533
|
+
border: 1px solid rgba(88, 147, 239);
|
|
17571
17534
|
}
|
|
17572
17535
|
|
|
17573
17536
|
.seleteSort[data-v-1fd3d630] {
|
|
@@ -17578,17 +17541,9 @@ li[data-v-4fd4369c] {
|
|
|
17578
17541
|
display: inline-block;
|
|
17579
17542
|
}
|
|
17580
17543
|
|
|
17581
|
-
.
|
|
17582
|
-
|
|
17583
|
-
|
|
17584
|
-
.editorOption[data-v-bc0d50cd] {
|
|
17585
|
-
margin-right: 10px;
|
|
17586
|
-
cursor: pointer;
|
|
17587
|
-
}
|
|
17588
|
-
.pppp[data-v-bc0d50cd] {
|
|
17589
|
-
display: flex; /* 使用Flex布局 */
|
|
17590
|
-
justify-content: flex-start;
|
|
17591
|
-
align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
|
|
17544
|
+
.seleteSort[data-v-3336d6c5] {
|
|
17545
|
+
border-radius: 5px;
|
|
17546
|
+
border: 1px solid rgba(88, 147, 239);
|
|
17592
17547
|
}
|
|
17593
17548
|
|
|
17594
17549
|
.icon-set-center-body[data-v-181d1ce8]{
|
|
@@ -17628,12 +17583,53 @@ li[data-v-4fd4369c] {
|
|
|
17628
17583
|
margin-bottom: 20px;
|
|
17629
17584
|
}
|
|
17630
17585
|
|
|
17631
|
-
.
|
|
17632
|
-
|
|
17586
|
+
.stateBtn[data-v-ae2798fb]{
|
|
17587
|
+
display: flex;
|
|
17588
|
+
}
|
|
17589
|
+
.stateText[data-v-ae2798fb]{
|
|
17590
|
+
margin-left: 10px;
|
|
17591
|
+
color: #7b7b7b;
|
|
17633
17592
|
}
|
|
17634
17593
|
|
|
17635
|
-
[data-v-
|
|
17636
|
-
|
|
17594
|
+
li[data-v-4fd4369c] {
|
|
17595
|
+
color: #333;
|
|
17596
|
+
}
|
|
17597
|
+
.context-menu[data-v-4fd4369c] {
|
|
17598
|
+
position: fixed;
|
|
17599
|
+
background: #fff;
|
|
17600
|
+
z-index: 999;
|
|
17601
|
+
padding: 5px;
|
|
17602
|
+
margin: 0;
|
|
17603
|
+
margin-top: 30px;
|
|
17604
|
+
}
|
|
17605
|
+
.context-menu li[data-v-4fd4369c] {
|
|
17606
|
+
min-width: 75px;
|
|
17607
|
+
height: 28px;
|
|
17608
|
+
line-height: 28px;
|
|
17609
|
+
text-align: left;
|
|
17610
|
+
color: #1a1a1a;
|
|
17611
|
+
cursor: pointer;
|
|
17612
|
+
}
|
|
17613
|
+
|
|
17614
|
+
/*.context-menu li:hover {*/
|
|
17615
|
+
/* background: #5893ef;*/
|
|
17616
|
+
/* color: #fff;*/
|
|
17617
|
+
/*}*/
|
|
17618
|
+
.context-menuLi[data-v-4fd4369c]:hover {
|
|
17619
|
+
background: #5893ef;
|
|
17620
|
+
color: #fff;
|
|
17621
|
+
}
|
|
17622
|
+
.context-menu[data-v-4fd4369c] {
|
|
17623
|
+
border: 1px solid #eee;
|
|
17624
|
+
box-shadow: 0 0.5em 1em 0 rgba(0, 0, 0, 0.1);
|
|
17625
|
+
border-radius: 5px;
|
|
17626
|
+
}
|
|
17627
|
+
li[data-v-4fd4369c] {
|
|
17628
|
+
list-style-type: none;
|
|
17629
|
+
}
|
|
17630
|
+
|
|
17631
|
+
.el-tag[data-v-665d3bf4]{
|
|
17632
|
+
margin-left: 10px;
|
|
17637
17633
|
}
|
|
17638
17634
|
|
|
17639
17635
|
.seleteSort[data-v-a62867e0] {
|
|
@@ -17641,6 +17637,10 @@ li[data-v-4fd4369c] {
|
|
|
17641
17637
|
border: 1px solid rgba(88, 147, 239);
|
|
17642
17638
|
}
|
|
17643
17639
|
|
|
17640
|
+
[data-v-8e6fbc57] .centered-input .el-input__inner {
|
|
17641
|
+
text-align: center;
|
|
17642
|
+
}
|
|
17643
|
+
|
|
17644
17644
|
.row-backgroud-header-tittle[data-v-b203475d]{
|
|
17645
17645
|
display: flex;
|
|
17646
17646
|
justify-content: space-between;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "super-page-designer",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.74",
|
|
4
4
|
"description": "AgileBuilder super page designer",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"main": "dist/es/index.js",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"vue-echarts": "^6.6.9",
|
|
53
53
|
"vue-router": "^4.3.0",
|
|
54
54
|
"vuex": "^4.1.0",
|
|
55
|
-
"workflow-editor": "0.0.
|
|
55
|
+
"workflow-editor": "0.0.48-up"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@codemirror/autocomplete": "^6.16.0",
|