@web-utils/form-ui 1.0.0-beta55 → 1.0.0-beta56
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/api/index.d.ts +6 -0
- package/chunks/{Dg4R65aG2.mjs → BZTAuJxn2.mjs} +1 -1
- package/constants/index.d.ts +18 -0
- package/editable-tree/index.d.ts +27 -0
- package/form-checkbox-group/index.d.ts +3 -0
- package/form-date-picker/index.d.ts +6 -0
- package/form-holder/style.css +1 -1
- package/form-item-config-provider/index.d.ts +18 -0
- package/form-item-x/style.css +1 -1
- package/helper/dictionary.d.ts +14 -0
- package/helper/form-item.d.ts +7 -0
- package/helper/input.d.ts +3 -0
- package/helper/sub-table-plus.d.ts +60 -0
- package/index.css +1 -1
- package/index.mjs +1 -1
- package/package.json +1 -1
- package/sub-table/index.d.ts +3 -0
- package/web-types.json +1 -1
- package/year-calendar/index.mjs +1 -1
- package/year-calendar/style.css +1 -1
package/api/index.d.ts
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
export interface DictItem {
|
|
2
2
|
id: string;
|
|
3
3
|
dictId: string;
|
|
4
|
+
/**
|
|
5
|
+
* 字典 label
|
|
6
|
+
*/
|
|
4
7
|
label: string;
|
|
5
8
|
dictType: string;
|
|
6
9
|
description: string;
|
|
@@ -11,6 +14,9 @@ export interface DictItem {
|
|
|
11
14
|
updateTime: string;
|
|
12
15
|
remarks: null;
|
|
13
16
|
delFlag: string;
|
|
17
|
+
/**
|
|
18
|
+
* 字典值
|
|
19
|
+
*/
|
|
14
20
|
value: string;
|
|
15
21
|
}
|
|
16
22
|
export interface ConfigOptions {
|
|
@@ -307,7 +307,7 @@ function v(e, n, a, o, p, m) {
|
|
|
307
307
|
onMousedown: (t) => m.mouseDown(e)
|
|
308
308
|
}, d(e.value), 43, _)]))), 128))])], 32)]);
|
|
309
309
|
}
|
|
310
|
-
var y = /* @__PURE__ */ e(m, [["render", v], ["__scopeId", "data-v-
|
|
310
|
+
var y = /* @__PURE__ */ e(m, [["render", v], ["__scopeId", "data-v-c5d49ea6"]]), b = {
|
|
311
311
|
name: "YearCalendar",
|
|
312
312
|
components: { MonthCalendar: y },
|
|
313
313
|
props: {
|
package/constants/index.d.ts
CHANGED
|
@@ -1,22 +1,40 @@
|
|
|
1
1
|
import { InjectionKey, ComputedRef } from 'vue';
|
|
2
2
|
export declare const formHolderContextKey: InjectionKey<{
|
|
3
|
+
/** 表单实例的响应式引用 */
|
|
3
4
|
tableForm: boolean;
|
|
5
|
+
/** 是否禁用整个表单的响应式引用 */
|
|
4
6
|
disabled: boolean;
|
|
7
|
+
/** 启用的字段列表的响应式引用 */
|
|
5
8
|
enabledFields: string[];
|
|
9
|
+
/** 必填字段列表的响应式引用 */
|
|
6
10
|
requiredFields: string[];
|
|
11
|
+
/** 启用字段的映射表的响应式引用,用于快速查找字段状态 */
|
|
7
12
|
enabledFieldsMap: Record<string, boolean | undefined>;
|
|
13
|
+
/** 禁用字段的映射表的响应式引用,用于快速查找字段状态 */
|
|
8
14
|
disabledFieldsMap: Record<string, boolean | undefined>;
|
|
15
|
+
/** 必填字段的映射表的响应式引用,用于快速查找字段状态 */
|
|
9
16
|
requiredFieldsMap: Record<string, boolean | undefined>;
|
|
17
|
+
/** 禁用字段列表的响应式引用 */
|
|
10
18
|
disabledFields: string[];
|
|
19
|
+
/** 滚动到第一个必填字段的方法 */
|
|
11
20
|
scrollIntoRequiredField: () => Promise<void> | any;
|
|
21
|
+
/** 表单的模板引用,用于直接访问DOM元素或组件实例 */
|
|
12
22
|
formRef: unknown;
|
|
23
|
+
/** 验证整个表单的方法,返回Promise以便支持异步验证 */
|
|
13
24
|
validate: () => Promise<void> | any;
|
|
25
|
+
/** 验证指定字段的方法 */
|
|
14
26
|
validateField: () => any;
|
|
27
|
+
/** 重置所有表单字段到初始值的方法 */
|
|
15
28
|
resetFields: () => any;
|
|
29
|
+
/** 滚动到指定字段的方法 */
|
|
16
30
|
scrollToField: () => any;
|
|
31
|
+
/** 清除所有验证错误信息的方法 */
|
|
17
32
|
clearValidate: () => any;
|
|
33
|
+
/** 获取指定字段实例的方法 */
|
|
18
34
|
getField: () => any;
|
|
35
|
+
/** 设置表单初始值的方法 */
|
|
19
36
|
setInitialValues: () => any;
|
|
37
|
+
/** 获取所有字段实例的方法 */
|
|
20
38
|
getFields: () => any;
|
|
21
39
|
}>;
|
|
22
40
|
export declare const formItemGroupContextKey: InjectionKey<{
|
package/editable-tree/index.d.ts
CHANGED
|
@@ -140,14 +140,41 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
140
140
|
registerNode(node: any): void;
|
|
141
141
|
reloadTree(): Promise<void>;
|
|
142
142
|
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
143
|
+
/**
|
|
144
|
+
* 移除新增节点事件
|
|
145
|
+
*/
|
|
143
146
|
'remove-new-node': null;
|
|
147
|
+
/**
|
|
148
|
+
* 节点加载完成事件
|
|
149
|
+
*/
|
|
144
150
|
'node-loaded': null;
|
|
151
|
+
/**
|
|
152
|
+
* 根节点加载完成事件
|
|
153
|
+
*/
|
|
145
154
|
'root-node-loaded': null;
|
|
155
|
+
/**
|
|
156
|
+
* 节点删除事件
|
|
157
|
+
*/
|
|
146
158
|
'node-deleted': null;
|
|
159
|
+
/**
|
|
160
|
+
* 节点更新事件
|
|
161
|
+
*/
|
|
147
162
|
'node-updated': null;
|
|
163
|
+
/**
|
|
164
|
+
* 节点添加事件
|
|
165
|
+
*/
|
|
148
166
|
'node-added': null;
|
|
167
|
+
/**
|
|
168
|
+
* 节点点击事件
|
|
169
|
+
*/
|
|
149
170
|
'on-node-click': null;
|
|
171
|
+
/**
|
|
172
|
+
* 添加根节点事件
|
|
173
|
+
*/
|
|
150
174
|
'add-root-node': null;
|
|
175
|
+
/**
|
|
176
|
+
* 创建新节点事件
|
|
177
|
+
*/
|
|
151
178
|
'create-new-node': null;
|
|
152
179
|
}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
153
180
|
label: {
|
|
@@ -162,6 +162,9 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
162
162
|
}>, () => globalThis.VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
163
163
|
[key: string]: any;
|
|
164
164
|
}>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
165
|
+
/**
|
|
166
|
+
* 更新其他
|
|
167
|
+
*/
|
|
165
168
|
'update:other': null;
|
|
166
169
|
"update:modelValue": null;
|
|
167
170
|
}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
@@ -211,7 +211,13 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
211
211
|
}>, () => globalThis.VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
212
212
|
[key: string]: any;
|
|
213
213
|
}>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
214
|
+
/**
|
|
215
|
+
* 更新开始时间, split 为 true 时有效
|
|
216
|
+
*/
|
|
214
217
|
'update:startDate': null;
|
|
218
|
+
/**
|
|
219
|
+
* 更新结束时间, split 为 true 时有效
|
|
220
|
+
*/
|
|
215
221
|
'update:endDate': null;
|
|
216
222
|
"update:modelValue": null;
|
|
217
223
|
}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
package/form-holder/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@keyframes breathe{0%{box-shadow:0 0 #ff7a7a}to{box-shadow:0 0 10px 1px #ff7a7a}}.breathe-animation{border-radius:4px;animation-name:breathe;animation-duration:.3s;animation-timing-function:ease-in-out;animation-iteration-count:6;animation-direction:alternate;animation-delay:.1s}.red-form .red-form-footer{margin-top:14px}.red-form .hide-error-message .el-form-item__error{display:none}@media print{.red-form .el-input__suffix,.red-form .el-input__prefix,.red-form .el-input__icon.el-range__icon.el-icon-date,.red-form .red-form-footer,.red-form .el-input__count{display:none}.red-form .el-input__inner,.red-form .el-textarea__inner,.red-form .x-input-tag,.red-form .el-input.is-disabled .el-input__inner,.red-form .el-input.is-readonly .el-input__inner{background-color:#0000;border:none;padding:0!important}.red-form .el-form-item{margin-bottom:0}.red-form .el-form-item .el-form-item__content,.red-form .el-form-item .el-form-item__label,.red-form .el-input__inner{height:auto;min-height:0;line-height:1.5}}
|
|
1
|
+
@keyframes breathe{0%{box-shadow:0 0 #ff7a7a}to{box-shadow:0 0 10px 1px #ff7a7a}}.breathe-animation{border-radius:4px;animation-name:breathe;animation-duration:.3s;animation-timing-function:ease-in-out;animation-iteration-count:6;animation-direction:alternate;animation-delay:.1s}.red-form .red-form-footer{margin-top:14px}.red-form .hide-error-message .el-form-item__error{display:none}@media print{.red-form .el-input__suffix,.red-form .el-input__prefix,.red-form .el-input__icon.el-range__icon.el-icon-date,.red-form .red-form-footer,.red-form .el-icon.el-select__caret.el-select__icon,.red-form .el-input__count{display:none}.red-form .el-input__inner,.red-form .el-input__wrapper,.red-form .el-textarea__inner,.red-form .x-input-tag,.red-form .el-input.is-disabled .el-input__wrapper,.red-form .el-select__wrapper.is-disabled,.red-form .el-input.is-disabled .el-input__inner,.red-form .el-input.is-readonly .el-input__inner{box-shadow:none;background-color:#0000;border:none;padding:0!important}.red-form .el-input.is-disabled .el-input__inner,.red-form .el-select__wrapper.is-disabled .el-select__selected-item,.red-form .el-radio__input.is-disabled+span.el-radio__label{color:#000;-webkit-text-fill-color:#000}.red-form .el-form-item{margin-bottom:0}.red-form .el-form-item .el-form-item__content,.red-form .el-form-item .el-form-item__label,.red-form .el-input__inner{height:auto;min-height:0;line-height:1.5}}
|
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
|
|
2
|
+
/**
|
|
3
|
+
* 表单项是否为响应式
|
|
4
|
+
*/
|
|
2
5
|
reactive: BooleanConstructor;
|
|
6
|
+
/**
|
|
7
|
+
* 表单项是否占满一行
|
|
8
|
+
*/
|
|
3
9
|
block: BooleanConstructor;
|
|
10
|
+
/**
|
|
11
|
+
* 表单项是使用 ElCol 包裹
|
|
12
|
+
*/
|
|
4
13
|
wrapCol: {
|
|
5
14
|
type: BooleanConstructor;
|
|
6
15
|
default: boolean;
|
|
@@ -8,8 +17,17 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
8
17
|
}>, () => globalThis.VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
9
18
|
[key: string]: any;
|
|
10
19
|
}>[], {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
20
|
+
/**
|
|
21
|
+
* 表单项是否为响应式
|
|
22
|
+
*/
|
|
11
23
|
reactive: BooleanConstructor;
|
|
24
|
+
/**
|
|
25
|
+
* 表单项是否占满一行
|
|
26
|
+
*/
|
|
12
27
|
block: BooleanConstructor;
|
|
28
|
+
/**
|
|
29
|
+
* 表单项是使用 ElCol 包裹
|
|
30
|
+
*/
|
|
13
31
|
wrapCol: {
|
|
14
32
|
type: BooleanConstructor;
|
|
15
33
|
default: boolean;
|
package/form-item-x/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.form-item{--el-disabled-text-color:#606266}.form-item .el-checkbox,.form-item .el-radio__input.is-disabled .el-radio__inner:after{--el-checkbox-disabled-checked-icon-color:#606266;--el-text-color-placeholder:#606266}.form-item.with-tips .el-form-item__content{flex-wrap:nowrap}.form-item.required.el-form-item.is-required>.el-form-item__label:before,.form-item.required.el-form-item.is-required>.el-form-item__label-wrap>.el-form-item__label:before{display:block!important}.form-item-input-info{color:gray;cursor:help;margin-left:4px;font-size:16px}.form-item.el-form-item.is-required:not(.is-no-asterisk) .el-form-item__label:before{color:#f56c6c;content:"*";margin-right:4px;display:inline}.form-item.el-form-item .el-form-item__content{min-height:29px}.form-item.el-form-item.el-form-item--mini .el-form-item__content{line-height:27px}.form-item.el-form-item.form-item-hide-label{margin-left:6px}.form-item.el-form-item.form-item-hide-label .el-form-item__label{display:none}.form-item-input-wrapper{flex-direction:row;align-items:center;width:100%;display:flex}.form-item-input-wrapper>form{width:100%}.form-item-input-wrapper .el-input{flex:auto}.form-item-input-wrapper .form-item-input-info{color:gray;cursor:help;margin-left:4px;font-size:16px}@media print{.form-item-input-info{display:none}}
|
|
1
|
+
.form-item{--el-disabled-text-color:#606266;--el-text-color-placeholder:var(--el-disabled-text-color)}.form-item .el-checkbox,.form-item .el-radio__input.is-disabled .el-radio__inner:after{--el-checkbox-disabled-checked-icon-color:#606266;--el-text-color-placeholder:#606266}.form-item.with-tips .el-form-item__content{flex-wrap:nowrap}.form-item.required.el-form-item.is-required>.el-form-item__label:before,.form-item.required.el-form-item.is-required>.el-form-item__label-wrap>.el-form-item__label:before{display:block!important}.form-item-input-info{color:gray;cursor:help;margin-left:4px;font-size:16px}.form-item.el-form-item.is-required:not(.is-no-asterisk) .el-form-item__label:before{color:#f56c6c;content:"*";margin-right:4px;display:inline}.form-item.el-form-item .el-form-item__content{min-height:29px}.form-item.el-form-item.el-form-item--mini .el-form-item__content{line-height:27px}.form-item.el-form-item.form-item-hide-label{margin-left:6px}.form-item.el-form-item.form-item-hide-label .el-form-item__label{display:none}.form-item-input-wrapper{flex-direction:row;align-items:center;width:100%;display:flex}.form-item-input-wrapper>form{width:100%}.form-item-input-wrapper .el-input{flex:auto}.form-item-input-wrapper .form-item-input-info{color:gray;cursor:help;margin-left:4px;font-size:16px}@media print{.form-item-input-info{display:none}}
|
package/helper/dictionary.d.ts
CHANGED
|
@@ -6,8 +6,22 @@ export type DictOption = {
|
|
|
6
6
|
idAsValue?: boolean;
|
|
7
7
|
labelAsValue?: boolean;
|
|
8
8
|
};
|
|
9
|
+
/**
|
|
10
|
+
* 获取字典
|
|
11
|
+
* @param type 字典类型
|
|
12
|
+
* @param cache 是否使用缓存
|
|
13
|
+
* @param api
|
|
14
|
+
* @param idAsValue
|
|
15
|
+
* @param labelAsValue
|
|
16
|
+
*/
|
|
9
17
|
export declare const getDictData: (type: string, cache?: boolean, { options, treeDict, idAsValue, labelAsValue }?: DictOption) => DictItem[] | readonly DictItem[] | Promise<DictItem[] | readonly DictItem[] | null>;
|
|
18
|
+
/**
|
|
19
|
+
* 获取字典项
|
|
20
|
+
*/
|
|
10
21
|
export declare const getDictItem: (type: string, value: any, cache?: boolean, { treeDict, idAsValue, labelAsValue }?: DictOption) => Promise<any>;
|
|
22
|
+
/**
|
|
23
|
+
* 获取字典项
|
|
24
|
+
*/
|
|
11
25
|
export declare const getDictLabel: (type: string, value: any, cache?: boolean, { treeDict, idAsValue, labelAsValue }?: DictOption) => Promise<any>;
|
|
12
26
|
export declare const confirmOptions: readonly {
|
|
13
27
|
label: string;
|
package/helper/form-item.d.ts
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
import { Attrs } from 'vue';
|
|
2
2
|
export declare const useRequired: (props: Record<string, any>) => globalThis.ComputedRef<boolean>;
|
|
3
|
+
/**
|
|
4
|
+
*
|
|
5
|
+
* @param props
|
|
6
|
+
* @param param1
|
|
7
|
+
* @param param1.rules
|
|
8
|
+
* @returns {ComputedRef<{}>}
|
|
9
|
+
*/
|
|
3
10
|
export declare const useFormItemProps: (props: Record<string, any>, { rules, attrs, block, class: clas, messagePrefix, message }?: {
|
|
4
11
|
rules?: object[];
|
|
5
12
|
attrs?: Attrs;
|
package/helper/input.d.ts
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { Attrs } from 'vue';
|
|
2
2
|
export declare const useDisabled: (props: Record<string, any>) => globalThis.ComputedRef<any>;
|
|
3
3
|
export declare const inputEmits: {
|
|
4
|
+
/**
|
|
5
|
+
* 输入事件
|
|
6
|
+
*/
|
|
4
7
|
"update:modelValue": null;
|
|
5
8
|
};
|
|
6
9
|
export declare const updateModelValue: (emit: (event: string, ...args: any[]) => void, value: any) => void;
|
|
@@ -6,24 +6,76 @@ export type Option = {
|
|
|
6
6
|
label?: string;
|
|
7
7
|
[key: string]: any;
|
|
8
8
|
};
|
|
9
|
+
/**
|
|
10
|
+
* 表格列配置类型定义
|
|
11
|
+
* 用于定义动态表格或表单的列属性和行为
|
|
12
|
+
*/
|
|
9
13
|
export type ColumnType = {
|
|
14
|
+
/** 列显示标签文本,如不设置则默认为 prop 的转换 */
|
|
10
15
|
label?: string;
|
|
16
|
+
/** 字段属性名,对应数据对象中的键名 */
|
|
11
17
|
prop: string;
|
|
18
|
+
/** 字段类型 */
|
|
12
19
|
type?: InputType;
|
|
20
|
+
/** 是否为必填字段 */
|
|
13
21
|
required?: boolean;
|
|
22
|
+
/** 是否可编辑 */
|
|
14
23
|
editable?: boolean;
|
|
24
|
+
/** 是否设置默认值,为 true 时会根据 type 自动设置初始值 */
|
|
15
25
|
setVal?: boolean;
|
|
26
|
+
/** 字段对应的UI组件属性配置对象 */
|
|
16
27
|
attrs?: object;
|
|
28
|
+
/**
|
|
29
|
+
* 动态获取字段属性的函数
|
|
30
|
+
* @param row 当前行数据对象
|
|
31
|
+
* @returns 动态属性配置对象
|
|
32
|
+
*/
|
|
17
33
|
getAttrs?: (row: object) => object;
|
|
34
|
+
/**
|
|
35
|
+
* 判断字段是否禁用的函数
|
|
36
|
+
* @param row 当前行数据对象
|
|
37
|
+
* @returns 是否禁用
|
|
38
|
+
*/
|
|
18
39
|
isDisabled?: (row: object) => boolean;
|
|
40
|
+
/**
|
|
41
|
+
* 设置字段值的自定义函数
|
|
42
|
+
* @param row 当前行数据对象
|
|
43
|
+
* @param val 当前字段值
|
|
44
|
+
* @param item 当前列配置对象
|
|
45
|
+
* @param rows 表格所有行数据
|
|
46
|
+
*/
|
|
19
47
|
setValue?: (row: object, val: any, item: ColumnType, rows: object[]) => void;
|
|
48
|
+
/**
|
|
49
|
+
* 字段失去焦点时的回调函数
|
|
50
|
+
* @param row 当前行数据对象
|
|
51
|
+
* @param item 当前列配置对象
|
|
52
|
+
* @param rows 表格所有行数据
|
|
53
|
+
*/
|
|
20
54
|
onBlur?: (row: object, item: ColumnType, rows: object[]) => void;
|
|
55
|
+
/**
|
|
56
|
+
* 动态获取字段类型的函数
|
|
57
|
+
* @param row 当前行数据对象
|
|
58
|
+
* @param item 当前列配置对象
|
|
59
|
+
* @returns 字段类型字符串
|
|
60
|
+
*/
|
|
21
61
|
getType?: (row: object, item: ColumnType) => string;
|
|
62
|
+
/**
|
|
63
|
+
* 获取显示值
|
|
64
|
+
* @param row 当前行数据对象
|
|
65
|
+
* @param column 列对象
|
|
66
|
+
* @param item 当前列配置对象
|
|
67
|
+
* @returns 显示值
|
|
68
|
+
*/
|
|
22
69
|
getVal?: (row: object, column: TableColumnCtx<object>, item: ColumnType) => any;
|
|
70
|
+
/** 是否单选,type 为 user, department 时有效 */
|
|
23
71
|
single?: boolean;
|
|
72
|
+
/** id 属性名,type 为 user 时有效 */
|
|
24
73
|
idProp?: string;
|
|
74
|
+
/** 部门类型,type 为 department 时有效 */
|
|
25
75
|
ouType?: string;
|
|
76
|
+
/** 开始时间属性名,type 为 datePicker 时有效 */
|
|
26
77
|
start?: string;
|
|
78
|
+
/** 结束时间属性名,type 为 datePicker 时有效 */
|
|
27
79
|
end?: string;
|
|
28
80
|
options?: Option[];
|
|
29
81
|
dictType?: string;
|
|
@@ -34,5 +86,13 @@ export type ColumnType = {
|
|
|
34
86
|
clickable?: boolean;
|
|
35
87
|
showOverflowTooltip?: boolean;
|
|
36
88
|
};
|
|
89
|
+
/**
|
|
90
|
+
* 定义列
|
|
91
|
+
* @param column
|
|
92
|
+
*/
|
|
37
93
|
export declare const definColumn: (column: ColumnType) => ColumnType;
|
|
94
|
+
/**
|
|
95
|
+
* 定义列
|
|
96
|
+
* @param columns
|
|
97
|
+
*/
|
|
38
98
|
export declare const defineColumns: (columns: ColumnType[]) => ColumnType[];
|
package/index.css
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
:root{--el-disabled-text-color:#606266;--border-color:#d7dae0}.border-bottom{border-bottom:1px solid #d7dae0}.clear-fix:after{clear:both;visibility:hidden;content:" ";height:0;display:block}.flex-row{flex-direction:row;flex-shrink:0;display:flex}.flex-row.vertical-center{align-items:center}.flex-row.vertical-start{align-items:flex-start}.flex-row.horizon-center{justify-content:center}.text-center{text-align:center}.flex-column{flex-direction:column;display:flex}.flex-column.vertical-center{justify-content:center}.flex-column.horizon-center{align-items:center}.flex-item,.flex-item-relative{flex:auto}.flex-item-relative{position:relative}.flex-item-relative .flex-content{position:absolute;top:0;bottom:0;left:0;right:0}.flex-not-shrink{flex-shrink:0}.el-button.is-text{vertical-align:baseline;height:auto;padding:0}.el-button.is-text .el-icon{margin-right:2px}.editable-tree{position:relative}.editable-tree.et-tree-label-overflow-visible .et-tree-label{position:static}.et-tree-wrapper{text-align:left;flex-direction:column;width:100%;display:flex;overflow:auto}.et-tree-wrapper .el-tree{width:100%;display:table;overflow:visible}.et-tree-wrapper .el-button+.el-button{margin-left:8px!important}.et-tree-wrapper .el-input__inner{padding:0 4px}.et-tree-wrapper .custom-tree-node{align-items:center;width:100%;padding-right:8px;font-size:14px;display:flex}.et-tree-wrapper .custom-tree-node:hover .handle-actions{display:block}.et-tree-wrapper .custom-tree-node .handle-actions{align-self:flex-end;display:none}.et-tree-wrapper .custom-tree-node .node-icon{margin-top:2px;margin-right:4px}.et-tree-wrapper .node-label{align-items:center}.et-tree-wrapper .node-input{min-width:140px;margin-right:10px}.et-tree-wrapper .menu{z-index:3;background:#fff;border-radius:4px;padding:0;position:fixed;box-shadow:0 5px 10px #bebebe}.et-tree-wrapper .menu-item{color:#242f42;white-space:nowrap;cursor:pointer;-webkit-user-select:none;user-select:none;padding:8px 20px 8px 8px;font:11px/100% tahoma,arial,sans-serif;display:block}.et-tree-wrapper .menu .menu-item:hover{color:#66b1ff;background-color:#ecf5ff}.et-tree-wrapper .menu-item-icon{margin-right:4px;font-size:1.3em;font-weight:700}:root{--dialog-header-background-color:#025cde}.el-dialog{border-radius:4px 4px 0 0;flex-direction:column;padding:0;display:flex}.el-dialog .dialog-title{min-height:20px}.el-dialog .el-dialog__header{color:#fff;background-color:var(--dialog-header-background-color);border-radius:4px 4px 0 0;justify-content:center;align-items:center;padding:6px 10px;line-height:normal;display:flex;position:relative}.el-dialog .dialog-header-buttons{display:flex;position:absolute;top:50%;right:10px;transform:translateY(-50%)}.el-dialog .dialog-header-button{cursor:pointer;padding:2px;font-size:14px}.el-dialog .dialog-header-button+.dialog-header-button{margin-left:10px}.el-dialog .dialog-header-button:hover{background-color:#0000004d;border-radius:2px}.el-dialog .dialog-header-button.el-icon-close:hover{background-color:#e34e55;border-radius:2px}.el-dialog .el-dialog__body{height:var(--dialog-body-height);flex:auto;min-height:40vh;padding:10px}.el-dialog .el-dialog__footer{border-top:1px solid #dddee3;padding:10px}.resize-observer{z-index:-1;opacity:0;pointer-events:none;background-color:#0000;border:none;width:100%;height:100%;display:block;position:absolute;top:0;left:0;overflow:hidden}.resize-observer>object{z-index:-1;pointer-events:none;width:100%;height:100%;display:block;position:absolute;top:0;left:0;overflow:hidden}.empty-view{color:#909399;background-color:#fff;justify-content:center;align-items:center;width:100%;height:100%;font-size:20px;display:flex;position:relative}.empty-view .flex-column{flex-direction:column;display:flex}.empty-view .flex-column.vertical-center{justify-content:center}.empty-view .flex-column.horizon-center{align-items:center}.flex-item-relative{flex:1;position:relative;overflow:hidden}.flex-scroller{position:absolute;top:0;bottom:0;left:0;right:0;overflow:auto}.form-item{--el-disabled-text-color:#606266}.form-item .el-checkbox,.form-item .el-radio__input.is-disabled .el-radio__inner:after{--el-checkbox-disabled-checked-icon-color:#606266;--el-text-color-placeholder:#606266}.form-item.with-tips .el-form-item__content{flex-wrap:nowrap}.form-item.required.el-form-item.is-required>.el-form-item__label:before,.form-item.required.el-form-item.is-required>.el-form-item__label-wrap>.el-form-item__label:before{display:block!important}.form-item-input-info{color:gray;cursor:help;margin-left:4px;font-size:16px}.form-item.el-form-item.is-required:not(.is-no-asterisk) .el-form-item__label:before{color:#f56c6c;content:"*";margin-right:4px;display:inline}.form-item.el-form-item .el-form-item__content{min-height:29px}.form-item.el-form-item.el-form-item--mini .el-form-item__content{line-height:27px}.form-item.el-form-item.form-item-hide-label{margin-left:6px}.form-item.el-form-item.form-item-hide-label .el-form-item__label{display:none}.form-item-input-wrapper{flex-direction:row;align-items:center;width:100%;display:flex}.form-item-input-wrapper>form{width:100%}.form-item-input-wrapper .el-input{flex:auto}.form-item-input-wrapper .form-item-input-info{color:gray;cursor:help;margin-left:4px;font-size:16px}@media print{.form-item-input-info{display:none}}.red-form-cell-label{width:20%;color:var(--table-form-color);letter-spacing:1.5px;font-size:16px}.red-form-cell-align-center{text-align:center}.form-input .el-input-cursor-pointer .el-input__inner{cursor:pointer}.form-input.is-readonly .el-input__inner,.form-input.is-readonly .el-textarea__inner{background-color:#f5f7fa}.form-checkbox-group.form-checkbox-group-row-ellipsis .el-checkbox-group{overflow:hidden}.form-checkbox-group.form-checkbox-group-row-ellipsis .el-checkbox__label,.form-checkbox-group.form-checkbox-group-row-ellipsis .el-checkbox{text-overflow:ellipsis;-webkit-line-clamp:1;-webkit-box-orient:vertical;display:flex;overflow:hidden}.form-checkbox-group.form-checkbox-group-row.form-checkbox-group-row-break-word .el-checkbox__label{white-space:normal;word-wrap:break-word;word-break:break-all}.form-checkbox-group .form-checkbox-group-other{margin-left:10px;display:inline-block}.form-checkbox-group .form-checkbox-group-other .el-form-item__label{display:none}.form-title{height:48px;color:var(--table-form-color);text-align:center;font-size:24px;font-weight:700;line-height:48px}.red-table{table-layout:fixed;border-collapse:collapse;--table-form-color:red;width:100%}.red-table .el-form-item__content{align-items:center}.red-table .form-radio-group .el-radio__label{vertical-align:bottom}.red-table .form-radio-group .el-form-item__content{align-items:center}.red-table,.red-table td{border:1px solid var(--table-form-color);height:35px;padding:4px 10px;line-height:24px}.red-table .el-form-item,.red-table td .el-form-item{margin-bottom:0}.red-table .label{width:20%;color:var(--table-form-color);letter-spacing:1.5px;text-align:right;font-size:16px}.red-table .label .form-item-input-info{color:gray}.red-table .input{width:30%}.red-table .form-item.el-form-item .el-form-item__label{display:none}@keyframes breathe{0%{box-shadow:0 0 #ff7a7a}to{box-shadow:0 0 10px 1px #ff7a7a}}.breathe-animation{border-radius:4px;animation-name:breathe;animation-duration:.3s;animation-timing-function:ease-in-out;animation-iteration-count:6;animation-direction:alternate;animation-delay:.1s}.red-form .red-form-footer{margin-top:14px}.red-form .hide-error-message .el-form-item__error{display:none}@media print{.red-form .el-input__suffix,.red-form .el-input__prefix,.red-form .el-input__icon.el-range__icon.el-icon-date,.red-form .red-form-footer,.red-form .el-input__count{display:none}.red-form .el-input__inner,.red-form .el-textarea__inner,.red-form .x-input-tag,.red-form .el-input.is-disabled .el-input__inner,.red-form .el-input.is-readonly .el-input__inner{background-color:#0000;border:none;padding:0!important}.red-form .el-form-item{margin-bottom:0}.red-form .el-form-item .el-form-item__content,.red-form .el-form-item .el-form-item__label,.red-form .el-input__inner{height:auto;min-height:0;line-height:1.5}}.vue-cron{min-width:600px}.vue-cron .el-tabs{margin-bottom:30px}.vue-cron .language{z-index:1;position:absolute;right:25px}.vue-cron .el-tabs{box-shadow:none}.vue-cron .el-tabs .el-tabs__content{padding:0 14px}.vue-cron .tabBody{display:block}.vue-cron .tabBody .long .el-select{width:200px}.vue-cron .tabBody .el-input-number{width:110px}.vue-cron .tabBody .el-radio{margin-top:10px;display:block}.vue-cron .tabBody .el-radio:last-child{margin-bottom:10px}.vue-cron .bottom{text-align:center;width:100%;margin-top:5px;position:relative}.vue-cron .cron-expression{border:1px solid #ccc;border-radius:4px;margin-top:20px;padding:14px;position:relative}.vue-cron .cron-expression .title{background:#fff;padding:10px 40px;position:absolute;top:-50%;left:50%;transform:translate(-50%,60%)}.vue-cron .cron-expression .field-name{text-align:center;margin-bottom:6px}.vue-cron .cron-expression .field-value{text-align:center;border:1px solid #ccc;border-radius:4px;min-width:20px;padding:6px}.vue-cron .cron-expression .field-value.highlight{color:#ff8100;border-color:#ff8100}.vue-cron .cron-expression .field{justify-content:center;align-items:center;padding-left:10px;padding-right:10px}.cron{width:100%}.el-popper.cron-popover{min-width:641px;max-height:800px;overflow-y:auto}.el-popper.cron-popover .el-input__icon.el-input__validateIcon{display:none}.el-form-item.is-error .x-input-tag{border-color:#f56c6c}.x-input-tag{border:1px solid var(--border-color);border-radius:4px;width:100%;height:120px;padding-top:4px;padding-right:4px;line-height:0;position:relative;overflow:auto}.x-input-tag .el-tag .el-tag__close:hover{background-color:#ee8677}.x-input-tag .el-tag,.x-input-tag .button-new-tag{margin-bottom:4px;margin-left:4px}.x-input-tag .el-input.input-new-tag{width:120px;margin-bottom:4px;margin-left:4px}.x-input-tag .tags-count{color:#b7b7b7;font-size:.9em;position:absolute;bottom:10px;right:6px}.dropdown-popup{padding:0}.dropdown-popup .dropdown-item-list{max-height:200px;overflow:auto}.dropdown-popup .dropdown-item{cursor:pointer;padding:5px 10px}.dropdown-popup .dropdown-item:hover,.dropdown-popup .dropdown-item.active{background-color:#f5f7fa}.form-item-group{width:100%;margin-bottom:10px}.form-item-group.is-disabled .is-required .el-form-item__label:before,.form-item-group.is-disabled .required .el-form-item__label:before{display:none}.form-item-group .form-item-group-title{color:#333;height:30px;font-weight:700;font-size:var(--gloal-font-size);cursor:pointer;background-color:#f3f5fb;flex-direction:row;align-items:center;margin:0 0 10px;padding:0 10px;line-height:30px;display:flex}.red-form-row-label{width:20%;color:var(--table-form-color);letter-spacing:1.5px;font-size:16px}.red-form-row-align-center{text-align:center}.table-column-filter .el-drawer__body{padding:10px}.table-column-filter .el-drawer__header{border-bottom:1px solid #f0f0f0;min-height:20px;margin-bottom:0;padding:16px 10px 16px 24px}.is-clickable{cursor:pointer;text-decoration:underline}.is-clickable:hover{color:var(--color-primary)}.el-table__column-filter-trigger{line-height:unset}.pageable-table{flex:auto;width:100%;height:100%;position:relative}.pageable-table .single-select-column .el-radio__label{padding:0}.pageable-table.auto-height{height:auto;position:static}.pageable-table.auto-height .el-table{min-height:200px;position:relative}.pageable-table.auto-height .pageable-table-wrapper{position:static}.pageable-table .pageable-table-wrapper{flex-direction:column;width:100%;height:100%;display:flex;position:absolute;top:0;bottom:0;left:0;right:0}.pageable-table .el-pagination{background-color:#fff}.pageable-table .table-status-icon{font-size:20px}.pageable-table .pageable-table-loading{align-items:center;display:inline-flex}.pageable-table .pageable-table-error{color:red;border:1px solid #fca4a4;align-items:center;display:inline-flex}.pageable-table .pageable-table-error:hover{background-color:#fff0f0}.pageable-table .pageable-table-total{padding:0 10px 10px}.pageable-table .underline{position:relative}.pageable-table .underline:after{z-index:1;content:"";background-color:#606266;width:100%;height:1px;position:absolute;bottom:0;left:0}.pageable-table .el-table th{color:#000000d9;word-break:break-word;background-color:#fafafa}.pageable-table .total{padding:10px}.sub-table.pageable-table.auto-height .el-table{min-height:0}.sub-table .el-form-item{width:100%;margin-bottom:0}.sub-table .el-col{width:100%}.sub-table .table-header{background-color:#f3f5fb;border:1px solid #dfe6ec;border-bottom:none;padding:2px 10px}.sub-table .table-header-button:hover,.sub-table .table-header-button:focus{color:#595959}.sub-table .table-header-button i+span{margin-left:0}.sub-table .table-header-button i{font-size:15px}.sub-table .table-header-button.add i{color:#4886ec}.sub-table .table-header-button.remove i{color:#e34e55}.sub-table .table-header-button.refresh i{color:#1eb91e}.sub-table .table-button-add{color:#5add7a;opacity:.8}.sub-table .table-button-add:hover{opacity:1}.sub-table .table-button-remove{color:#ddd}.sub-table .table-button-remove:hover{color:#ef6666}.sub-table .el-table__header-wrapper .el-table__header th{background-color:#f3f5fb;padding:5px 0}.sub-table .el-table{border-top-color:#dde1e5}.sub-table .el-table td{border-color:#dfe6ec}.sub-table .el-col{padding:0!important}.sub-table .row-indicator{border:6px solid #0000;border-bottom-color:#f5690c;width:0;height:0;display:inline-block;position:absolute;top:-6px;right:-6px;transform:rotate(45deg)}.sub-table .sub-table-handle-button{cursor:pointer;font-size:20px}.sub-table .sub-table-handle-button+.sub-table-handle-button{margin-left:5px}.sub-table .el-table .el-table__header th{line-height:inherit;padding:5px 0;background:#f3f5fb!important}.sub-table-plus{width:100%}.sub-table-plus.hide-message .el-form-item__error{display:none}.sub-table-plus .pageable-table.auto-height .el-table{min-height:0}.sub-table-plus .el-form-item{width:100%;margin-bottom:0}.sub-table-plus .el-col{width:100%}.sub-table-plus .table-header{background-color:#f3f5fb;border:1px solid #dfe6ec;border-bottom:none;padding:2px 10px}.sub-table-plus .table-header-button:hover,.sub-table-plus .table-header-button:focus{color:#595959}.sub-table-plus .table-header-button i+span{margin-left:0}.sub-table-plus .table-header-button i{font-size:15px}.sub-table-plus .table-header-button.add i{color:#4886ec}.sub-table-plus .table-header-button.remove i{color:#e34e55}.sub-table-plus .table-header-button.refresh i{color:#1eb91e}.sub-table-plus .table-button-add{color:#5add7a;opacity:.8}.sub-table-plus .table-button-add:hover{opacity:1}.sub-table-plus .table-button-remove{color:#ddd}.sub-table-plus .table-button-remove:hover{color:#ef6666}.sub-table-plus .el-table__header-wrapper .el-table__header th{background-color:#f3f5fb;padding:5px 0}.sub-table-plus .el-table{border-top-color:#dde1e5}.sub-table-plus .el-table td{border-color:#dfe6ec}.sub-table-plus .el-col{padding:0!important}.sub-table-plus .row-indicator{border:6px solid #0000;border-bottom-color:#f5690c;width:0;height:0;display:inline-block;position:absolute;top:-6px;right:-6px;transform:rotate(45deg)}.sub-table-plus .sub-table-handle-button{cursor:pointer;font-size:20px}.sub-table-plus .sub-table-handle-button+.sub-table-handle-button{margin-left:5px}.sub-table-plus .el-table .el-table__header th{line-height:inherit;padding:5px 0;background:#f3f5fb!important}.sub-table-plus .form-item{padding-top:4px;padding-bottom:4px}.iframe-window.el-dialog .el-dialog__body{position:relative}.iframe-window .iframe-window-iframe{border:none;width:100%;height:100%;position:absolute;top:0;bottom:0;left:0;right:0}.toolbar{background-color:#fff;border-bottom:1px solid #e5e9ec;height:40px;padding:0 10px;line-height:40px;display:flex}.toolbar .toolbar-left{flex:auto}.toolbar .toolbar-left .el-button [class*=\ el-icon-],.toolbar .toolbar-left .el-button [class^=el-icon-]{margin-top:-1px;font-size:15px}.toolbar .toolbar-right .el-button{align-items:center;display:inline-flex}.footer-bar{flex-direction:row;justify-content:center;align-items:center;padding-top:10px;display:flex}.footer-bar .el-button{padding:10px 40px}.table-view{flex-direction:column;height:100%;padding:10px;display:flex}.table-view.has-tree .table-view-wrapper .pageable-table-wrapper,.table-view.embed{padding:0}.table-view.embed .toolbar{border:1px solid #ebeef5;border-bottom:none}.table-view.embed .table-view-wrapper{box-shadow:none;border-radius:0}.table-view.embed .table-view-wrapper .pageable-table-wrapper{padding:0}.table-view .toolbar{border-bottom:none;height:46px;line-height:46px}.table-view .table-view-wrapper{border-radius:4px;flex-direction:column;height:100%;display:flex;overflow:hidden;box-shadow:0 2px 12px #0000001a}.table-view .table-view-wrapper .pageable-table-wrapper{padding-left:10px;padding-right:10px}.table-view .table-view-wrapper .el-pagination{color:#303133;white-space:nowrap;text-align:left;padding:6px 10px;font-weight:700}.table-view .border-top .el-table--border{border-top:1px solid #ebeef5}.table-view .border-bottom .el-table--border{border-bottom:1px solid #ebeef5}.table-view .border-left .el-table--border,.table-view .border-left .el-pagination{border-left:1px solid #ebeef5}.table-view .border-right .el-table--border{border-right:1px solid #ebeef5}.table-view .node-icon{margin-right:4px}.table-view .table-view-content-wrapper{flex:1;position:relative;overflow:hidden}.table-view .table-view-content{background-color:#fff;width:100%;height:100%;display:flex;position:absolute;top:0;left:0}.table-view .table-view-sidebar{background-color:#fafafa;border-top:1px solid #ebeef5;flex-shrink:0;width:240px;height:100%;padding:4px 10px 10px 4px;overflow:auto}.table-view .table-view-sidebar .et-tree-wrapper{display:table;overflow:visible}.table-view .table-view-sidebar .et-tree-wrapper .el-tree{background-color:#0000}.table-view .table-view-table{flex:auto;height:100%}.table-view .search-form-top{background-color:#fff;padding:10px 10px 0}.table-view .search-form-top .el-form-item__content{align-items:center;display:flex}.table-view .search-actions{float:right}.table-view .search-actions .el-form-item__content{text-align:right;justify-content:right}.table-view .slide-panel{z-index:5;background-color:#fff;display:flex;position:absolute;top:0;bottom:0;right:0;box-shadow:0 0 10px 5px #0000001a}.table-view .slide-panel .slide-panel-line{background-color:#ddd;flex-shrink:0;width:3px;height:100%;position:relative}.table-view .slide-panel .slide-panel-line-indicator{background-color:#aaa;width:100%;height:50px;position:absolute;top:50%;left:0;transform:translateY(-50%)}.table-view .slide-panel .slide-panel-actions{justify-content:center;align-items:center;margin-top:10px;display:flex}.table-view .slide-panel .slide-panel-content{flex:1;padding:10px;overflow:auto}.table-view .slide-panel .slide-panel-content .el-date-editor{width:100%}.c-wrapper[data-v-2a7f150d]{padding:10px}.calendar[data-v-2a7f150d]{text-align:center;color:#353c46cc;background-color:#fff;border-radius:2px;min-width:0;min-height:295px;text-decoration:none;transition:transform .3s;position:relative;box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.calendar[data-v-2a7f150d]:hover{z-index:2}@media (min-width:1024px){.calendar[data-v-2a7f150d]:hover{transform:scale(1.15);box-shadow:0 7px 21px #0000001a}}.calendar .calendar__title[data-v-2a7f150d]{cursor:pointer;border-bottom:1px solid #c4c4c44d;flex:100%;justify-content:center;align-items:center;height:50px;margin-bottom:12px;font-size:18px;font-weight:700;display:flex}.calendar .calendar__body[data-v-2a7f150d]{flex-wrap:wrap;place-content:flex-start;min-width:194px;padding:0 20px;display:flex}.calendar .calendar__day[data-v-2a7f150d]{color:#5db3d4;flex:14.28%;justify-content:center;align-items:center;height:31px;font-size:16px;display:flex}.calendar .day__weektitle[data-v-2a7f150d]{color:#353c46cc}.calendar .day[data-v-2a7f150d]{cursor:pointer;-webkit-user-select:none;user-select:none;border-radius:5px;justify-content:center;align-items:center;width:22px;height:22px;font-size:14px;display:flex;position:relative}.calendar .day[data-v-2a7f150d]:after{content:"";z-index:1;background-color:#0000;border-radius:50%;width:10px;height:10px;display:block;position:absolute;top:-5px;right:-5px}.calendar .day.calendar--active[data-v-2a7f150d]:after{background-image:url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20fill='%23FF6060'%20d='M12%202C6.48%202%202%206.48%202%2012s4.48%2010%2010%2010%2010-4.48%2010-10S17.52%202%2012%202zm5%2011H7v-2h10v2z'/%3e%3c/svg%3e");background-size:100% 100%}.calendar .day[data-v-2a7f150d]:not(.calendar__day--otherMonth):hover{background-color:#6666661a;border-radius:5px}.calendar .day.calendar--active[data-v-2a7f150d]{color:#bcbcbc;background-color:#ffbaba80}.calendar .day.calendar--active.info[data-v-2a7f150d]{color:#fff;background-color:#17a2b8cc}.calendar .day.calendar--active.info[data-v-2a7f150d]:after{background-image:url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='%2317a2b8'%20d='M0%200h24v24H0V0z'/%3e%3cpath%20fill='white'%20d='M11%207h2v2h-2zm0%204h2v6h-2zm1-9C6.48%202%202%206.48%202%2012s4.48%2010%2010%2010%2010-4.48%2010-10S17.52%202%2012%202zm0%2018c-4.41%200-8-3.59-8-8s3.59-8%208-8%208%203.59%208%208-3.59%208-8%208z'/%3e%3c/svg%3e");background-size:100% 100%}.calendar .day.calendar--active.warning[data-v-2a7f150d]{color:#fff;background-color:#ffc107b3}.calendar .day.calendar--active.warning[data-v-2a7f150d]:after{background-color:#eaeaea4d;background-image:url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='%23ffc107'%20d='M4.47%2021h15.06c1.54%200%202.5-1.67%201.73-3L13.73%204.99c-.77-1.33-2.69-1.33-3.46%200L2.74%2018c-.77%201.33.19%203%201.73%203zM12%2014c-.55%200-1-.45-1-1v-2c0-.55.45-1%201-1s1%20.45%201%201v2c0%20.55-.45%201-1%201zm1%204h-2v-2h2v2z'/%3e%3c/svg%3e");background-size:100% 100%}.calendar .calendar__day--otherMonth[data-v-2a7f150d]{color:#eaeaea;cursor:auto}.container__months.hide-sunday .calendar__day:nth-of-type(7n){display:none}.container__months.hide-sunday .calendar__day{flex:16.66%}.container__months.hide-weekend .calendar__day:nth-of-type(7n),.container__months.hide-weekend .calendar__day:nth-of-type(7n-1){display:none}.container__months.hide-weekend .calendar__day{flex:19%}.vue-calendar__container[data-v-5cc87b9a]{background-color:#f6f6f3;border-radius:2px;min-width:0;text-decoration:none;position:relative;box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.vue-calendar__container .container__year[data-v-5cc87b9a]{-webkit-user-select:none;user-select:none;text-align:center;background-color:#fff;flex:100%;height:65px;font-size:24px;display:flex}.vue-calendar__container .container__year .year__chooser[data-v-5cc87b9a]{cursor:pointer;color:#000000e6;flex:1;justify-content:center;align-items:center;height:100%;display:flex}.vue-calendar__container .container__year .year__chooser[data-v-5cc87b9a]:hover{background-color:#6666661a}.vue-calendar__container .container__year .year__chooser[data-v-5cc87b9a]:nth-child(4n-3){color:#0000004d}.vue-calendar__container .container__year .year__chooser[data-v-5cc87b9a]:nth-child(2n){color:#0009}.vue-calendar__container .container__year .year__chooser[data-v-5cc87b9a]:nth-child(3){box-shadow:inset 0 -3px #4792bd}.vue-calendar__container .container__months[data-v-5cc87b9a]{flex-wrap:wrap;padding:15px;display:flex}.vue-calendar__container .container__month[data-v-5cc87b9a]{flex:16.66%;padding:8px}@media (max-width:1300px){.vue-calendar__container .container__month[data-v-5cc87b9a]{flex:25%}}@media (max-width:992px){.vue-calendar__container .container__month[data-v-5cc87b9a]{flex:33.3%}}@media (max-width:768px){.vue-calendar__container .container__month[data-v-5cc87b9a]{flex:50%}}@media (max-width:450px){.vue-calendar__container .container__month[data-v-5cc87b9a]{flex:100%}}.vue-calendar__container .p-0[data-v-5cc87b9a]{padding:0}
|
|
1
|
+
:root{--el-disabled-text-color:#606266;--border-color:#d7dae0}.border-bottom{border-bottom:1px solid #d7dae0}.clear-fix:after{clear:both;visibility:hidden;content:" ";height:0;display:block}.flex-row{flex-direction:row;flex-shrink:0;display:flex}.flex-row.vertical-center{align-items:center}.flex-row.vertical-start{align-items:flex-start}.flex-row.horizon-center{justify-content:center}.text-center{text-align:center}.flex-column{flex-direction:column;display:flex}.flex-column.vertical-center{justify-content:center}.flex-column.horizon-center{align-items:center}.flex-item,.flex-item-relative{flex:auto}.flex-item-relative{position:relative}.flex-item-relative .flex-content{position:absolute;top:0;bottom:0;left:0;right:0}.flex-not-shrink{flex-shrink:0}.el-button.is-text{vertical-align:baseline;height:auto;padding:0}.el-button.is-text .el-icon{margin-right:2px}.editable-tree{position:relative}.editable-tree.et-tree-label-overflow-visible .et-tree-label{position:static}.et-tree-wrapper{text-align:left;flex-direction:column;width:100%;display:flex;overflow:auto}.et-tree-wrapper .el-tree{width:100%;display:table;overflow:visible}.et-tree-wrapper .el-button+.el-button{margin-left:8px!important}.et-tree-wrapper .el-input__inner{padding:0 4px}.et-tree-wrapper .custom-tree-node{align-items:center;width:100%;padding-right:8px;font-size:14px;display:flex}.et-tree-wrapper .custom-tree-node:hover .handle-actions{display:block}.et-tree-wrapper .custom-tree-node .handle-actions{align-self:flex-end;display:none}.et-tree-wrapper .custom-tree-node .node-icon{margin-top:2px;margin-right:4px}.et-tree-wrapper .node-label{align-items:center}.et-tree-wrapper .node-input{min-width:140px;margin-right:10px}.et-tree-wrapper .menu{z-index:3;background:#fff;border-radius:4px;padding:0;position:fixed;box-shadow:0 5px 10px #bebebe}.et-tree-wrapper .menu-item{color:#242f42;white-space:nowrap;cursor:pointer;-webkit-user-select:none;user-select:none;padding:8px 20px 8px 8px;font:11px/100% tahoma,arial,sans-serif;display:block}.et-tree-wrapper .menu .menu-item:hover{color:#66b1ff;background-color:#ecf5ff}.et-tree-wrapper .menu-item-icon{margin-right:4px;font-size:1.3em;font-weight:700}:root{--dialog-header-background-color:#025cde}.el-dialog{border-radius:4px 4px 0 0;flex-direction:column;padding:0;display:flex}.el-dialog .dialog-title{min-height:20px}.el-dialog .el-dialog__header{color:#fff;background-color:var(--dialog-header-background-color);border-radius:4px 4px 0 0;justify-content:center;align-items:center;padding:6px 10px;line-height:normal;display:flex;position:relative}.el-dialog .dialog-header-buttons{display:flex;position:absolute;top:50%;right:10px;transform:translateY(-50%)}.el-dialog .dialog-header-button{cursor:pointer;padding:2px;font-size:14px}.el-dialog .dialog-header-button+.dialog-header-button{margin-left:10px}.el-dialog .dialog-header-button:hover{background-color:#0000004d;border-radius:2px}.el-dialog .dialog-header-button.el-icon-close:hover{background-color:#e34e55;border-radius:2px}.el-dialog .el-dialog__body{height:var(--dialog-body-height);flex:auto;min-height:40vh;padding:10px}.el-dialog .el-dialog__footer{border-top:1px solid #dddee3;padding:10px}.resize-observer{z-index:-1;opacity:0;pointer-events:none;background-color:#0000;border:none;width:100%;height:100%;display:block;position:absolute;top:0;left:0;overflow:hidden}.resize-observer>object{z-index:-1;pointer-events:none;width:100%;height:100%;display:block;position:absolute;top:0;left:0;overflow:hidden}.empty-view{color:#909399;background-color:#fff;justify-content:center;align-items:center;width:100%;height:100%;font-size:20px;display:flex;position:relative}.empty-view .flex-column{flex-direction:column;display:flex}.empty-view .flex-column.vertical-center{justify-content:center}.empty-view .flex-column.horizon-center{align-items:center}.flex-item-relative{flex:1;position:relative;overflow:hidden}.flex-scroller{position:absolute;top:0;bottom:0;left:0;right:0;overflow:auto}.form-item{--el-disabled-text-color:#606266;--el-text-color-placeholder:var(--el-disabled-text-color)}.form-item .el-checkbox,.form-item .el-radio__input.is-disabled .el-radio__inner:after{--el-checkbox-disabled-checked-icon-color:#606266;--el-text-color-placeholder:#606266}.form-item.with-tips .el-form-item__content{flex-wrap:nowrap}.form-item.required.el-form-item.is-required>.el-form-item__label:before,.form-item.required.el-form-item.is-required>.el-form-item__label-wrap>.el-form-item__label:before{display:block!important}.form-item-input-info{color:gray;cursor:help;margin-left:4px;font-size:16px}.form-item.el-form-item.is-required:not(.is-no-asterisk) .el-form-item__label:before{color:#f56c6c;content:"*";margin-right:4px;display:inline}.form-item.el-form-item .el-form-item__content{min-height:29px}.form-item.el-form-item.el-form-item--mini .el-form-item__content{line-height:27px}.form-item.el-form-item.form-item-hide-label{margin-left:6px}.form-item.el-form-item.form-item-hide-label .el-form-item__label{display:none}.form-item-input-wrapper{flex-direction:row;align-items:center;width:100%;display:flex}.form-item-input-wrapper>form{width:100%}.form-item-input-wrapper .el-input{flex:auto}.form-item-input-wrapper .form-item-input-info{color:gray;cursor:help;margin-left:4px;font-size:16px}@media print{.form-item-input-info{display:none}}.red-form-cell-label{width:20%;color:var(--table-form-color);letter-spacing:1.5px;font-size:16px}.red-form-cell-align-center{text-align:center}.form-input .el-input-cursor-pointer .el-input__inner{cursor:pointer}.form-input.is-readonly .el-input__inner,.form-input.is-readonly .el-textarea__inner{background-color:#f5f7fa}.form-checkbox-group.form-checkbox-group-row-ellipsis .el-checkbox-group{overflow:hidden}.form-checkbox-group.form-checkbox-group-row-ellipsis .el-checkbox__label,.form-checkbox-group.form-checkbox-group-row-ellipsis .el-checkbox{text-overflow:ellipsis;-webkit-line-clamp:1;-webkit-box-orient:vertical;display:flex;overflow:hidden}.form-checkbox-group.form-checkbox-group-row.form-checkbox-group-row-break-word .el-checkbox__label{white-space:normal;word-wrap:break-word;word-break:break-all}.form-checkbox-group .form-checkbox-group-other{margin-left:10px;display:inline-block}.form-checkbox-group .form-checkbox-group-other .el-form-item__label{display:none}.form-title{height:48px;color:var(--table-form-color);text-align:center;font-size:24px;font-weight:700;line-height:48px}.red-table{table-layout:fixed;border-collapse:collapse;--table-form-color:red;width:100%}.red-table .el-form-item__content{align-items:center}.red-table .form-radio-group .el-radio__label{vertical-align:bottom}.red-table .form-radio-group .el-form-item__content{align-items:center}.red-table,.red-table td{border:1px solid var(--table-form-color);height:35px;padding:4px 10px;line-height:24px}.red-table .el-form-item,.red-table td .el-form-item{margin-bottom:0}.red-table .label{width:20%;color:var(--table-form-color);letter-spacing:1.5px;text-align:right;font-size:16px}.red-table .label .form-item-input-info{color:gray}.red-table .input{width:30%}.red-table .form-item.el-form-item .el-form-item__label{display:none}@keyframes breathe{0%{box-shadow:0 0 #ff7a7a}to{box-shadow:0 0 10px 1px #ff7a7a}}.breathe-animation{border-radius:4px;animation-name:breathe;animation-duration:.3s;animation-timing-function:ease-in-out;animation-iteration-count:6;animation-direction:alternate;animation-delay:.1s}.red-form .red-form-footer{margin-top:14px}.red-form .hide-error-message .el-form-item__error{display:none}@media print{.red-form .el-input__suffix,.red-form .el-input__prefix,.red-form .el-input__icon.el-range__icon.el-icon-date,.red-form .red-form-footer,.red-form .el-icon.el-select__caret.el-select__icon,.red-form .el-input__count{display:none}.red-form .el-input__inner,.red-form .el-input__wrapper,.red-form .el-textarea__inner,.red-form .x-input-tag,.red-form .el-input.is-disabled .el-input__wrapper,.red-form .el-select__wrapper.is-disabled,.red-form .el-input.is-disabled .el-input__inner,.red-form .el-input.is-readonly .el-input__inner{box-shadow:none;background-color:#0000;border:none;padding:0!important}.red-form .el-input.is-disabled .el-input__inner,.red-form .el-select__wrapper.is-disabled .el-select__selected-item,.red-form .el-radio__input.is-disabled+span.el-radio__label{color:#000;-webkit-text-fill-color:#000}.red-form .el-form-item{margin-bottom:0}.red-form .el-form-item .el-form-item__content,.red-form .el-form-item .el-form-item__label,.red-form .el-input__inner{height:auto;min-height:0;line-height:1.5}}.vue-cron{min-width:600px}.vue-cron .el-tabs{margin-bottom:30px}.vue-cron .language{z-index:1;position:absolute;right:25px}.vue-cron .el-tabs{box-shadow:none}.vue-cron .el-tabs .el-tabs__content{padding:0 14px}.vue-cron .tabBody{display:block}.vue-cron .tabBody .long .el-select{width:200px}.vue-cron .tabBody .el-input-number{width:110px}.vue-cron .tabBody .el-radio{margin-top:10px;display:block}.vue-cron .tabBody .el-radio:last-child{margin-bottom:10px}.vue-cron .bottom{text-align:center;width:100%;margin-top:5px;position:relative}.vue-cron .cron-expression{border:1px solid #ccc;border-radius:4px;margin-top:20px;padding:14px;position:relative}.vue-cron .cron-expression .title{background:#fff;padding:10px 40px;position:absolute;top:-50%;left:50%;transform:translate(-50%,60%)}.vue-cron .cron-expression .field-name{text-align:center;margin-bottom:6px}.vue-cron .cron-expression .field-value{text-align:center;border:1px solid #ccc;border-radius:4px;min-width:20px;padding:6px}.vue-cron .cron-expression .field-value.highlight{color:#ff8100;border-color:#ff8100}.vue-cron .cron-expression .field{justify-content:center;align-items:center;padding-left:10px;padding-right:10px}.cron{width:100%}.el-popper.cron-popover{min-width:641px;max-height:800px;overflow-y:auto}.el-popper.cron-popover .el-input__icon.el-input__validateIcon{display:none}.el-form-item.is-error .x-input-tag{border-color:#f56c6c}.x-input-tag{border:1px solid var(--border-color);border-radius:4px;width:100%;height:120px;padding-top:4px;padding-right:4px;line-height:0;position:relative;overflow:auto}.x-input-tag .el-tag .el-tag__close:hover{background-color:#ee8677}.x-input-tag .el-tag,.x-input-tag .button-new-tag{margin-bottom:4px;margin-left:4px}.x-input-tag .el-input.input-new-tag{width:120px;margin-bottom:4px;margin-left:4px}.x-input-tag .tags-count{color:#b7b7b7;font-size:.9em;position:absolute;bottom:10px;right:6px}.dropdown-popup{padding:0}.dropdown-popup .dropdown-item-list{max-height:200px;overflow:auto}.dropdown-popup .dropdown-item{cursor:pointer;padding:5px 10px}.dropdown-popup .dropdown-item:hover,.dropdown-popup .dropdown-item.active{background-color:#f5f7fa}.form-item-group{width:100%;margin-bottom:10px}.form-item-group.is-disabled .is-required .el-form-item__label:before,.form-item-group.is-disabled .required .el-form-item__label:before{display:none}.form-item-group .form-item-group-title{color:#333;height:30px;font-weight:700;font-size:var(--gloal-font-size);cursor:pointer;background-color:#f3f5fb;flex-direction:row;align-items:center;margin:0 0 10px;padding:0 10px;line-height:30px;display:flex}.red-form-row-label{width:20%;color:var(--table-form-color);letter-spacing:1.5px;font-size:16px}.red-form-row-align-center{text-align:center}.table-column-filter .el-drawer__body{padding:10px}.table-column-filter .el-drawer__header{border-bottom:1px solid #f0f0f0;min-height:20px;margin-bottom:0;padding:16px 10px 16px 24px}.is-clickable{cursor:pointer;text-decoration:underline}.is-clickable:hover{color:var(--color-primary)}.el-table__column-filter-trigger{line-height:unset}.pageable-table{flex:auto;width:100%;height:100%;position:relative}.pageable-table .single-select-column .el-radio__label{padding:0}.pageable-table.auto-height{height:auto;position:static}.pageable-table.auto-height .el-table{min-height:200px;position:relative}.pageable-table.auto-height .pageable-table-wrapper{position:static}.pageable-table .pageable-table-wrapper{flex-direction:column;width:100%;height:100%;display:flex;position:absolute;top:0;bottom:0;left:0;right:0}.pageable-table .el-pagination{background-color:#fff}.pageable-table .table-status-icon{font-size:20px}.pageable-table .pageable-table-loading{align-items:center;display:inline-flex}.pageable-table .pageable-table-error{color:red;border:1px solid #fca4a4;align-items:center;display:inline-flex}.pageable-table .pageable-table-error:hover{background-color:#fff0f0}.pageable-table .pageable-table-total{padding:0 10px 10px}.pageable-table .underline{position:relative}.pageable-table .underline:after{z-index:1;content:"";background-color:#606266;width:100%;height:1px;position:absolute;bottom:0;left:0}.pageable-table .el-table th{color:#000000d9;word-break:break-word;background-color:#fafafa}.pageable-table .total{padding:10px}.sub-table.pageable-table.auto-height .el-table{min-height:0}.sub-table .el-form-item{width:100%;margin-bottom:0}.sub-table .el-col{width:100%}.sub-table .table-header{background-color:#f3f5fb;border:1px solid #dfe6ec;border-bottom:none;padding:2px 10px}.sub-table .table-header-button:hover,.sub-table .table-header-button:focus{color:#595959}.sub-table .table-header-button i+span{margin-left:0}.sub-table .table-header-button i{font-size:15px}.sub-table .table-header-button.add i{color:#4886ec}.sub-table .table-header-button.remove i{color:#e34e55}.sub-table .table-header-button.refresh i{color:#1eb91e}.sub-table .table-button-add{color:#5add7a;opacity:.8}.sub-table .table-button-add:hover{opacity:1}.sub-table .table-button-remove{color:#ddd}.sub-table .table-button-remove:hover{color:#ef6666}.sub-table .el-table__header-wrapper .el-table__header th{background-color:#f3f5fb;padding:5px 0}.sub-table .el-table{border-top-color:#dde1e5}.sub-table .el-table td{border-color:#dfe6ec}.sub-table .el-col{padding:0!important}.sub-table .row-indicator{border:6px solid #0000;border-bottom-color:#f5690c;width:0;height:0;display:inline-block;position:absolute;top:-6px;right:-6px;transform:rotate(45deg)}.sub-table .sub-table-handle-button{cursor:pointer;font-size:20px}.sub-table .sub-table-handle-button+.sub-table-handle-button{margin-left:5px}.sub-table .el-table .el-table__header th{line-height:inherit;padding:5px 0;background:#f3f5fb!important}.sub-table-plus{width:100%}.sub-table-plus.hide-message .el-form-item__error{display:none}.sub-table-plus .pageable-table.auto-height .el-table{min-height:0}.sub-table-plus .el-form-item{width:100%;margin-bottom:0}.sub-table-plus .el-col{width:100%}.sub-table-plus .table-header{background-color:#f3f5fb;border:1px solid #dfe6ec;border-bottom:none;padding:2px 10px}.sub-table-plus .table-header-button:hover,.sub-table-plus .table-header-button:focus{color:#595959}.sub-table-plus .table-header-button i+span{margin-left:0}.sub-table-plus .table-header-button i{font-size:15px}.sub-table-plus .table-header-button.add i{color:#4886ec}.sub-table-plus .table-header-button.remove i{color:#e34e55}.sub-table-plus .table-header-button.refresh i{color:#1eb91e}.sub-table-plus .table-button-add{color:#5add7a;opacity:.8}.sub-table-plus .table-button-add:hover{opacity:1}.sub-table-plus .table-button-remove{color:#ddd}.sub-table-plus .table-button-remove:hover{color:#ef6666}.sub-table-plus .el-table__header-wrapper .el-table__header th{background-color:#f3f5fb;padding:5px 0}.sub-table-plus .el-table{border-top-color:#dde1e5}.sub-table-plus .el-table td{border-color:#dfe6ec}.sub-table-plus .el-col{padding:0!important}.sub-table-plus .row-indicator{border:6px solid #0000;border-bottom-color:#f5690c;width:0;height:0;display:inline-block;position:absolute;top:-6px;right:-6px;transform:rotate(45deg)}.sub-table-plus .sub-table-handle-button{cursor:pointer;font-size:20px}.sub-table-plus .sub-table-handle-button+.sub-table-handle-button{margin-left:5px}.sub-table-plus .el-table .el-table__header th{line-height:inherit;padding:5px 0;background:#f3f5fb!important}.sub-table-plus .form-item{padding-top:4px;padding-bottom:4px}.iframe-window.el-dialog .el-dialog__body{position:relative}.iframe-window .iframe-window-iframe{border:none;width:100%;height:100%;position:absolute;top:0;bottom:0;left:0;right:0}.toolbar{background-color:#fff;border-bottom:1px solid #e5e9ec;height:40px;padding:0 10px;line-height:40px;display:flex}.toolbar .toolbar-left{flex:auto}.toolbar .toolbar-left .el-button [class*=\ el-icon-],.toolbar .toolbar-left .el-button [class^=el-icon-]{margin-top:-1px;font-size:15px}.toolbar .toolbar-right .el-button{align-items:center;display:inline-flex}.footer-bar{flex-direction:row;justify-content:center;align-items:center;padding-top:10px;display:flex}.footer-bar .el-button{padding:10px 40px}.table-view{flex-direction:column;height:100%;padding:10px;display:flex}.table-view.has-tree .table-view-wrapper .pageable-table-wrapper,.table-view.embed{padding:0}.table-view.embed .toolbar{border:1px solid #ebeef5;border-bottom:none}.table-view.embed .table-view-wrapper{box-shadow:none;border-radius:0}.table-view.embed .table-view-wrapper .pageable-table-wrapper{padding:0}.table-view .toolbar{border-bottom:none;height:46px;line-height:46px}.table-view .table-view-wrapper{border-radius:4px;flex-direction:column;height:100%;display:flex;overflow:hidden;box-shadow:0 2px 12px #0000001a}.table-view .table-view-wrapper .pageable-table-wrapper{padding-left:10px;padding-right:10px}.table-view .table-view-wrapper .el-pagination{color:#303133;white-space:nowrap;text-align:left;padding:6px 10px;font-weight:700}.table-view .border-top .el-table--border{border-top:1px solid #ebeef5}.table-view .border-bottom .el-table--border{border-bottom:1px solid #ebeef5}.table-view .border-left .el-table--border,.table-view .border-left .el-pagination{border-left:1px solid #ebeef5}.table-view .border-right .el-table--border{border-right:1px solid #ebeef5}.table-view .node-icon{margin-right:4px}.table-view .table-view-content-wrapper{flex:1;position:relative;overflow:hidden}.table-view .table-view-content{background-color:#fff;width:100%;height:100%;display:flex;position:absolute;top:0;left:0}.table-view .table-view-sidebar{background-color:#fafafa;border-top:1px solid #ebeef5;flex-shrink:0;width:240px;height:100%;padding:4px 10px 10px 4px;overflow:auto}.table-view .table-view-sidebar .et-tree-wrapper{display:table;overflow:visible}.table-view .table-view-sidebar .et-tree-wrapper .el-tree{background-color:#0000}.table-view .table-view-table{flex:auto;height:100%}.table-view .search-form-top{background-color:#fff;padding:10px 10px 0}.table-view .search-form-top .el-form-item__content{align-items:center;display:flex}.table-view .search-actions{float:right}.table-view .search-actions .el-form-item__content{text-align:right;justify-content:right}.table-view .slide-panel{z-index:5;background-color:#fff;display:flex;position:absolute;top:0;bottom:0;right:0;box-shadow:0 0 10px 5px #0000001a}.table-view .slide-panel .slide-panel-line{background-color:#ddd;flex-shrink:0;width:3px;height:100%;position:relative}.table-view .slide-panel .slide-panel-line-indicator{background-color:#aaa;width:100%;height:50px;position:absolute;top:50%;left:0;transform:translateY(-50%)}.table-view .slide-panel .slide-panel-actions{justify-content:center;align-items:center;margin-top:10px;display:flex}.table-view .slide-panel .slide-panel-content{flex:1;padding:10px;overflow:auto}.table-view .slide-panel .slide-panel-content .el-date-editor{width:100%}.c-wrapper[data-v-c5d49ea6]{padding:10px}.calendar[data-v-c5d49ea6]{text-align:center;color:#353c46cc;background-color:#fff;border-radius:2px;min-width:0;min-height:295px;text-decoration:none;transition:transform .3s;position:relative;box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.calendar[data-v-c5d49ea6]:hover{z-index:2}@media (min-width:1024px){.calendar[data-v-c5d49ea6]:hover{transform:scale(1.15);box-shadow:0 7px 21px #0000001a}}.calendar .calendar__title[data-v-c5d49ea6]{cursor:pointer;border-bottom:1px solid #c4c4c44d;flex:100%;justify-content:center;align-items:center;height:50px;margin-bottom:12px;font-size:18px;font-weight:700;display:flex}.calendar .calendar__body[data-v-c5d49ea6]{flex-wrap:wrap;place-content:flex-start;min-width:194px;padding:0 20px;display:flex}.calendar .calendar__day[data-v-c5d49ea6]{color:#5db3d4;flex:14.28%;justify-content:center;align-items:center;height:31px;font-size:16px;display:flex}.calendar .day__weektitle[data-v-c5d49ea6]{color:#353c46cc}.calendar .day[data-v-c5d49ea6]{cursor:pointer;-webkit-user-select:none;user-select:none;border-radius:5px;justify-content:center;align-items:center;width:22px;height:22px;font-size:14px;display:flex;position:relative}.calendar .day[data-v-c5d49ea6]:after{content:"";z-index:1;background-color:#0000;border-radius:50%;width:10px;height:10px;display:block;position:absolute;top:-5px;right:-5px}.calendar .day.calendar--active[data-v-c5d49ea6]:after{background-image:url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20fill='%23FF6060'%20d='M12%202C6.48%202%202%206.48%202%2012s4.48%2010%2010%2010%2010-4.48%2010-10S17.52%202%2012%202zm5%2011H7v-2h10v2z'/%3e%3c/svg%3e");background-size:100% 100%}.calendar .day[data-v-c5d49ea6]:not(.calendar__day--otherMonth):hover{background-color:#6666661a;border-radius:5px}.calendar .day.calendar--active[data-v-c5d49ea6]{color:#bcbcbc;background-color:#ffbaba80}.calendar .day.calendar--active.info[data-v-c5d49ea6]{color:#fff;background-color:#17a2b8cc}.calendar .day.calendar--active.info[data-v-c5d49ea6]:after{background-image:url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='%2317a2b8'%20d='M0%200h24v24H0V0z'/%3e%3cpath%20fill='white'%20d='M11%207h2v2h-2zm0%204h2v6h-2zm1-9C6.48%202%202%206.48%202%2012s4.48%2010%2010%2010%2010-4.48%2010-10S17.52%202%2012%202zm0%2018c-4.41%200-8-3.59-8-8s3.59-8%208-8%208%203.59%208%208-3.59%208-8%208z'/%3e%3c/svg%3e");background-size:100% 100%}.calendar .day.calendar--active.warning[data-v-c5d49ea6]{color:#fff;background-color:#ffc107b3}.calendar .day.calendar--active.warning[data-v-c5d49ea6]:after{background-color:#eaeaea4d;background-image:url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='%23ffc107'%20d='M4.47%2021h15.06c1.54%200%202.5-1.67%201.73-3L13.73%204.99c-.77-1.33-2.69-1.33-3.46%200L2.74%2018c-.77%201.33.19%203%201.73%203zM12%2014c-.55%200-1-.45-1-1v-2c0-.55.45-1%201-1s1%20.45%201%201v2c0%20.55-.45%201-1%201zm1%204h-2v-2h2v2z'/%3e%3c/svg%3e");background-size:100% 100%}.calendar .calendar__day--otherMonth[data-v-c5d49ea6]{color:#eaeaea;cursor:auto}.container__months.hide-sunday .calendar__day:nth-of-type(7n){display:none}.container__months.hide-sunday .calendar__day{flex:16.66%}.container__months.hide-weekend .calendar__day:nth-of-type(7n),.container__months.hide-weekend .calendar__day:nth-of-type(7n-1){display:none}.container__months.hide-weekend .calendar__day{flex:19%}.vue-calendar__container[data-v-5cc87b9a]{background-color:#f6f6f3;border-radius:2px;min-width:0;text-decoration:none;position:relative;box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.vue-calendar__container .container__year[data-v-5cc87b9a]{-webkit-user-select:none;user-select:none;text-align:center;background-color:#fff;flex:100%;height:65px;font-size:24px;display:flex}.vue-calendar__container .container__year .year__chooser[data-v-5cc87b9a]{cursor:pointer;color:#000000e6;flex:1;justify-content:center;align-items:center;height:100%;display:flex}.vue-calendar__container .container__year .year__chooser[data-v-5cc87b9a]:hover{background-color:#6666661a}.vue-calendar__container .container__year .year__chooser[data-v-5cc87b9a]:nth-child(4n-3){color:#0000004d}.vue-calendar__container .container__year .year__chooser[data-v-5cc87b9a]:nth-child(2n){color:#0009}.vue-calendar__container .container__year .year__chooser[data-v-5cc87b9a]:nth-child(3){box-shadow:inset 0 -3px #4792bd}.vue-calendar__container .container__months[data-v-5cc87b9a]{flex-wrap:wrap;padding:15px;display:flex}.vue-calendar__container .container__month[data-v-5cc87b9a]{flex:16.66%;padding:8px}@media (max-width:1300px){.vue-calendar__container .container__month[data-v-5cc87b9a]{flex:25%}}@media (max-width:992px){.vue-calendar__container .container__month[data-v-5cc87b9a]{flex:33.3%}}@media (max-width:768px){.vue-calendar__container .container__month[data-v-5cc87b9a]{flex:50%}}@media (max-width:450px){.vue-calendar__container .container__month[data-v-5cc87b9a]{flex:100%}}.vue-calendar__container .p-0[data-v-5cc87b9a]{padding:0}
|
|
2
2
|
/*$vite$:1*/
|
package/index.mjs
CHANGED
|
@@ -52,7 +52,7 @@ import J from "./form-view/index.mjs";
|
|
|
52
52
|
import Y from "./iframe-window/index.mjs";
|
|
53
53
|
import { t as X } from "./chunks/Dt_s96gL2.mjs";
|
|
54
54
|
import Z from "./table-view/index.mjs";
|
|
55
|
-
import { t as Q } from "./chunks/
|
|
55
|
+
import { t as Q } from "./chunks/BZTAuJxn2.mjs";
|
|
56
56
|
//#region src/components/index.ts
|
|
57
57
|
var $ = /* @__PURE__ */ "AwesomeButton.Confirmable.ConfirmButton.DictRender.EditableTree.ElementDialog.ElementResizeObserver.EmptyView.FlexScrollArea.FormAdvice.FormButton.FormCard.FormCascader.FormCell.FormCheckbox.FormCheckboxGroup.FormDatePicker.FormHolder.FormImage.FormInput.FormInputCronExpression.FormInputEmail.FormInputIdCard.FormInputNumber.FormInputPhoneNumber.FormInputTag.FormInputTime.FormItemConfigProvider.FormItemGroup.FormItemX.FormRadioGroup.FormRate.FormRedTable.FormRow.FormSelect.FormSlider.FormSwitch.FormTable.FormTablePlus.FormText.FormTextarea.FormTimeSelect.FormView.IframeWindow.PageableTable.SubTable.SubTablePlus.TableColumn.TableColumnDef.TableView.Toolbar.ToolbarButton.VueCron.XInputTag.YearCalendar".split("."), ne = /* @__PURE__ */ "AwesomeButton.Confirmable.ConfirmButton.DictRender.FlexScrollArea.FormAdvice.FormButton.FormCard.FormCascader.FormCell.FormCheckbox.FormDatePicker.FormImage.FormInputEmail.FormInputIdCard.FormInputNumber.FormInputPhoneNumber.FormInputTag.FormInputTime.FormItemConfigProvider.FormRadioGroup.FormRate.FormSelect.FormSlider.FormSwitch.FormTable.FormTablePlus.FormText.FormTextarea.FormTimeSelect.FormView.TableColumnDef".split("."), re = ($) => {
|
|
58
58
|
$.component(e.name, e), $.component(t.name, t), $.component(ee.name, ee), $.component(n.name, n), $.component(i.name, i), $.component(a.name, a), $.component(o.name, o), $.component(s.name, s), $.component(c.name, c), $.component(l.name, l), $.component(u.name, u), $.component(d.name, d), $.component(p.name, p), $.component(m.name, m), $.component(h.name, h), $.component(_.name, _), $.component(v.name, v), $.component(b.name, b), $.component(x.name, x), $.component(g.name, g), $.component(C.name, C), $.component(w.name, w), $.component(T.name, T), $.component(E.name, E), $.component(D.name, D), $.component(te.name, te), $.component(k.name, k), $.component(A.name, A), $.component(j.name, j), $.component(f.name, f), $.component(M.name, M), $.component(N.name, N), $.component(y.name, y), $.component(P.name, P), $.component(F.name, F), $.component(I.name, I), $.component(L.name, L), $.component(U.name, U), $.component(G.name, G), $.component(K.name, K), $.component(V.name, V), $.component(q.name, q), $.component(J.name, J), $.component(Y.name, Y), $.component(R.name, R), $.component(H.name, H), $.component(W.name, W), $.component(z.name, z), $.component(B.name, B), $.component(Z.name, Z), $.component(X.name, X), $.component(r.name, r), $.component(S.name, S), $.component(O.name, O), $.component(Q.name, Q);
|
package/package.json
CHANGED
package/sub-table/index.d.ts
CHANGED
|
@@ -53,6 +53,9 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
53
53
|
refresh(): void;
|
|
54
54
|
getVal(row: any, column: any, item: any): any;
|
|
55
55
|
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
56
|
+
/**
|
|
57
|
+
* 添加行
|
|
58
|
+
*/
|
|
56
59
|
'add-row': null;
|
|
57
60
|
"update:modelValue": null;
|
|
58
61
|
}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|