act-plus 1.1.73 → 1.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/act-plus.js +1 -1
- package/act-plus.umd.cjs +25 -25
- package/lib/{dialogAddField-01e88a97.js → dialogAddField-b74708cd.js} +2 -2
- package/lib/{dialogConfigBtn-8dd263f0.js → dialogConfigBtn-e8b91f78.js} +2 -2
- package/lib/{dialogSiteComponentsParams-a23bf357.js → dialogSiteComponentsParams-52f9fd71.js} +1 -1
- package/lib/{index-af897a17.js → index-12a36fbd.js} +730 -721
- package/lib/{index-b5ccb862.js → index-407dad1d.js} +42 -33
- package/lib/{index-401e66f5.js → index-675a8c72.js} +1 -1
- package/lib/{index-4d3f0b19.js → index-75adf68f.js} +1 -1
- package/lib/{index-9651fda7.js → index-7ae0f2e6.js} +1 -1
- package/lib/{index-247b916c.js → index-84468803.js} +1 -1
- package/lib/{index-7a420913.js → index-b095ee67.js} +3 -2
- package/lib/{index-9fa5dd39.js → index-b620f300.js} +1 -1
- package/lib/{index-79f3b449.js → index-e68e500a.js} +2 -2
- package/lib/{index-3fbc771b.js → index-f82d7fb9.js} +1 -1
- package/package.json +1 -1
- package/style.css +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ref as N, watch as O, resolveComponent as u, resolveDirective as T, openBlock as l, createElementBlock as d, withDirectives as j, createBlock as i, mergeProps as D, withCtx as c, createTextVNode as K, toDisplayString as W, unref as f, Fragment as s, renderList as A, renderSlot as w, createCommentVNode as H, nextTick as y } from "vue";
|
|
2
|
-
import { _ as U, u as V } from "./index-
|
|
2
|
+
import { _ as U, u as V } from "./index-12a36fbd.js";
|
|
3
3
|
import "vue-router";
|
|
4
4
|
import "element-plus";
|
|
5
5
|
const $ = { class: "act-table" }, F = {
|
|
@@ -15,69 +15,78 @@ const $ = { class: "act-table" }, F = {
|
|
|
15
15
|
showSerialNumber: { type: Boolean, default: !0 },
|
|
16
16
|
showPagination: { type: Boolean, default: !0 },
|
|
17
17
|
rowKey: { type: String, default: "id" },
|
|
18
|
-
treeProps: {
|
|
18
|
+
treeProps: {
|
|
19
|
+
type: Object,
|
|
20
|
+
default: () => ({ children: "children", hasChildren: "hasChildren" })
|
|
21
|
+
},
|
|
19
22
|
tableConfig: { type: Object, default: () => ({}) }
|
|
20
23
|
},
|
|
21
|
-
emits: [
|
|
24
|
+
emits: [
|
|
25
|
+
"update:tableQuery",
|
|
26
|
+
"update:selection",
|
|
27
|
+
"refresh",
|
|
28
|
+
"onRowClick",
|
|
29
|
+
"changeExpand"
|
|
30
|
+
],
|
|
22
31
|
setup(g, { expose: b, emit: x }) {
|
|
23
|
-
const { t: h } = V(), r = x,
|
|
32
|
+
const { t: h } = V(), r = x, a = g;
|
|
24
33
|
let p = N(null);
|
|
25
|
-
const _ = (t) =>
|
|
34
|
+
const _ = (t) => a.showPagination ? t + 1 + (a.tableQuery.pageIndex - 1) * a.tableQuery.pageSize : t + 1, k = (t) => {
|
|
26
35
|
y(() => {
|
|
27
|
-
|
|
28
|
-
t.includes(a
|
|
36
|
+
a.data.forEach((o) => {
|
|
37
|
+
t.includes(o[a.rowKey]) && p.value.toggleRowSelection(o, !0);
|
|
29
38
|
});
|
|
30
39
|
});
|
|
31
40
|
}, C = (t) => p.value.getSelectionRows();
|
|
32
41
|
O(
|
|
33
|
-
() =>
|
|
34
|
-
(t,
|
|
42
|
+
() => a.selection,
|
|
43
|
+
(t, o) => {
|
|
35
44
|
t && t.length && k(t);
|
|
36
45
|
},
|
|
37
46
|
{ deep: !0, immediate: !0 }
|
|
38
47
|
);
|
|
39
48
|
const S = (t) => {
|
|
40
49
|
r("update:selection", t);
|
|
41
|
-
}, m = (t,
|
|
50
|
+
}, m = (t, o) => {
|
|
42
51
|
t && y(() => {
|
|
43
|
-
|
|
44
|
-
t.includes(n[
|
|
52
|
+
a.data.forEach((n) => {
|
|
53
|
+
t.includes(n[o || a.rowKey]) && p.value.toggleRowSelection(n, !0);
|
|
45
54
|
});
|
|
46
55
|
});
|
|
47
56
|
}, v = (t) => {
|
|
48
|
-
r("update:tableQuery", { ...
|
|
57
|
+
r("update:tableQuery", { ...a.tableQuery, pageSize: t }), r("refresh", []);
|
|
49
58
|
}, z = (t) => {
|
|
50
|
-
r("update:tableQuery", { ...
|
|
51
|
-
}, Q = (t,
|
|
52
|
-
r("onRowClick", t,
|
|
53
|
-
}, R = (t,
|
|
54
|
-
r("changeExpand", t,
|
|
59
|
+
r("update:tableQuery", { ...a.tableQuery, pageIndex: t }), r("refresh", []);
|
|
60
|
+
}, Q = (t, o, n) => {
|
|
61
|
+
r("onRowClick", t, o, n);
|
|
62
|
+
}, R = (t, o) => {
|
|
63
|
+
r("changeExpand", t, o);
|
|
55
64
|
};
|
|
56
|
-
return b({ getSelectionRows: C, updateSelection: m }), (t,
|
|
65
|
+
return b({ getSelectionRows: C, updateSelection: m }), (t, o) => {
|
|
57
66
|
const n = u("el-table-column"), E = u("el-table"), I = u("el-pagination"), P = T("loading");
|
|
58
67
|
return l(), d("div", $, [
|
|
59
68
|
j((l(), i(E, D({
|
|
60
69
|
style: { width: "100%" },
|
|
61
70
|
ref_key: "tableRef",
|
|
62
71
|
ref: p,
|
|
63
|
-
data:
|
|
72
|
+
data: a.data,
|
|
64
73
|
stripe: "",
|
|
65
74
|
border: "",
|
|
66
75
|
"highlight-current-row": "",
|
|
67
|
-
"max-height":
|
|
68
|
-
"row-key":
|
|
76
|
+
"max-height": a.maxHeight,
|
|
77
|
+
"row-key": a.rowKey,
|
|
69
78
|
"default-expand-all": "",
|
|
70
79
|
"tree-props": g.treeProps
|
|
71
|
-
},
|
|
80
|
+
}, a.tableConfig, {
|
|
72
81
|
onSelectionChange: S,
|
|
73
82
|
onRowClick: Q,
|
|
74
83
|
onExpandChange: R
|
|
75
84
|
}), {
|
|
76
85
|
empty: c(() => [
|
|
77
|
-
K(W(
|
|
86
|
+
K(W(a.data.length || a.data.length == 0 ? f(h)("act.noData") : ""), 1)
|
|
78
87
|
]),
|
|
79
88
|
default: c(() => [
|
|
80
|
-
(l(!0), d(s, null, A(
|
|
89
|
+
(l(!0), d(s, null, A(a.headers, (e) => (l(), d(s, {
|
|
81
90
|
key: e.prop
|
|
82
91
|
}, [
|
|
83
92
|
e.isCustomTableHeader ? w(t.$slots, e.prop, { key: 0 }, void 0, !0) : (l(), d(s, { key: 1 }, [
|
|
@@ -127,26 +136,26 @@ const $ = { class: "act-table" }, F = {
|
|
|
127
136
|
]),
|
|
128
137
|
_: 3
|
|
129
138
|
}, 16, ["data", "max-height", "row-key", "tree-props"])), [
|
|
130
|
-
[P,
|
|
139
|
+
[P, a.loading]
|
|
131
140
|
]),
|
|
132
|
-
|
|
141
|
+
a.showPagination ? (l(), i(I, {
|
|
133
142
|
key: 0,
|
|
134
143
|
class: "table-pagination",
|
|
135
|
-
"current-page":
|
|
136
|
-
"onUpdate:currentPage":
|
|
137
|
-
"page-size":
|
|
138
|
-
"onUpdate:pageSize":
|
|
144
|
+
"current-page": a.tableQuery.pageIndex,
|
|
145
|
+
"onUpdate:currentPage": o[0] || (o[0] = (e) => a.tableQuery.pageIndex = e),
|
|
146
|
+
"page-size": a.tableQuery.pageSize,
|
|
147
|
+
"onUpdate:pageSize": o[1] || (o[1] = (e) => a.tableQuery.pageSize = e),
|
|
139
148
|
"page-sizes": [10, 20, 50, 75, 100, 200, 500],
|
|
140
149
|
background: "",
|
|
141
150
|
layout: "total, sizes, prev, pager, next, jumper",
|
|
142
|
-
total:
|
|
151
|
+
total: a.total,
|
|
143
152
|
onSizeChange: v,
|
|
144
153
|
onCurrentChange: z
|
|
145
154
|
}, null, 8, ["current-page", "page-size", "total"])) : H("", !0)
|
|
146
155
|
]);
|
|
147
156
|
};
|
|
148
157
|
}
|
|
149
|
-
}, J = /* @__PURE__ */ U(F, [["__scopeId", "data-v-
|
|
158
|
+
}, J = /* @__PURE__ */ U(F, [["__scopeId", "data-v-f41a54ba"]]);
|
|
150
159
|
export {
|
|
151
160
|
J as default
|
|
152
161
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as yd, shallowRef as qn, inject as xd, computed as Jh, toRaw as wd, onMounted as Sd, watch as le, onBeforeUnmount as vd, h as kd, ref as kl, resolveComponent as Qd, resolveDirective as Pd, openBlock as Ql, createElementBlock as $d, withDirectives as Td, createBlock as Zd, withCtx as Cd, createTextVNode as Rd, toDisplayString as Ad, unref as Pl, createVNode as Md, normalizeStyle as Ed } from "vue";
|
|
2
|
-
import { _ as Xd, u as Ld } from "./index-
|
|
2
|
+
import { _ as Xd, u as Ld } from "./index-12a36fbd.js";
|
|
3
3
|
import "vue-router";
|
|
4
4
|
import "element-plus";
|
|
5
5
|
let Mr = [], tf = [];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ref as U, computed as oe, resolveComponent as w, resolveDirective as ne, openBlock as h, createElementBlock as N, withDirectives as ae, createBlock as C, mergeProps as ie, unref as p, withCtx as D, renderSlot as L, createElementVNode as x, toDisplayString as I, createCommentVNode as z, createVNode as $, createTextVNode as se, Fragment as ce, renderList as re, normalizeClass as ue, nextTick as pe } from "vue";
|
|
2
2
|
import { ElNotification as M } from "element-plus";
|
|
3
|
-
import { _ as de, u as me, z as fe, o as ge, p as _e, q as ye } from "./index-
|
|
3
|
+
import { _ as de, u as me, z as fe, o as ge, p as _e, q as ye } from "./index-12a36fbd.js";
|
|
4
4
|
import "vue-router";
|
|
5
5
|
let S;
|
|
6
6
|
const he = new Uint8Array(16);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { reactive as m, watch as b, resolveComponent as s, openBlock as v, createBlock as g, withCtx as o, createElementVNode as i, createVNode as x, createTextVNode as y, toDisplayString as h, unref as C } from "vue";
|
|
2
|
-
import { _ as k, u as w } from "./index-
|
|
2
|
+
import { _ as k, u as w } from "./index-12a36fbd.js";
|
|
3
3
|
import "vue-router";
|
|
4
4
|
import "element-plus";
|
|
5
5
|
const V = ["innerHTML"], B = { class: "dialog-footer" }, D = {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineAsyncComponent as se, inject as h, ref as q, watch as de, resolveComponent as f, resolveDirective as pe, unref as t, openBlock as n, createElementBlock as V, createVNode as ce, normalizeStyle as ie, withCtx as T, Fragment as k, renderList as L, createBlock as d, mergeProps as C, withKeys as H, withModifiers as K, createCommentVNode as g, resolveDynamicComponent as fe, createElementVNode as me, toDisplayString as S, createTextVNode as M, withDirectives as ye } from "vue";
|
|
2
|
-
import { _ as be, u as Ve, P as Ce, a as _e, b as he } from "./index-
|
|
2
|
+
import { _ as be, u as Ve, P as Ce, a as _e, b as he } from "./index-12a36fbd.js";
|
|
3
3
|
import "vue-router";
|
|
4
4
|
import "element-plus";
|
|
5
5
|
const ge = {
|
|
@@ -290,8 +290,9 @@ const le = { style: { height: "100%", overflow: "hidden" } }, Le = {
|
|
|
290
290
|
//以css文件方式自定义可编辑区域的css样式,css文件需自己创建并引入
|
|
291
291
|
editable_root: o.editableRoot,
|
|
292
292
|
width: o.width,
|
|
293
|
-
height:
|
|
294
|
-
min_height:
|
|
293
|
+
// height: props.height,
|
|
294
|
+
// min_height: props.height,
|
|
295
|
+
max_height: o.height,
|
|
295
296
|
branding: !1,
|
|
296
297
|
// 是否禁用“Powered by TinyMCE”
|
|
297
298
|
promotion: !1,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ref as p, watch as h, resolveComponent as _, openBlock as r, createElementBlock as m, createVNode as v, unref as u, isRef as w, withCtx as f, createElementVNode as g, createBlock as C, createCommentVNode as N, createTextVNode as $, Fragment as B, renderList as E, normalizeClass as L } from "vue";
|
|
2
|
-
import { _ as P } from "./index-
|
|
2
|
+
import { _ as P } from "./index-12a36fbd.js";
|
|
3
3
|
import "vue-router";
|
|
4
4
|
import "element-plus";
|
|
5
5
|
const R = { class: "select-icon-container" }, S = { class: "icon-list" }, j = ["onClick"], z = {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineAsyncComponent as O, inject as K, ref as N, watch as Te, resolveComponent as _, resolveDirective as le, openBlock as u, createBlock as y, withCtx as D, createElementVNode as ae, createVNode as te, createTextVNode as J, toDisplayString as A, unref as r, withDirectives as oe, createElementBlock as k, Fragment as q, renderList as Q, mergeProps as F, createCommentVNode as se, resolveDynamicComponent as De, toRaw as Ke } from "vue";
|
|
2
|
-
import { _ as we, u as Ne, P as Pe, a as Ue, b as ke } from "./index-
|
|
2
|
+
import { _ as we, u as Ne, P as Pe, a as Ue, b as ke } from "./index-12a36fbd.js";
|
|
3
3
|
import { ElNotification as Se } from "element-plus";
|
|
4
4
|
import "vue-router";
|
|
5
5
|
const Le = { class: "no-config-field" }, Re = { class: "dialog-footer" }, $e = {
|
|
@@ -11,7 +11,7 @@ const Le = { class: "no-config-field" }, Re = { class: "dialog-footer" }, $e = {
|
|
|
11
11
|
},
|
|
12
12
|
emits: ["update:visible", "refresh"],
|
|
13
13
|
setup(P, { emit: ie }) {
|
|
14
|
-
const re = O(() => import("./index-e2f2023d.js")), de = O(() => import("./index-
|
|
14
|
+
const re = O(() => import("./index-e2f2023d.js")), de = O(() => import("./index-b620f300.js")), ne = O(() => import("./index-75adf68f.js")), ue = O(() => import("./index-b095ee67.js")), { t: b } = Ne(), M = K("request"), ce = K("loadComponents"), w = K("formatDataType"), x = K("globalProps"), fe = K("stringToBoolean"), h = K("getFieldUiProps"), pe = K("disposeRequestData"), X = ie, f = P, S = N(!1), L = N(!1), E = N(null), R = N([]), t = N({}), j = N({}), me = (l) => l.formColumnCol == null ? 24 : l.formColumnCol ? l.formColumnCol : 24 / l.formRow, ye = (l) => ["input", "textarea"].includes(l.fieldType) ? "blur" : (["select", "multipleSelect", "datetimerange", "treeSelect", "provinceCascade"].includes(l.fieldType), "change"), be = async ({ node: l, resolve: p }, a) => {
|
|
15
15
|
const i = h(a), { label: m, value: n, children: g, isLeaf: o } = { ...ke, ...i.treeProps || {} };
|
|
16
16
|
if (l[o])
|
|
17
17
|
return p([]);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ref as J, inject as _, computed as K, watch as Q, resolveComponent as g, resolveDirective as U, openBlock as t, createElementBlock as m, Fragment as C, renderList as I, createBlock as s, resolveDynamicComponent as F, unref as d, withCtx as r, withDirectives as k, createCommentVNode as p, createTextVNode as h, toDisplayString as B, createVNode as N } from "vue";
|
|
2
|
-
import { _ as W, u as X, c as Y } from "./index-
|
|
2
|
+
import { _ as W, u as X, c as Y } from "./index-12a36fbd.js";
|
|
3
3
|
import "vue-router";
|
|
4
4
|
import "element-plus";
|
|
5
5
|
const Z = { class: "header-operate-container" }, ee = {
|
package/package.json
CHANGED
package/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.form-card .el-card__header{font-size:16px;font-weight:700}.rotate180{transform:rotate(180deg)}.cp{cursor:pointer}.cp:hover{opacity:.8}.ml12{margin-left:12px}.mt12{margin-top:12px}.mt16{margin-top:16px}.mt24{margin-top:24px}.ml6{margin-left:6px!important}.ml4{margin-left:4px!important}.mr6{margin-right:6px}.mr2{margin-right:2px}.mr4{margin-right:4px}.el-table{font-size:14px}.el-select,.el-cascader,.el-form--inline .el-form-item{display:block;width:100%}.el-card{height:100%;--el-card-padding: 12px}.el-card__body{height:100%;box-sizing:border-box}.el-date-editor{--el-date-editor-width: 100%}.month-range .el-date-range-picker{width:320px}.month-range .el-date-range-picker .el-picker-panel__body{min-width:320px}.month-range .is-left{width:100%}.month-range .el-date-range-picker__header,.month-range .is-right{display:none}.table-link{cursor:pointer;color:#409eff;text-decoration:underline}.a-loading[data-v-048c6c03]{display:flex;align-items:center;justify-content:center;width:100%;height:50px;font-size:32px}.a-loading .dot[data-v-048c6c03]{animation:antRotate-048c6c03 1.2s infinite linear;transform:rotate(45deg);position:relative;display:inline-block;width:28px;height:28px;box-sizing:border-box}.a-loading .dot i[data-v-048c6c03]{width:12px;height:12px;position:absolute;display:block;background-color:#1890ff;border-radius:100%;transform:scale(.75);transform-origin:50% 50%;opacity:.3;animation:antSpinMove-048c6c03 1s infinite linear alternate}.a-loading .dot i[data-v-048c6c03]:nth-child(1){top:0;left:0}.a-loading .dot i[data-v-048c6c03]:nth-child(2){top:0;right:0;-webkit-animation-delay:.4s;animation-delay:.4s}.a-loading .dot i[data-v-048c6c03]:nth-child(3){right:0;bottom:0;-webkit-animation-delay:.8s;animation-delay:.8s}.a-loading .dot i[data-v-048c6c03]:nth-child(4){bottom:0;left:0;-webkit-animation-delay:1.2s;animation-delay:1.2s}@keyframes antRotate-048c6c03{to{-webkit-transform:rotate(405deg);transform:rotate(405deg)}}@-webkit-keyframes antRotate-048c6c03{to{-webkit-transform:rotate(405deg);transform:rotate(405deg)}}@keyframes antSpinMove-048c6c03{to{opacity:1}}@-webkit-keyframes antSpinMove-048c6c03{to{opacity:1}}[data-v-
|
|
1
|
+
.form-card .el-card__header{font-size:16px;font-weight:700}.rotate180{transform:rotate(180deg)}.cp{cursor:pointer}.cp:hover{opacity:.8}.ml12{margin-left:12px}.mt12{margin-top:12px}.mt16{margin-top:16px}.mt24{margin-top:24px}.ml6{margin-left:6px!important}.ml4{margin-left:4px!important}.mr6{margin-right:6px}.mr2{margin-right:2px}.mr4{margin-right:4px}.el-table{font-size:14px}.el-select,.el-cascader,.el-form--inline .el-form-item{display:block;width:100%}.el-card{height:100%;--el-card-padding: 12px}.el-card__body{height:100%;box-sizing:border-box}.el-date-editor{--el-date-editor-width: 100%}.month-range .el-date-range-picker{width:320px}.month-range .el-date-range-picker .el-picker-panel__body{min-width:320px}.month-range .is-left{width:100%}.month-range .el-date-range-picker__header,.month-range .is-right{display:none}.table-link{cursor:pointer;color:#409eff;text-decoration:underline}.a-loading[data-v-048c6c03]{display:flex;align-items:center;justify-content:center;width:100%;height:50px;font-size:32px}.a-loading .dot[data-v-048c6c03]{animation:antRotate-048c6c03 1.2s infinite linear;transform:rotate(45deg);position:relative;display:inline-block;width:28px;height:28px;box-sizing:border-box}.a-loading .dot i[data-v-048c6c03]{width:12px;height:12px;position:absolute;display:block;background-color:#1890ff;border-radius:100%;transform:scale(.75);transform-origin:50% 50%;opacity:.3;animation:antSpinMove-048c6c03 1s infinite linear alternate}.a-loading .dot i[data-v-048c6c03]:nth-child(1){top:0;left:0}.a-loading .dot i[data-v-048c6c03]:nth-child(2){top:0;right:0;-webkit-animation-delay:.4s;animation-delay:.4s}.a-loading .dot i[data-v-048c6c03]:nth-child(3){right:0;bottom:0;-webkit-animation-delay:.8s;animation-delay:.8s}.a-loading .dot i[data-v-048c6c03]:nth-child(4){bottom:0;left:0;-webkit-animation-delay:1.2s;animation-delay:1.2s}@keyframes antRotate-048c6c03{to{-webkit-transform:rotate(405deg);transform:rotate(405deg)}}@-webkit-keyframes antRotate-048c6c03{to{-webkit-transform:rotate(405deg);transform:rotate(405deg)}}@keyframes antSpinMove-048c6c03{to{opacity:1}}@-webkit-keyframes antSpinMove-048c6c03{to{opacity:1}}[data-v-6019a185] .el-empty__image{width:100%}.file-image[data-v-6019a185]{display:block;width:32px;height:32px;margin:0 auto;border-radius:4px;line-height:32px!important}.no-image[data-v-6019a185]{width:100%;height:100%;font-size:12px;background-color:#f5f7fa}.act-module[data-v-6019a185]{padding:0;margin:0;border:none}.table-opreate-dropdown[data-v-6019a185]{margin:4px 0 0 8px}.table-btn-more[data-v-6019a185]{width:16px;height:16px}.table-btn-more[data-v-6019a185]:hover{cursor:pointer;opacity:.8}.add-icon-btn[data-v-fa895b16]{cursor:pointer;width:24px;height:24px;margin-left:6px}.table-post-params[data-v-fa895b16]{position:relative;margin-bottom:12px}.table-post-params .submit-operate[data-v-fa895b16]{position:absolute;top:-20px;right:-10px;display:flex;align-items:center}.table-post-params .submit-operate .match-opreate[data-v-fa895b16]{cursor:pointer;width:12px;height:12px}.card-header[data-v-8c801481]{display:flex;align-items:center}.card-header -operate[data-v-8c801481]{margin-left:auto}.form-list[data-v-8c801481]{margin-bottom:24px;border-bottom:1px solid var(--el-color-primary)}.form-list[data-v-8c801481]:last-child{border:none}.config-list-operate[data-v-8c801481]{display:flex;align-items:center;justify-content:flex-end}.card-header[data-v-75e750d2]{display:flex;align-items:center}.card-header-operate[data-v-75e750d2]{margin-left:auto}.form-list[data-v-75e750d2]{margin-bottom:24px;border-bottom:1px solid var(--el-color-primary)}.form-list[data-v-75e750d2]:last-child{border:none}.config-list-operate[data-v-75e750d2]{display:flex;align-items:center;justify-content:flex-end}[data-v-75e750d2] .el-badge__content.is-fixed{transform:translateY(-50%) translate(100%) scale(.7)}.submit-operate[data-v-8fa48448]{display:flex;align-items:center;height:32px;padding-left:12px}.submit-operate .match-opreate[data-v-8fa48448]{cursor:pointer;width:20px;height:20px}.page-container[data-v-8dfa8a8a]{position:relative}.page-container .header-operate[data-v-8dfa8a8a]{position:sticky;top:0;z-index:999}.page-container .submit-box[data-v-8dfa8a8a]{display:flex;align-items:center;justify-content:space-between}.page-container .submit-box-r[data-v-8dfa8a8a]{display:flex;align-items:center}.page-container .submit-box-r .menu-select[data-v-8dfa8a8a]{width:360px;margin:0 24px}.search-module-container[data-v-c49a11b4] .el-form-item{margin-bottom:8px}.search-module-container[data-v-c49a11b4] .el-select__selection{flex-wrap:nowrap;width:200px}.search-module-container .form-content[data-v-c49a11b4]{display:grid;grid-template-columns:repeat(var(--table-query-row),1fr);gap:6px;padding:6px 6px 0}.search-module-container .form-content .search-form-btn[data-v-c49a11b4]{justify-self:end;align-self:start;grid-column-start:var(--table-query-row);grid-column-end:var(--table-query-row)}.search-module-container .expand[data-v-c49a11b4]{display:flex;margin:0 auto;color:#a4a2a2}.header-operate-container[data-v-f0dda1b5]{display:flex;align-items:center;justify-content:flex-end;flex-wrap:wrap}.header-operate-container .el-btn[data-v-f0dda1b5]{margin:2px}.header-operate-container .header-opreate-dropdown[data-v-f0dda1b5]{margin:4px 0 0 8px}.header-operate-container .header-btn-more[data-v-f0dda1b5]{width:16px;height:16px}.header-operate-container .header-btn-more[data-v-f0dda1b5]:hover{cursor:pointer;opacity:.8}.act-table .table-pagination[data-v-f41a54ba]{margin-top:6px;padding:0 4px;justify-content:flex-end}.no-config[data-v-c6e7e23b]{line-height:32px;font-weight:700}.no-config-field[data-v-c6e7e23b]{color:red}.card-header[data-v-be1c5be6]{display:flex;align-items:center}.card-header-operate[data-v-be1c5be6]{margin-left:auto}.add-icon-btn[data-v-325d2233]{cursor:pointer;width:24px;height:24px;margin-left:6px}.condition-box[data-v-325d2233]{display:flex;justify-content:center}.condition-box[data-v-325d2233] .el-form-item__content{flex:0;min-width:300px}.submit-operate[data-v-325d2233]{display:flex;align-items:center;height:32px;padding-left:12px}.submit-operate .match-opreate[data-v-325d2233]{cursor:pointer;width:20px;height:20px}.add-icon-btn[data-v-6b2ebaa8]{cursor:pointer;width:24px;height:24px;margin-left:6px}.submit-operate[data-v-6b2ebaa8]{display:flex;align-items:center;height:32px;padding-left:12px}.submit-operate .match-opreate[data-v-6b2ebaa8]{cursor:pointer;width:20px;height:20px}.select-icon-popover .icon-list{display:grid;grid-template-columns:repeat(8,1fr)}.select-icon-popover .icon-list .icon-item{display:flex;align-items:center;justify-content:center;margin:4px 0;border:1px solid transparent}.select-icon-popover .icon-list .icon-item .icon-svg{cursor:pointer}.select-icon-popover .icon-list .icon-item-checked{border:1px solid #000}.select-icon-container .icon-value[data-v-308d02d4]{display:flex;align-items:center}.select-icon-container .icon-value .icon-btn[data-v-308d02d4]{margin-left:12px}.upload-container[data-v-f839bee6]{width:100%}.upload-container[data-v-f839bee6] .el-upload-list--picture-card{display:flex;flex:1}.upload-container[data-v-f839bee6] .el-upload.is-drag{width:100%;height:100%}.upload-container .tip-text[data-v-f839bee6]{margin:0;padding:0;font-size:12px;color:#999}.upload-container .file-list[data-v-f839bee6]{display:flex;align-items:center;justify-content:space-between;margin:6px 0;padding:6px 12px;font-size:14px;border-radius:4px;border:1px solid #dcdfe6}.upload-container .file-list[data-v-f839bee6]:hover{cursor:pointer;opacity:.8}.upload-container .file-list:hover .el-file-name[data-v-f839bee6]{text-decoration:underline}.upload-container .file-list-l[data-v-f839bee6]{display:flex;align-items:center;flex:1;width:500px}.upload-container .file-list-image[data-v-f839bee6]{flex-shrink:0;width:40px;height:40px;border-radius:4px}.upload-container .file-list-icon[data-v-f839bee6]{flex-shrink:0;width:40px;height:40px}.upload-container .file-list .el-file-name[data-v-f839bee6]{flex:1;padding:0 12px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.upload-container .file-list .el-file-operate[data-v-f839bee6]{display:flex;justify-content:flex-end;flex-shrink:0;min-width:82px;margin-left:auto}.upload-container .file-list .el-file-operate>i[data-v-f839bee6]{cursor:pointer;margin-left:12px}.upload-container .file-list .el-file-operate>i[data-v-f839bee6]:hover{opacity:.8}.tox-tinymce-aux{z-index:99999!important}.tinymce.ui.FloatPanel{z-index:99}.mce-content-body[data-mce-placeholder]:not(.mce-visualblocks):before{color:#a8abb2}.act-code-mirror[data-v-451d513f]{width:100%}.act-code-mirror .format-code-btn[data-v-451d513f]{margin-bottom:4px}
|