@fecp/designer 5.6.22 → 5.6.24
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/es/designer/package.json.mjs +1 -1
- package/es/designer/src/packages/dialog/useDialogDialog.mjs +1 -1
- package/es/designer/src/packages/dialogGlobal/useDialogGlobalDialog.mjs +1 -1
- package/es/designer/src/packages/form/property/widgets.vue.mjs +2 -2
- package/es/designer.css +649 -649
- package/es/node_modules/element-plus/es/components/container/index.mjs +1 -1
- package/es/node_modules/element-plus/es/components/form/index.mjs +1 -1
- package/es/node_modules/element-plus/es/components/input/src/input.vue_vue_type_script_setup_true_lang.mjs +1 -1
- package/es/packages/vue/src/components/dialog/DialogRenderer.vue2.mjs +7 -7
- package/es/packages/vue/src/components/forms/form/Form.vue.mjs +4 -2
- package/es/packages/vue/src/components/forms/form/Form.vue2.mjs +1370 -0
- package/es/packages/vue/src/components/forms/form/FormAnchorNav.vue2.mjs +113 -0
- package/es/packages/vue/src/components/forms/form/RightAnchorNav.vue2.mjs +128 -0
- package/es/packages/vue/src/components/forms/form/index.mjs +1 -1
- package/es/packages/vue/src/components/layout/layoutCard/LayoutCard.vue.mjs +1 -1
- package/es/packages/vue/src/components/table/Table.vue.mjs +20 -6
- package/es/packages/vue/src/components/table/TableColumn.vue.mjs +54 -3
- package/es/packages/vue/src/composables/usePageEvents.mjs +55 -1
- package/lib/designer/package.json.js +1 -1
- package/lib/designer/src/packages/dialog/useDialogDialog.js +1 -1
- package/lib/designer/src/packages/dialogGlobal/useDialogGlobalDialog.js +1 -1
- package/lib/designer/src/packages/form/index.vue.js +1 -1
- package/lib/designer/src/packages/form/property/index.vue.js +1 -1
- package/lib/designer/src/packages/form/property/widgets.vue.js +2 -2
- package/lib/designer.css +649 -649
- package/lib/packages/vue/src/components/dialog/DialogRenderer.vue2.js +6 -6
- package/lib/packages/vue/src/components/forms/form/Form.vue.js +4 -2
- package/lib/packages/vue/src/components/forms/form/Form.vue2.js +1370 -0
- package/lib/packages/vue/src/components/forms/form/FormAnchorNav.vue2.js +113 -0
- package/lib/packages/vue/src/components/forms/form/RightAnchorNav.vue2.js +128 -0
- package/lib/packages/vue/src/components/forms/form/index.js +1 -1
- package/lib/packages/vue/src/components/layout/layoutCard/LayoutCard.vue.js +1 -1
- package/lib/packages/vue/src/components/table/Table.vue.js +20 -6
- package/lib/packages/vue/src/components/table/TableColumn.vue.js +54 -3
- package/lib/packages/vue/src/composables/usePageEvents.js +55 -1
- package/package.json +1 -1
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import { ref, watch, createElementBlock, createCommentVNode, openBlock, createElementVNode, Fragment, renderList, withModifiers, normalizeClass, createTextVNode, toDisplayString } from "vue";
|
|
2
|
+
/* empty css */
|
|
3
|
+
import _export_sfc from "../../../../../../_virtual/_plugin-vue_export-helper.mjs";
|
|
4
|
+
const _hoisted_1 = { class: "fec-form-links" };
|
|
5
|
+
const _hoisted_2 = ["href", "onClick"];
|
|
6
|
+
const _hoisted_3 = { class: "fec-form-link-content" };
|
|
7
|
+
const _hoisted_4 = {
|
|
8
|
+
key: 0,
|
|
9
|
+
class: "tab-count"
|
|
10
|
+
};
|
|
11
|
+
const _sfc_main = {
|
|
12
|
+
__name: "FormAnchorNav",
|
|
13
|
+
props: {
|
|
14
|
+
links: {
|
|
15
|
+
type: Array,
|
|
16
|
+
default: () => []
|
|
17
|
+
},
|
|
18
|
+
modelValue: {
|
|
19
|
+
type: [String, Number],
|
|
20
|
+
default: ""
|
|
21
|
+
},
|
|
22
|
+
fecFormRef: {
|
|
23
|
+
type: Object
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
emits: ["change", "update:modelValue"],
|
|
27
|
+
setup(__props, { emit: __emit }) {
|
|
28
|
+
var _a;
|
|
29
|
+
const props = __props;
|
|
30
|
+
const formAnchorRef = ref();
|
|
31
|
+
const emit = __emit;
|
|
32
|
+
watch(
|
|
33
|
+
() => props.links,
|
|
34
|
+
(newLinks) => {
|
|
35
|
+
if (newLinks.length && !props.modelValue) {
|
|
36
|
+
emit("update:modelValue", newLinks[0].id);
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
{ immediate: true }
|
|
40
|
+
);
|
|
41
|
+
let isClickScrolling = false;
|
|
42
|
+
function handleClick(e, link) {
|
|
43
|
+
var _a2;
|
|
44
|
+
e.preventDefault();
|
|
45
|
+
emit("update:modelValue", link.id);
|
|
46
|
+
emit("change", link);
|
|
47
|
+
const fecForm = (_a2 = formAnchorRef.value) == null ? void 0 : _a2.closest(".fec-form");
|
|
48
|
+
const element = fecForm == null ? void 0 : fecForm.querySelector(`#comp_${link.id}`);
|
|
49
|
+
if (element) {
|
|
50
|
+
isClickScrolling = true;
|
|
51
|
+
element.scrollIntoView({ behavior: "smooth", block: "start" });
|
|
52
|
+
waitScrollEnd(() => {
|
|
53
|
+
isClickScrolling = false;
|
|
54
|
+
});
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
const scrollWrap = (_a = props.fecFormRef) == null ? void 0 : _a.$el.querySelector(".el-scrollbar__wrap");
|
|
58
|
+
scrollWrap == null ? void 0 : scrollWrap.addEventListener("scroll", onScroll);
|
|
59
|
+
function waitScrollEnd(callback) {
|
|
60
|
+
let timer = null;
|
|
61
|
+
if (!scrollWrap) return;
|
|
62
|
+
const handler = () => {
|
|
63
|
+
clearTimeout(timer);
|
|
64
|
+
timer = setTimeout(() => {
|
|
65
|
+
scrollWrap.removeEventListener("scroll", handler);
|
|
66
|
+
callback();
|
|
67
|
+
}, 150);
|
|
68
|
+
};
|
|
69
|
+
scrollWrap.addEventListener("scroll", handler);
|
|
70
|
+
}
|
|
71
|
+
function onScroll() {
|
|
72
|
+
if (isClickScrolling) return;
|
|
73
|
+
const top = scrollWrap.scrollTop;
|
|
74
|
+
let current = null;
|
|
75
|
+
for (const item of props.links) {
|
|
76
|
+
const el = document.getElementById(String(item.id));
|
|
77
|
+
if (!el) continue;
|
|
78
|
+
if (el.offsetTop <= top) current = item;
|
|
79
|
+
}
|
|
80
|
+
if (current) {
|
|
81
|
+
emit("update:modelValue", current.id);
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
return (_ctx, _cache) => {
|
|
85
|
+
return __props.links.length ? (openBlock(), createElementBlock("div", {
|
|
86
|
+
key: 0,
|
|
87
|
+
class: "fec-form-nav",
|
|
88
|
+
ref_key: "formAnchorRef",
|
|
89
|
+
ref: formAnchorRef
|
|
90
|
+
}, [
|
|
91
|
+
createElementVNode("div", _hoisted_1, [
|
|
92
|
+
(openBlock(true), createElementBlock(Fragment, null, renderList(__props.links, (link) => {
|
|
93
|
+
return openBlock(), createElementBlock("a", {
|
|
94
|
+
key: link.id,
|
|
95
|
+
href: `#${link.id}`,
|
|
96
|
+
class: normalizeClass(["fec-form-link-item", { "is-active": __props.modelValue == link.id }]),
|
|
97
|
+
onClick: withModifiers(($event) => handleClick($event, link), ["prevent"])
|
|
98
|
+
}, [
|
|
99
|
+
createElementVNode("span", _hoisted_3, [
|
|
100
|
+
createTextVNode(toDisplayString(link.title) + " ", 1),
|
|
101
|
+
link.count ? (openBlock(), createElementBlock("span", _hoisted_4, "(" + toDisplayString(link.count) + ")", 1)) : createCommentVNode("", true)
|
|
102
|
+
])
|
|
103
|
+
], 10, _hoisted_2);
|
|
104
|
+
}), 128))
|
|
105
|
+
])
|
|
106
|
+
], 512)) : createCommentVNode("", true);
|
|
107
|
+
};
|
|
108
|
+
}
|
|
109
|
+
};
|
|
110
|
+
const FormAnchorNav = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-1a0c9e5c"]]);
|
|
111
|
+
export {
|
|
112
|
+
FormAnchorNav as default
|
|
113
|
+
};
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
import "../../../../../../node_modules/element-plus/es/index.mjs";
|
|
2
|
+
/* empty css */
|
|
3
|
+
/* empty css */
|
|
4
|
+
/* empty css */
|
|
5
|
+
import { ref, watch, onMounted, createElementBlock, openBlock, createElementVNode, createVNode, createTextVNode, withCtx, Fragment, renderList, createBlock, withModifiers, createCommentVNode, toDisplayString } from "vue";
|
|
6
|
+
/* empty css */
|
|
7
|
+
import _export_sfc from "../../../../../../_virtual/_plugin-vue_export-helper.mjs";
|
|
8
|
+
import { ElAnchor, ElAnchorLink } from "../../../../../../node_modules/element-plus/es/components/anchor/index.mjs";
|
|
9
|
+
const _hoisted_1 = { class: "anchor-nav" };
|
|
10
|
+
const _hoisted_2 = { key: 0 };
|
|
11
|
+
const _sfc_main = {
|
|
12
|
+
__name: "RightAnchorNav",
|
|
13
|
+
props: {
|
|
14
|
+
links: {
|
|
15
|
+
type: Array,
|
|
16
|
+
default: () => []
|
|
17
|
+
},
|
|
18
|
+
modelValue: {
|
|
19
|
+
type: [String, Number],
|
|
20
|
+
default: ""
|
|
21
|
+
},
|
|
22
|
+
fecFormRef: {
|
|
23
|
+
type: Object
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
emits: ["change", "update:modelValue"],
|
|
27
|
+
setup(__props, { emit: __emit }) {
|
|
28
|
+
var _a;
|
|
29
|
+
const props = __props;
|
|
30
|
+
const anchorRef = ref();
|
|
31
|
+
const emit = __emit;
|
|
32
|
+
watch(
|
|
33
|
+
() => props.links,
|
|
34
|
+
(newLinks) => {
|
|
35
|
+
if (newLinks.length && !props.modelValue) {
|
|
36
|
+
emit("update:modelValue", newLinks[0].id);
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
{ immediate: true }
|
|
40
|
+
);
|
|
41
|
+
let isClickScrolling = false;
|
|
42
|
+
function handleClick(e, link) {
|
|
43
|
+
var _a2, _b;
|
|
44
|
+
e.preventDefault();
|
|
45
|
+
emit("update:modelValue", link.id);
|
|
46
|
+
emit("change", link);
|
|
47
|
+
const fecForm = (_b = (_a2 = anchorRef.value) == null ? void 0 : _a2.$el) == null ? void 0 : _b.closest(".fec-form");
|
|
48
|
+
const element = fecForm == null ? void 0 : fecForm.querySelector(`#comp_${link.id}`);
|
|
49
|
+
if (element) {
|
|
50
|
+
isClickScrolling = true;
|
|
51
|
+
element.scrollIntoView({ behavior: "smooth", block: "start" });
|
|
52
|
+
waitScrollEnd(() => {
|
|
53
|
+
isClickScrolling = false;
|
|
54
|
+
});
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
const scrollWrap = (_a = props.fecFormRef) == null ? void 0 : _a.$el.querySelector(".el-scrollbar__wrap");
|
|
58
|
+
scrollWrap == null ? void 0 : scrollWrap.addEventListener("scroll", onScroll);
|
|
59
|
+
function waitScrollEnd(callback) {
|
|
60
|
+
let timer = null;
|
|
61
|
+
if (!scrollWrap) return;
|
|
62
|
+
const handler = () => {
|
|
63
|
+
clearTimeout(timer);
|
|
64
|
+
timer = setTimeout(() => {
|
|
65
|
+
scrollWrap.removeEventListener("scroll", handler);
|
|
66
|
+
callback();
|
|
67
|
+
}, 150);
|
|
68
|
+
};
|
|
69
|
+
scrollWrap.addEventListener("scroll", handler);
|
|
70
|
+
}
|
|
71
|
+
function onScroll() {
|
|
72
|
+
var _a2;
|
|
73
|
+
if (isClickScrolling) return;
|
|
74
|
+
const top = scrollWrap.scrollTop;
|
|
75
|
+
let current = null;
|
|
76
|
+
for (const item of props.links) {
|
|
77
|
+
const el = document.getElementById(String(item.id));
|
|
78
|
+
if (!el) continue;
|
|
79
|
+
if (el.offsetTop - 70 <= top) current = item;
|
|
80
|
+
}
|
|
81
|
+
if (current) {
|
|
82
|
+
emit("update:modelValue", current.id);
|
|
83
|
+
(_a2 = anchorRef.value) == null ? void 0 : _a2.scrollTo(`#${current.id}`);
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
onMounted(() => {
|
|
87
|
+
var _a2;
|
|
88
|
+
(_a2 = anchorRef.value) == null ? void 0 : _a2.scrollTo(`#${props.modelValue}`);
|
|
89
|
+
});
|
|
90
|
+
return (_ctx, _cache) => {
|
|
91
|
+
const _component_el_anchor_link = ElAnchorLink;
|
|
92
|
+
const _component_el_anchor = ElAnchor;
|
|
93
|
+
return openBlock(), createElementBlock("div", _hoisted_1, [
|
|
94
|
+
_cache[0] || (_cache[0] = createElementVNode("div", { class: "anchor-title" }, [
|
|
95
|
+
createElementVNode("div", { class: "label-line" }),
|
|
96
|
+
createTextVNode(" 导航 ")
|
|
97
|
+
], -1)),
|
|
98
|
+
createVNode(_component_el_anchor, {
|
|
99
|
+
type: "underline",
|
|
100
|
+
offset: 70,
|
|
101
|
+
ref_key: "anchorRef",
|
|
102
|
+
ref: anchorRef
|
|
103
|
+
}, {
|
|
104
|
+
default: withCtx(() => [
|
|
105
|
+
(openBlock(true), createElementBlock(Fragment, null, renderList(__props.links, (link) => {
|
|
106
|
+
return openBlock(), createBlock(_component_el_anchor_link, {
|
|
107
|
+
key: link.id,
|
|
108
|
+
href: `#${link.id}`,
|
|
109
|
+
onClick: withModifiers(($event) => handleClick($event, link), ["prevent"])
|
|
110
|
+
}, {
|
|
111
|
+
default: withCtx(() => [
|
|
112
|
+
createTextVNode(toDisplayString(link.title) + " ", 1),
|
|
113
|
+
link.count ? (openBlock(), createElementBlock("span", _hoisted_2, "(" + toDisplayString(link.count) + ")", 1)) : createCommentVNode("", true)
|
|
114
|
+
]),
|
|
115
|
+
_: 2
|
|
116
|
+
}, 1032, ["href", "onClick"]);
|
|
117
|
+
}), 128))
|
|
118
|
+
]),
|
|
119
|
+
_: 1
|
|
120
|
+
}, 512)
|
|
121
|
+
]);
|
|
122
|
+
};
|
|
123
|
+
}
|
|
124
|
+
};
|
|
125
|
+
const RightAnchorNav = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-298a5455"]]);
|
|
126
|
+
export {
|
|
127
|
+
RightAnchorNav as default
|
|
128
|
+
};
|
|
@@ -6,7 +6,7 @@ import { ArrowRight as arrow_right_default } from "../../../../../../node_module
|
|
|
6
6
|
import { customDialog } from "../../dialog/customDialog/index.mjs";
|
|
7
7
|
import api from "../../../api/index.mjs";
|
|
8
8
|
import { getCurrentVueInstance } from "../../../utils/getInstance.mjs";
|
|
9
|
-
import _Form from "../../forms/form/Form.
|
|
9
|
+
import _Form from "../../forms/form/Form.vue2.mjs";
|
|
10
10
|
import _Table from "../../table/Table.vue.mjs";
|
|
11
11
|
import { cloneDeep, loadComponentByPath } from "../../../utils/common.mjs";
|
|
12
12
|
/* empty css */
|
|
@@ -23,10 +23,29 @@ import { isEqual } from "../../utils/common.mjs";
|
|
|
23
23
|
/* empty css */
|
|
24
24
|
import "../../utils/formulajs/functionCore.mjs";
|
|
25
25
|
import { useEventFlow } from "../../utils/eventFlow/eventFlowHandler.mjs";
|
|
26
|
+
import getJsonAsyncUtil from "../../utils/getJsonAsyncUtil.mjs";
|
|
27
|
+
import emitter from "../../utils/eventBus.mjs";
|
|
28
|
+
import { formatCellValue } from "../../utils/formatCellValue.mjs";
|
|
29
|
+
import { useStore } from "../../../../../node_modules/vuex/dist/vuex.esm-bundler.mjs";
|
|
26
30
|
/* empty css */
|
|
27
31
|
/* empty css */
|
|
28
|
-
/* empty css
|
|
32
|
+
/* empty css */
|
|
29
33
|
import _export_sfc from "../../../../../_virtual/_plugin-vue_export-helper.mjs";
|
|
34
|
+
/* empty css */
|
|
35
|
+
/* empty css */
|
|
36
|
+
import "../../../../../node_modules/grid-layout-plus/es/index.mjs";
|
|
37
|
+
import "../forms/formItem/index.mjs";
|
|
38
|
+
import "../details/header/index.mjs";
|
|
39
|
+
import "../details/main/index.mjs";
|
|
40
|
+
import "../details/footer/index.mjs";
|
|
41
|
+
/* empty css */
|
|
42
|
+
/* empty css */
|
|
43
|
+
/* empty css */
|
|
44
|
+
/* empty css */
|
|
45
|
+
import "../../../../../node_modules/moment/dist/moment.mjs";
|
|
46
|
+
import "../../utils/importantDataChange.mjs";
|
|
47
|
+
/* empty css */
|
|
48
|
+
/* empty css */
|
|
30
49
|
/* empty css */
|
|
31
50
|
/* empty css */
|
|
32
51
|
/* empty css */
|
|
@@ -39,11 +58,6 @@ import _export_sfc from "../../../../../_virtual/_plugin-vue_export-helper.mjs";
|
|
|
39
58
|
/* empty css */
|
|
40
59
|
/* empty css */
|
|
41
60
|
/* empty css */
|
|
42
|
-
import getJsonAsyncUtil from "../../utils/getJsonAsyncUtil.mjs";
|
|
43
|
-
import emitter from "../../utils/eventBus.mjs";
|
|
44
|
-
import { formatCellValue } from "../../utils/formatCellValue.mjs";
|
|
45
|
-
import { useStore } from "../../../../../node_modules/vuex/dist/vuex.esm-bundler.mjs";
|
|
46
|
-
/* empty css */
|
|
47
61
|
import { ElContainer } from "../../../../../node_modules/element-plus/es/components/container/index.mjs";
|
|
48
62
|
import { ElMessage } from "../../../../../node_modules/element-plus/es/components/message/index.mjs";
|
|
49
63
|
const _hoisted_1 = { class: "fec-vxe-table" };
|
|
@@ -13,8 +13,61 @@ import { removeEmptyValues } from "../../utils/common.mjs";
|
|
|
13
13
|
/* empty css */
|
|
14
14
|
import "../../utils/formulajs/functionCore.mjs";
|
|
15
15
|
import { useEventFlow } from "../../utils/eventFlow/eventFlowHandler.mjs";
|
|
16
|
-
/* empty css
|
|
16
|
+
/* empty css */
|
|
17
|
+
/* empty css */
|
|
18
|
+
/* empty css */
|
|
19
|
+
/* empty css */
|
|
20
|
+
/* empty css */
|
|
21
|
+
import "xe-utils";
|
|
22
|
+
/* empty css */
|
|
23
|
+
/* empty css */
|
|
24
|
+
/* empty css */
|
|
25
|
+
/* empty css */
|
|
26
|
+
/* empty css */
|
|
27
|
+
/* empty css */
|
|
28
|
+
/* empty css */
|
|
29
|
+
/* empty css */
|
|
30
|
+
/* empty css */
|
|
31
|
+
/* empty css */
|
|
17
32
|
import _export_sfc from "../../../../../_virtual/_plugin-vue_export-helper.mjs";
|
|
33
|
+
/* empty css */
|
|
34
|
+
/* empty css */
|
|
35
|
+
/* empty css */
|
|
36
|
+
/* empty css */
|
|
37
|
+
/* empty css */
|
|
38
|
+
/* empty css */
|
|
39
|
+
/* empty css */
|
|
40
|
+
import "../../../../../node_modules/element-plus/theme-chalk/el-date-picker.css.mjs";
|
|
41
|
+
import "../forms/text/index.mjs";
|
|
42
|
+
import "../forms/select/index.mjs";
|
|
43
|
+
import "../forms/multipleSelection/index.mjs";
|
|
44
|
+
import "../forms/date/index.mjs";
|
|
45
|
+
import "../forms/number/index.mjs";
|
|
46
|
+
/* empty css */
|
|
47
|
+
/* empty css */
|
|
48
|
+
/* empty css */
|
|
49
|
+
/* empty css */
|
|
50
|
+
/* empty css */
|
|
51
|
+
/* empty css */
|
|
52
|
+
import "../../../../../node_modules/element-plus/theme-chalk/el-tab-pane.css.mjs";
|
|
53
|
+
/* empty css */
|
|
54
|
+
import "../../utils/eventBus.mjs";
|
|
55
|
+
import "../../../../../node_modules/decimal.js/decimal.mjs";
|
|
56
|
+
/* empty css */
|
|
57
|
+
/* empty css */
|
|
58
|
+
import "../../../../../node_modules/grid-layout-plus/es/index.mjs";
|
|
59
|
+
import "../forms/formItem/index.mjs";
|
|
60
|
+
import "../details/header/index.mjs";
|
|
61
|
+
import "../details/main/index.mjs";
|
|
62
|
+
import "../details/footer/index.mjs";
|
|
63
|
+
/* empty css */
|
|
64
|
+
/* empty css */
|
|
65
|
+
/* empty css */
|
|
66
|
+
/* empty css */
|
|
67
|
+
import "../../../../../node_modules/moment/dist/moment.mjs";
|
|
68
|
+
import "../../utils/importantDataChange.mjs";
|
|
69
|
+
/* empty css */
|
|
70
|
+
/* empty css */
|
|
18
71
|
/* empty css */
|
|
19
72
|
/* empty css */
|
|
20
73
|
/* empty css */
|
|
@@ -25,9 +78,7 @@ import _export_sfc from "../../../../../_virtual/_plugin-vue_export-helper.mjs";
|
|
|
25
78
|
/* empty css */
|
|
26
79
|
/* empty css */
|
|
27
80
|
/* empty css */
|
|
28
|
-
/* empty css */
|
|
29
81
|
/* empty css */
|
|
30
|
-
/* empty css */
|
|
31
82
|
import { ElLink } from "../../../../../node_modules/element-plus/es/components/link/index.mjs";
|
|
32
83
|
import { ElIcon } from "../../../../../node_modules/element-plus/es/components/icon/index.mjs";
|
|
33
84
|
import { ElButton } from "../../../../../node_modules/element-plus/es/components/button/index.mjs";
|
|
@@ -7,6 +7,61 @@ import { onUnmounted, onBeforeUnmount, onMounted } from "vue";
|
|
|
7
7
|
/* empty css */
|
|
8
8
|
import "../utils/formulajs/functionCore.mjs";
|
|
9
9
|
import { useEventFlow } from "../utils/eventFlow/eventFlowHandler.mjs";
|
|
10
|
+
/* empty css */
|
|
11
|
+
/* empty css */
|
|
12
|
+
/* empty css */
|
|
13
|
+
/* empty css */
|
|
14
|
+
/* empty css */
|
|
15
|
+
import "vxe-table";
|
|
16
|
+
import "xe-utils";
|
|
17
|
+
/* empty css */
|
|
18
|
+
/* empty css */
|
|
19
|
+
/* empty css */
|
|
20
|
+
/* empty css */
|
|
21
|
+
/* empty css */
|
|
22
|
+
/* empty css */
|
|
23
|
+
/* empty css */
|
|
24
|
+
/* empty css */
|
|
25
|
+
/* empty css */
|
|
26
|
+
/* empty css */
|
|
27
|
+
/* empty css */
|
|
28
|
+
/* empty css */
|
|
29
|
+
/* empty css */
|
|
30
|
+
/* empty css */
|
|
31
|
+
/* empty css */
|
|
32
|
+
/* empty css */
|
|
33
|
+
/* empty css */
|
|
34
|
+
/* empty css */
|
|
35
|
+
import "../../../../node_modules/element-plus/theme-chalk/el-date-picker.css.mjs";
|
|
36
|
+
import "../components/forms/text/index.mjs";
|
|
37
|
+
import "../components/forms/select/index.mjs";
|
|
38
|
+
import "../components/forms/multipleSelection/index.mjs";
|
|
39
|
+
import "../components/forms/date/index.mjs";
|
|
40
|
+
import "../components/forms/number/index.mjs";
|
|
41
|
+
/* empty css */
|
|
42
|
+
/* empty css */
|
|
43
|
+
/* empty css */
|
|
44
|
+
/* empty css */
|
|
45
|
+
/* empty css */
|
|
46
|
+
/* empty css */
|
|
47
|
+
import "../../../../node_modules/element-plus/theme-chalk/el-tab-pane.css.mjs";
|
|
48
|
+
/* empty css */
|
|
49
|
+
import "../utils/eventBus.mjs";
|
|
50
|
+
import "../../../../node_modules/decimal.js/decimal.mjs";
|
|
51
|
+
/* empty css */
|
|
52
|
+
/* empty css */
|
|
53
|
+
import "../../../../node_modules/grid-layout-plus/es/index.mjs";
|
|
54
|
+
import "../components/forms/formItem/index.mjs";
|
|
55
|
+
import "../components/details/header/index.mjs";
|
|
56
|
+
import "../components/details/main/index.mjs";
|
|
57
|
+
import "../components/details/footer/index.mjs";
|
|
58
|
+
/* empty css */
|
|
59
|
+
/* empty css */
|
|
60
|
+
/* empty css */
|
|
61
|
+
/* empty css */
|
|
62
|
+
import "../../../../node_modules/moment/dist/moment.mjs";
|
|
63
|
+
import "../utils/importantDataChange.mjs";
|
|
64
|
+
/* empty css */
|
|
10
65
|
/* empty css */
|
|
11
66
|
/* empty css */
|
|
12
67
|
/* empty css */
|
|
@@ -18,7 +73,6 @@ import { useEventFlow } from "../utils/eventFlow/eventFlowHandler.mjs";
|
|
|
18
73
|
/* empty css */
|
|
19
74
|
/* empty css */
|
|
20
75
|
/* empty css */
|
|
21
|
-
/* empty css */
|
|
22
76
|
/* empty css */
|
|
23
77
|
function usePageEvents(getOptions) {
|
|
24
78
|
if (typeof getOptions !== "function") {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const index = require("./index.
|
|
3
|
+
const index = require("./index.vue2.js");
|
|
4
4
|
const Vue = require("vue");
|
|
5
5
|
function useDialogDialog() {
|
|
6
6
|
const dialogDialogVisible = Vue.ref(false);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const index = require("./index.
|
|
3
|
+
const index = require("./index.vue2.js");
|
|
4
4
|
const Vue = require("vue");
|
|
5
5
|
function useDialogGlobalDialog() {
|
|
6
6
|
const dialogGlobalDialogVisible = Vue.ref(false);
|
|
@@ -15,7 +15,7 @@ const PageFooterSetting = require("./PageFooterSetting.vue.js");
|
|
|
15
15
|
const ComponentPreviewWrapper = require("./components/ComponentPreviewWrapper.vue.js");
|
|
16
16
|
const SubTitle = require("./components/SubTitle.vue.js");
|
|
17
17
|
const H2Wrapper = require("./components/H2Wrapper.vue.js");
|
|
18
|
-
const SubForm =
|
|
18
|
+
const SubForm = ;/* empty css */
|
|
19
19
|
const approvalHistory = require("./components/approvalHistory.vue.js");
|
|
20
20
|
const SubTable = require("./components/SubTable.vue.js");
|
|
21
21
|
const Document = require("./components/Document.vue.js");
|
|
@@ -9,7 +9,7 @@ const widgets = require("./widgets.vue.js");
|
|
|
9
9
|
const pageHeaderBtn = require("./pageHeaderBtn.vue.js");
|
|
10
10
|
const pageFooterBtn = require("./pageFooterBtn.vue.js");
|
|
11
11
|
const subTitleH2 = require("./subTitleH2.vue.js");
|
|
12
|
-
const subForm =
|
|
12
|
+
const subForm = ;/* empty css */
|
|
13
13
|
const subTable = require("./subTable.vue.js");
|
|
14
14
|
const blank = require("./blank.vue.js");
|
|
15
15
|
const approvalHistory = require("./approvalHistory.vue.js");
|
|
@@ -54,8 +54,8 @@ const _pluginVue_exportHelper = require("../../../../../_virtual/_plugin-vue_exp
|
|
|
54
54
|
require("../../../components/TemplateSelector.vue.js");
|
|
55
55
|
require("../../table/default.js");
|
|
56
56
|
;/* empty css */
|
|
57
|
-
;/* empty css
|
|
58
|
-
;/* empty css
|
|
57
|
+
;/* empty css */
|
|
58
|
+
;/* empty css */
|
|
59
59
|
require("../../../store/index.js");
|
|
60
60
|
;/* empty css */
|
|
61
61
|
const index$2 = require("../../../../../node_modules/element-plus/es/components/collapse/index.js");
|