unione-form-vue 0.0.21 → 0.0.23

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.
@@ -33,5 +33,5 @@ export default class Convertor {
33
33
  * 前端接口数据选项处理
34
34
  * @param list
35
35
  */
36
- $processOptions(list: Array<any>): any[];
36
+ $processOptions(list: Array<any>): any;
37
37
  }
@@ -80,6 +80,7 @@ export declare class DataStorage {
80
80
  store(store?: TypeDataStorage): TypeDataStorage;
81
81
  data(): any;
82
82
  setValue(data: any): void;
83
+ reset(value?: any): void;
83
84
  $processParams(data: any, params?: Array<any>): any;
84
85
  /**
85
86
  * 通用数据请求方法
@@ -0,0 +1,19 @@
1
+ declare function open(tid: string | Array<string>, { flowKey, nodeKey, nodeTitle }?: any): void;
2
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3
+ vars: {
4
+ type: ObjectConstructor;
5
+ required: false;
6
+ };
7
+ }>, {
8
+ open: typeof open;
9
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
10
+ success: (...args: any[]) => void;
11
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
12
+ vars: {
13
+ type: ObjectConstructor;
14
+ required: false;
15
+ };
16
+ }>> & Readonly<{
17
+ onSuccess?: ((...args: any[]) => any) | undefined;
18
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
19
+ export default _default;
@@ -0,0 +1,43 @@
1
+ declare function close(): void;
2
+ declare function open({ busiKey, flowId, taskId }?: any): void;
3
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
4
+ busiKey: {
5
+ type: StringConstructor;
6
+ required: false;
7
+ };
8
+ flowId: {
9
+ type: StringConstructor;
10
+ required: false;
11
+ };
12
+ taskId: {
13
+ type: StringConstructor;
14
+ required: false;
15
+ };
16
+ visible: {
17
+ type: import('vue').PropType<boolean>;
18
+ };
19
+ }>, {
20
+ open: typeof open;
21
+ close: typeof close;
22
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
23
+ "update:visible": (visible: boolean) => any;
24
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
25
+ busiKey: {
26
+ type: StringConstructor;
27
+ required: false;
28
+ };
29
+ flowId: {
30
+ type: StringConstructor;
31
+ required: false;
32
+ };
33
+ taskId: {
34
+ type: StringConstructor;
35
+ required: false;
36
+ };
37
+ visible: {
38
+ type: import('vue').PropType<boolean>;
39
+ };
40
+ }>> & Readonly<{
41
+ "onUpdate:visible"?: ((visible: boolean) => any) | undefined;
42
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
43
+ export default _default;
@@ -0,0 +1,117 @@
1
+ import { PropType } from 'vue';
2
+ import { ButtonSetting } from '../../typing';
3
+ import { default as UnioneEditor } from '../../editor';
4
+ declare function storage(): any;
5
+ declare function reload(params?: any): void;
6
+ declare function setParams(params: any): void;
7
+ declare function getTable(): any;
8
+ declare function getSelected(): any;
9
+ declare function clearSelected(): void;
10
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
11
+ psn: {
12
+ type: StringConstructor;
13
+ required: false;
14
+ };
15
+ params: {
16
+ type: ObjectConstructor;
17
+ default(): {};
18
+ };
19
+ flowKey: {
20
+ type: StringConstructor;
21
+ required: false;
22
+ };
23
+ flowVers: {
24
+ type: NumberConstructor;
25
+ required: false;
26
+ };
27
+ queryBtns: {
28
+ type: {
29
+ (arrayLength: number): PropType<ButtonSetting>[];
30
+ (...items: PropType<ButtonSetting>[]): PropType<ButtonSetting>[];
31
+ new (arrayLength: number): PropType<ButtonSetting>[];
32
+ new (...items: PropType<ButtonSetting>[]): PropType<ButtonSetting>[];
33
+ isArray(arg: any): arg is any[];
34
+ readonly prototype: any[];
35
+ from<T>(arrayLike: ArrayLike<T>): T[];
36
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
37
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
38
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
39
+ of<T_4>(...items: T_4[]): T_4[];
40
+ readonly [Symbol.species]: ArrayConstructor;
41
+ };
42
+ required: false;
43
+ };
44
+ operation: {
45
+ type: PropType<Object | Boolean>;
46
+ required: false;
47
+ };
48
+ leftBtns: {
49
+ type: PropType<Boolean | PropType<ButtonSetting>[]>;
50
+ required: false;
51
+ };
52
+ rightBtns: {
53
+ type: PropType<Boolean | PropType<ButtonSetting>[]>;
54
+ required: false;
55
+ };
56
+ }>, {
57
+ storage: typeof storage;
58
+ editor: UnioneEditor;
59
+ reload: typeof reload;
60
+ setParams: typeof setParams;
61
+ getTable: typeof getTable;
62
+ getSelected: typeof getSelected;
63
+ clearSelected: typeof clearSelected;
64
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
65
+ btnClick: (...args: any[]) => void;
66
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
67
+ psn: {
68
+ type: StringConstructor;
69
+ required: false;
70
+ };
71
+ params: {
72
+ type: ObjectConstructor;
73
+ default(): {};
74
+ };
75
+ flowKey: {
76
+ type: StringConstructor;
77
+ required: false;
78
+ };
79
+ flowVers: {
80
+ type: NumberConstructor;
81
+ required: false;
82
+ };
83
+ queryBtns: {
84
+ type: {
85
+ (arrayLength: number): PropType<ButtonSetting>[];
86
+ (...items: PropType<ButtonSetting>[]): PropType<ButtonSetting>[];
87
+ new (arrayLength: number): PropType<ButtonSetting>[];
88
+ new (...items: PropType<ButtonSetting>[]): PropType<ButtonSetting>[];
89
+ isArray(arg: any): arg is any[];
90
+ readonly prototype: any[];
91
+ from<T>(arrayLike: ArrayLike<T>): T[];
92
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
93
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
94
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
95
+ of<T_4>(...items: T_4[]): T_4[];
96
+ readonly [Symbol.species]: ArrayConstructor;
97
+ };
98
+ required: false;
99
+ };
100
+ operation: {
101
+ type: PropType<Object | Boolean>;
102
+ required: false;
103
+ };
104
+ leftBtns: {
105
+ type: PropType<Boolean | PropType<ButtonSetting>[]>;
106
+ required: false;
107
+ };
108
+ rightBtns: {
109
+ type: PropType<Boolean | PropType<ButtonSetting>[]>;
110
+ required: false;
111
+ };
112
+ }>> & Readonly<{
113
+ onBtnClick?: ((...args: any[]) => any) | undefined;
114
+ }>, {
115
+ params: Record<string, any>;
116
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
117
+ export default _default;
@@ -1,5 +1,17 @@
1
1
  import { PropType } from 'vue';
2
- import { PageDefine } from '../typing';
2
+ import { FormItem, PageDefine, ButtonSetting, DataStorage, TreePageEvent } from '../typing';
3
+ /**
4
+ * 保存表单数据
5
+ */
6
+ declare function save(): Promise<any>;
7
+ /**
8
+ * 重置表单数据
9
+ */
10
+ declare function toReset(value?: any): void;
11
+ /**
12
+ * 返回
13
+ */
14
+ declare function toBack(): void;
3
15
  declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
4
16
  psn: {
5
17
  type: StringConstructor;
@@ -13,7 +25,50 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
13
25
  type: PropType<PageDefine>;
14
26
  required: false;
15
27
  };
16
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
28
+ storage: {
29
+ type: PropType<DataStorage>;
30
+ required: false;
31
+ };
32
+ fields: {
33
+ type: {
34
+ (arrayLength: number): PropType<FormItem>[];
35
+ (...items: PropType<FormItem>[]): PropType<FormItem>[];
36
+ new (arrayLength: number): PropType<FormItem>[];
37
+ new (...items: PropType<FormItem>[]): PropType<FormItem>[];
38
+ isArray(arg: any): arg is any[];
39
+ readonly prototype: any[];
40
+ from<T>(arrayLike: ArrayLike<T>): T[];
41
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
42
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
43
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
44
+ of<T_4>(...items: T_4[]): T_4[];
45
+ readonly [Symbol.species]: ArrayConstructor;
46
+ };
47
+ required: false;
48
+ };
49
+ btns: {
50
+ type: PropType<Boolean | (String | ButtonSetting)[]>;
51
+ required: false;
52
+ };
53
+ event: {
54
+ type: PropType<TreePageEvent>;
55
+ required: false;
56
+ };
57
+ setting: {
58
+ type: ObjectConstructor;
59
+ required: false;
60
+ };
61
+ }>, {
62
+ save: typeof save;
63
+ toReset: typeof toReset;
64
+ toBack: typeof toBack;
65
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
66
+ submit: (...args: any[]) => void;
67
+ reset: (...args: any[]) => void;
68
+ save: (...args: any[]) => void;
69
+ back: (...args: any[]) => void;
70
+ btnClick: (...args: any[]) => void;
71
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
17
72
  psn: {
18
73
  type: StringConstructor;
19
74
  required: false;
@@ -26,7 +81,46 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
26
81
  type: PropType<PageDefine>;
27
82
  required: false;
28
83
  };
29
- }>> & Readonly<{}>, {
84
+ storage: {
85
+ type: PropType<DataStorage>;
86
+ required: false;
87
+ };
88
+ fields: {
89
+ type: {
90
+ (arrayLength: number): PropType<FormItem>[];
91
+ (...items: PropType<FormItem>[]): PropType<FormItem>[];
92
+ new (arrayLength: number): PropType<FormItem>[];
93
+ new (...items: PropType<FormItem>[]): PropType<FormItem>[];
94
+ isArray(arg: any): arg is any[];
95
+ readonly prototype: any[];
96
+ from<T>(arrayLike: ArrayLike<T>): T[];
97
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
98
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
99
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
100
+ of<T_4>(...items: T_4[]): T_4[];
101
+ readonly [Symbol.species]: ArrayConstructor;
102
+ };
103
+ required: false;
104
+ };
105
+ btns: {
106
+ type: PropType<Boolean | (String | ButtonSetting)[]>;
107
+ required: false;
108
+ };
109
+ event: {
110
+ type: PropType<TreePageEvent>;
111
+ required: false;
112
+ };
113
+ setting: {
114
+ type: ObjectConstructor;
115
+ required: false;
116
+ };
117
+ }>> & Readonly<{
118
+ onSubmit?: ((...args: any[]) => any) | undefined;
119
+ onReset?: ((...args: any[]) => any) | undefined;
120
+ onSave?: ((...args: any[]) => any) | undefined;
121
+ onBack?: ((...args: any[]) => any) | undefined;
122
+ onBtnClick?: ((...args: any[]) => any) | undefined;
123
+ }>, {
30
124
  params: Record<string, any>;
31
125
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
32
126
  export default _default;
@@ -1,5 +1,18 @@
1
1
  import { PropType } from 'vue';
2
2
  import { FormItem, TreePageSetting, ButtonSetting, DataStorage, TreePageEvent } from '../typing';
3
+ /**
4
+ * 保存表单数据
5
+ */
6
+ declare function save(event: any): Promise<void>;
7
+ /**
8
+ * 重置表单数据
9
+ */
10
+ declare function toReset(): void;
11
+ /**
12
+ * 返回
13
+ */
14
+ declare function toBack(): void;
15
+ declare function storage(): any;
3
16
  declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import('vue').ExtractPropTypes<{
4
17
  psn: {
5
18
  type: StringConstructor;
@@ -46,7 +59,13 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
46
59
  type: PropType<TreePageEvent>;
47
60
  required: false;
48
61
  };
49
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
62
+ }>, {
63
+ storage: typeof storage;
64
+ save: typeof save;
65
+ toBack: typeof toBack;
66
+ toReset: typeof toReset;
67
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
68
+ select: (...args: any[]) => void;
50
69
  btnClick: (...args: any[]) => void;
51
70
  treeClick: (...args: any[]) => void;
52
71
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
@@ -96,15 +115,14 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
96
115
  required: false;
97
116
  };
98
117
  }>> & Readonly<{
118
+ onSelect?: ((...args: any[]) => any) | undefined;
99
119
  onBtnClick?: ((...args: any[]) => any) | undefined;
100
120
  onTreeClick?: ((...args: any[]) => any) | undefined;
101
121
  }>, {
102
122
  params: Record<string, any>;
103
123
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, {
104
- "tree-top"?(_: {
105
- onPressEnter: any;
106
- onChange: any;
107
- }): any;
124
+ "tree-top"?(_: {}): any;
125
+ "tree-empty"?(_: {}): any;
108
126
  "form-warp"?(_: {}): any;
109
127
  }>;
110
128
  export default _default;
package/dist/style.css CHANGED
@@ -1 +1 @@
1
- :root{--vt-c-white: #ffffff;--vt-c-white-soft: #f8f8f8;--vt-c-white-mute: #f2f2f2;--vt-c-black: #181818;--vt-c-black-soft: #222222;--vt-c-black-mute: #282828;--vt-c-indigo: #2c3e50;--vt-c-divider-light-1: rgba(60, 60, 60, .29);--vt-c-divider-light-2: rgba(60, 60, 60, .12);--vt-c-divider-dark-1: rgba(84, 84, 84, .65);--vt-c-divider-dark-2: rgba(84, 84, 84, .48);--vt-c-text-light-1: var(--vt-c-indigo);--vt-c-text-light-2: rgba(60, 60, 60, .66);--vt-c-text-dark-1: var(--vt-c-white);--vt-c-text-dark-2: rgba(235, 235, 235, .64)}:root{--color-background: var(--vt-c-white);--color-background-soft: var(--vt-c-white-soft);--color-background-mute: var(--vt-c-white-mute);--color-border: var(--vt-c-divider-light-2);--color-border-hover: var(--vt-c-divider-light-1);--color-heading: var(--vt-c-text-light-1);--color-text: var(--vt-c-text-light-1);--section-gap: 160px}@media (prefers-color-scheme: dark){:root{--color-background: var(--vt-c-black);--color-background-soft: var(--vt-c-black-soft);--color-background-mute: var(--vt-c-black-mute);--color-border: var(--vt-c-divider-dark-2);--color-border-hover: var(--vt-c-divider-dark-1);--color-heading: var(--vt-c-text-dark-1);--color-text: var(--vt-c-text-dark-2)}}*,*:before,*:after{box-sizing:border-box;margin:0;font-weight:400}body{min-height:100vh;color:var(--color-text);background:var(--color-background);transition:color .5s,background-color .5s;line-height:1.6;font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;font-size:15px;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}::-webkit-scrollbar{width:7px;height:7px}::-webkit-scrollbar-track{background-color:#fff;border-radius:3px}::-webkit-scrollbar-thumb{background-color:#1677ff;border-radius:6px;border:2px solid #f1f1f1;background-color:transparent}::-webkit-scrollbar-thumb:hover{background-color:#1677ff}#app{width:100vw;height:100vh;font-weight:400}.ant-switch{background-color:#1677ff}.unione-page{padding:10px 5px}.unione-page.edit .page-setting{cursor:pointer;position:absolute;right:12px;margin-top:25px;display:none}.unione-page.edit .page-setting:hover{font-size:20px;margin-right:-2px;margin-top:23px}.unione-page.edit .btn-save{cursor:pointer;position:absolute;right:12px;margin-top:55px;display:none}.unione-page.edit .btn-save:hover{font-size:20px;margin-right:-2px;margin-top:52px}.unione-page.edit:hover .page-setting{display:block;animation:rotates 2s linear infinite}.unione-page.edit:hover .btn-save{display:block}.unione-page .btn-edit{cursor:pointer;position:absolute;right:12px;margin-top:-5px}.unione-page .btn-edit:hover{font-size:20px;margin-right:-2px;margin-top:-7px}@keyframes rotates{0%{-webkit-transform:rotate(0deg)}30%{-webkit-transform:rotate(-90deg)}50%{-webkit-transform:rotate(-180deg)}70%{-webkit-transform:rotate(-270deg)}to{-webkit-transform:rotate(-360deg)}}.page-setting-dialog{height:75vh;overflow-y:auto}.unione-page-form{padding:10px;height:100%;overflow-y:auto}.unione-page-form .form-btns{width:100%;margin:10px;text-align:center}.unione-page-form .form-btns .btn{margin:auto 5px}.unione-page-tree{display:flex;height:100%;overflow-y:auto}.unione-page-tree .tree-warp{width:250px;padding-right:10px;border-right:1px solid #d9d9d9}.unione-page-tree .tree-warp .input-search{margin:0 0 5px 5px}.unione-page-tree .tree-warp .unione-btn-add{margin-bottom:5px}.unione-page-tree .tree-warp .ant-tree-icon__customize+.ant-tree-title{width:calc(100% - 25px);display:inline-block}.unione-page-tree .tree-warp .ant-tree-icon__customize:empty+.ant-tree-title{width:100%}.unione-page-tree .tree-warp .node-label{width:100%}.unione-page-tree .tree-warp .node-opts{float:right}.unione-page-tree .tree-warp .node-opts .unione-btn{margin:0}.unione-page-tree .form-warp{width:calc(100% - 250px)}.unione-page-tree .form-warp .form-btns{width:100%;margin:10px;text-align:center}.unione-page-tree .form-warp .form-btns .btn{margin:auto 5px}.unione-page-list{padding:10px;height:100%;overflow-y:auto}.ant-table .ant-table-content{border-inline-start:1px solid #cfcfcf;border-top-left-radius:8px;border-top-right-radius:8px;overflow:hidden}.ant-table .ant-table-content table{border-top:1px solid #cfcfcf!important}.ant-table .ant-table-content .ant-table-thead .ant-table-cell{background:#f0f0f0;border-inline-end:1px solid #cfcfcf!important;border-bottom:1px solid #cfcfcf!important}.ant-table .ant-table-content .ant-table-thead .ant-table-cell .ant-table-column-title{font-weight:600}.ant-table .ant-table-content .ant-table-tbody .ant-table-cell{border-inline-end:1px solid #cfcfcf!important;border-bottom:1px solid #cfcfcf!important}.ant-table .ant-table-content .ant-table-tbody .ant-table-row:hover,.ant-table .ant-table-content .ant-table-tbody .ant-table-row:hover .ant-table-cell{background-color:#e6f7ff;color:#2795f9}.ant-table .ant-table-container .ant-table-thead table{border-top:1px solid #cfcfcf!important}.ant-table .ant-table-container .ant-table-thead .ant-table-cell{background:#f0f0f0;border-inline-end:1px solid #cfcfcf!important;border-bottom:1px solid #cfcfcf!important}.ant-table .ant-table-container .ant-table-tbody table{border-top:1px solid #cfcfcf!important}.ant-table .ant-table-container .ant-table-tbody .ant-table-cell{border-inline-end:1px solid #cfcfcf!important;border-bottom:1px solid #cfcfcf!important}.ant-table .ant-table-container .ant-table-tbody .ant-table-row:hover,.ant-table .ant-table-container .ant-table-tbody .ant-table-row:hover .ant-table-cell{background-color:#e6f7ff;color:#2795f9}.unione-iframe{border:none;width:100%;height:100%}.ck .ck-powered-by{display:none!important}.unione-widget.edit .widget-setting[data-v-17b517f5]{cursor:pointer;float:right;margin-right:-6px;margin-top:6px;display:none}.unione-widget.edit .widget-setting[data-v-17b517f5]:hover{font-size:20px;margin-right:-10px;margin-top:6px;animation:rotates-17b517f5 1s linear infinite!important}.unione-widget.edit[data-v-17b517f5]:hover{background-color:#e6f7ff}.unione-widget.edit:hover>.widget-setting[data-v-17b517f5]{display:block;animation:rotates-17b517f5 2s linear infinite}@keyframes rotates-17b517f5{0%{-webkit-transform:rotate(0deg)}30%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}70%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.widget-setting-dialog[data-v-17b517f5]{height:75vh;overflow-y:auto}.form-mix[data-v-75055a2b] .ant-form-item{margin-bottom:5px!important}.form-mix .checkbox-tips[data-v-75055a2b] .ant-checkbox-wrapper{color:#999}.form-mix[data-v-75055a2b] .ant-tabs-tabpane{max-height:calc(60vh - 60px);overflow-y:auto}.btn-setting-form[data-v-75055a2b]{min-height:400px}.btn-setting-form .param-btn[data-v-75055a2b]{margin:auto 10px}.btn-setting-form .edit-field[data-v-75055a2b]{width:100%;height:100%}.btn-setting-form .edit-field.empty[data-v-75055a2b]{position:absolute;top:0;left:0}.btn-setting-form .edit-field.empty[data-v-75055a2b] .ant-btn{padding:4px 7px;float:right}.btn-setting-form .edit-field[data-v-75055a2b] .ant-input-number{width:calc(100% - 5px)}.btn-setting-form .edit-field[data-v-75055a2b] .ant-select{width:100%}.btn-setting-form .edit-field[data-v-75055a2b] .ant-btn{padding:4px;float:right}.btn-setting-form .edit-field[data-v-75055a2b] .ant-checkbox{margin-top:8px}.btn-setting-form .edit-field .field-txt[data-v-75055a2b]{line-height:30px}.unione-btn[data-v-b868da76]{display:inline-block;margin:auto 5px}.unione-btn.unione-btn-block[data-v-b868da76]{width:100%}.unione-btn[data-v-b868da76] .widget-setting{position:absolute;z-index:1;transform:scale(.8);margin-top:-5px!important;margin-left:-5px}.unione-btn-drawer .ant-drawer-body[data-v-b868da76]{padding:5px!important;background-color:red}.dropdown-overlay[data-v-b868da76]{padding:3px 5px;list-style-type:none;background-color:#fff;background-clip:padding-box;border:1px solid #e6f7ff;border-radius:8px;outline:none;box-shadow:0 6px 16px #00000014,0 3px 6px -4px #0000001f,0 9px 28px 8px #0000000d}.dropdown-overlay.vertical[data-v-b868da76]{display:flex;flex-direction:column}.dropdown-overlay .item[data-v-b868da76]{padding:2px 6px}.unione-layout-section .head[data-v-e75e9a84]{padding:5px 15px}.unione-layout-section .head.right[data-v-e75e9a84]{text-align:right}.unione-layout-section .head.reactive[data-v-e75e9a84]{cursor:pointer}.unione-layout-section .head .title[data-v-e75e9a84]{font-size:17px;display:inline-block}.unione-layout-section .head .title .type[data-v-e75e9a84]{background-color:#1677ff;display:inline-block;width:12px;height:12px;margin-right:2px}.unione-layout-section .head .title .type.circle[data-v-e75e9a84]{border-radius:6px}.unione-layout-section .head .title .type.square[data-v-e75e9a84]{margin-right:2px}.unione-layout-section .head .title .type.line[data-v-e75e9a84]{width:5px;margin-right:2px}.unione-layout-section .head .opts[data-v-e75e9a84]{float:right}.unione-layout-section .head .reactive[data-v-e75e9a84]{float:right;margin-top:3px}.unione-form-setting .unione-form-btns[data-v-c0f75bb9]{padding-bottom:10px}.unione-form-setting .unione-form-btns .btn[data-v-c0f75bb9]{margin:auto 5px}.unione-form-setting .unione-form-btns .btn.right[data-v-c0f75bb9]{float:right}.unione-form-setting .unione-form-btns .btn .btn-del[data-v-c0f75bb9]{display:none;position:absolute;margin-top:-25px;right:0;color:#000}.unione-form-setting .unione-form-btns .btn .btn-del[data-v-c0f75bb9]:hover{background-color:#f0f0f0}.unione-form-setting .unione-form-btns .btn.deleted[data-v-c0f75bb9]{color:#999;border-color:#999}.unione-form-setting .unione-form-btns .btn.deleted[data-v-c0f75bb9] span{text-decoration:line-through}.unione-form-setting .unione-form-btns .btn:hover .btn-del[data-v-c0f75bb9]{display:block}.unione-form-setting .unione-form-btns .selected-info[data-v-c0f75bb9]{margin:auto 5px;color:#2795f9;cursor:pointer}.unione-form-setting .unione-form-btns .selected-info[data-v-c0f75bb9]:hover{color:red;text-decoration:line-through}.unione-form-setting .unione-form-btns[data-v-c0f75bb9] .ant-btn-sm{height:27px}.unione-form-setting .unione-form-opts[data-v-c0f75bb9]{padding-bottom:10px}.unione-form-setting .unione-form-opts .btn[data-v-c0f75bb9]{margin:auto 5px}.unione-form-setting .unione-form-opts .btn.right[data-v-c0f75bb9]{float:right}.unione-form-setting .unione-form-opts .btn .btn-del[data-v-c0f75bb9]{display:none;position:absolute;margin-top:-25px;right:0;color:#000}.unione-form-setting .unione-form-opts .btn .btn-del[data-v-c0f75bb9]:hover{background-color:#f0f0f0}.unione-form-setting .unione-form-opts .btn.deleted[data-v-c0f75bb9]{color:#999;border-color:#999}.unione-form-setting .unione-form-opts .btn.deleted[data-v-c0f75bb9] span{text-decoration:line-through}.unione-form-setting .unione-form-opts .btn:hover .btn-del[data-v-c0f75bb9]{display:block}.unione-form-setting .unione-form-opts[data-v-c0f75bb9] .ant-btn-sm{height:27px}.unione-form-setting[data-v-c0f75bb9] .ant-table .ant-table-thead tr th{font-weight:400}.unione-form-setting[data-v-c0f75bb9] .ant-table .ant-table-tbody tr td{padding:3px}.unione-form-setting .edit-field[data-v-c0f75bb9]{width:100%;height:100%}.unione-form-setting .edit-field.empty[data-v-c0f75bb9]{position:absolute;top:0;left:0}.unione-form-setting .edit-field.empty[data-v-c0f75bb9] .ant-btn{padding:4px 7px;float:right}.unione-form-setting .edit-field[data-v-c0f75bb9] .ant-input-number{width:calc(100% - 5px)}.unione-form-setting .edit-field[data-v-c0f75bb9] .ant-select{width:100%}.unione-form-setting .edit-field[data-v-c0f75bb9] .ant-btn{padding:4px;float:right}.unione-form-setting .edit-field[data-v-c0f75bb9] .ant-checkbox{margin-top:8px}.unione-form-setting .edit-field .field-txt[data-v-c0f75bb9]{line-height:30px}.form-mix[data-v-c0f75bb9] .ant-form-item{margin-bottom:5px!important}.form-mix .checkbox-tips[data-v-c0f75bb9] .ant-checkbox-wrapper{color:#999}.form-mix[data-v-c0f75bb9] .ant-tabs-tabpane{max-height:calc(60vh - 60px);overflow-y:auto}.unione-form-widget[data-v-cecc4588]{padding:10px}.unione-form-widget[data-v-cecc4588] .widget-setting{margin-top:-5px!important}.unione-form-widget .unione-form.edit[data-v-cecc4588]{padding:0 20px}.unione-form-widget .unione-form .unione-widget[data-v-cecc4588]{display:block}.unione-form-widget .unione-form .unione-widget.all-line[data-v-cecc4588]{width:100%!important}.unione-form-widget .unione-form .unione-widget.2in_line[data-v-cecc4588]{width:66.66%!important}.unione-form-widget .unione-form.form-layout-col-1 .unione-widget[data-v-cecc4588]{width:100%}.unione-form-widget .unione-form.form-layout-col-2 .unione-widget[data-v-cecc4588]{width:50%;display:inline-block}.unione-form-widget .unione-form.form-layout-col-3 .unione-widget[data-v-cecc4588]{width:33.33%;display:inline-block}.unione-form-widget .form-btns[data-v-cecc4588]{width:100%;margin:10px;text-align:center}.unione-form-widget .form-btns .btn[data-v-cecc4588]{margin:auto 5px}.unione-form-item .ant-form-item[data-v-20adb860]{margin-bottom:6px}.unione-form-item .ant-form-item[data-v-20adb860] .ant-form-item-explain-error{right:5px;margin-top:-27px;position:absolute}.unione-query-setting .unione-query-tools[data-v-ce575063]{padding-bottom:10px}.unione-query-setting .unione-query-tools .btn[data-v-ce575063]{margin:auto 5px}.unione-query-setting .unione-query-tools .btn.right[data-v-ce575063]{float:right}.unione-query-setting .unione-query-tools .btn .bool-del[data-v-ce575063]{display:none;position:absolute;margin-top:-25px;right:0;color:#000}.unione-query-setting .unione-query-tools .btn .bool-del[data-v-ce575063]:hover{background-color:#f0f0f0}.unione-query-setting .unione-query-tools .btn.deleted[data-v-ce575063]{color:#999;border-color:#999}.unione-query-setting .unione-query-tools .btn.deleted[data-v-ce575063] span{text-decoration:line-through}.unione-query-setting .unione-query-tools .btn:hover .bool-del[data-v-ce575063]{display:block}.unione-query-setting .unione-query-tools .selected-info[data-v-ce575063]{margin:auto 5px;color:#2795f9;cursor:pointer}.unione-query-setting .unione-query-tools .selected-info[data-v-ce575063]:hover{color:red;text-decoration:line-through}.unione-query-setting .unione-query-tools[data-v-ce575063] .ant-btn-sm{height:27px}.unione-query-setting .unione-query-opts[data-v-ce575063]{padding-bottom:10px}.unione-query-setting .unione-query-opts .btn[data-v-ce575063]{margin:auto 5px}.unione-query-setting .unione-query-opts .btn.right[data-v-ce575063]{float:right}.unione-query-setting .unione-query-opts .btn .btn-del[data-v-ce575063]{display:none;position:absolute;margin-top:-25px;right:0;color:#000}.unione-query-setting .unione-query-opts .btn .btn-del[data-v-ce575063]:hover{background-color:#f0f0f0}.unione-query-setting .unione-query-opts .btn.deleted[data-v-ce575063]{color:#999;border-color:#999}.unione-query-setting .unione-query-opts .btn.deleted[data-v-ce575063] span{text-decoration:line-through}.unione-query-setting .unione-query-opts .btn:hover .btn-del[data-v-ce575063]{display:block}.unione-query-setting .unione-query-opts[data-v-ce575063] .ant-btn-sm{height:27px}.unione-query-setting[data-v-ce575063] .ant-table .ant-table-thead tr th{font-weight:400}.unione-query-setting[data-v-ce575063] .ant-table .ant-table-tbody tr td{padding:3px}.unione-query-setting .edit-field[data-v-ce575063]{width:100%;height:100%}.unione-query-setting .edit-field.empty[data-v-ce575063]{position:absolute;top:0;left:0}.unione-query-setting .edit-field.empty[data-v-ce575063] .ant-btn{padding:4px 7px;float:right}.unione-query-setting .edit-field[data-v-ce575063] .ant-input-number{width:calc(100% - 5px)}.unione-query-setting .edit-field[data-v-ce575063] .ant-select{width:100%}.unione-query-setting .edit-field[data-v-ce575063] .ant-btn{padding:4px;float:right}.unione-query-setting .edit-field[data-v-ce575063] .ant-checkbox{margin-top:8px}.unione-query-setting .edit-field .field-txt[data-v-ce575063]{line-height:30px}.form-mix[data-v-ce575063] .ant-form-item{margin-bottom:5px!important}.form-mix .checkbox-tips[data-v-ce575063] .ant-checkbox-wrapper{color:#999}.form-mix[data-v-ce575063] .ant-tabs-tabpane{max-height:calc(60vh - 60px);overflow-y:auto}.unione-query-form .query-field[data-v-05f95e36]{display:inline-block;margin-bottom:5px;min-width:250px;width:25%}.unione-query-form.edit .query-field[data-v-05f95e36]{width:calc(25% - 7px)}.unione-query-form .query-btn[data-v-05f95e36]{display:inline-block;white-space:nowrap}.unione-query-form .query-btn .btn[data-v-05f95e36]{margin:auto 5px}.unione-query-form .query-btn .btn.save-search[data-v-05f95e36]{float:right;position:absolute;right:10px}.btn-advanced-overlay[data-v-05f95e36]{padding:3px 5px;list-style-type:none;background-color:#fff;background-clip:padding-box;border-radius:8px;outline:none;box-shadow:0 6px 16px #00000014,0 3px 6px -4px #0000001f,0 9px 28px 8px #0000000d;display:flex;flex-direction:column}.btn-advanced-overlay .item[data-v-05f95e36]{padding:3px 5px}.unione-table-setting .unione-table-tools[data-v-c966c24c]{padding-bottom:10px}.unione-table-setting .unione-table-tools .btn[data-v-c966c24c]{margin:auto 5px}.unione-table-setting .unione-table-tools .btn.right[data-v-c966c24c]{float:right}.unione-table-setting .unione-table-tools .btn .bool-del[data-v-c966c24c]{display:none;position:absolute;margin-top:-25px;right:0;color:#000}.unione-table-setting .unione-table-tools .btn .bool-del[data-v-c966c24c]:hover{background-color:#f0f0f0}.unione-table-setting .unione-table-tools .btn.deleted[data-v-c966c24c]{color:#999;border-color:#999}.unione-table-setting .unione-table-tools .btn.deleted[data-v-c966c24c] span{text-decoration:line-through}.unione-table-setting .unione-table-tools .btn:hover .bool-del[data-v-c966c24c]{display:block}.unione-table-setting .unione-table-tools .selected-info[data-v-c966c24c]{margin:auto 5px;color:#2795f9;cursor:pointer}.unione-table-setting .unione-table-tools .selected-info[data-v-c966c24c]:hover{color:red;text-decoration:line-through}.unione-table-setting .unione-table-tools[data-v-c966c24c] .ant-btn-sm{height:27px}.unione-table-setting .unione-table-opts[data-v-c966c24c]{padding-bottom:10px}.unione-table-setting .unione-table-opts .btn[data-v-c966c24c]{margin:auto 5px}.unione-table-setting .unione-table-opts .btn.right[data-v-c966c24c]{float:right}.unione-table-setting .unione-table-opts .btn .btn-del[data-v-c966c24c]{display:none;position:absolute;margin-top:-25px;right:0;color:#000}.unione-table-setting .unione-table-opts .btn .btn-del[data-v-c966c24c]:hover{background-color:#f0f0f0}.unione-table-setting .unione-table-opts .btn.deleted[data-v-c966c24c]{color:#999;border-color:#999}.unione-table-setting .unione-table-opts .btn.deleted[data-v-c966c24c] span{text-decoration:line-through}.unione-table-setting .unione-table-opts .btn:hover .btn-del[data-v-c966c24c]{display:block}.unione-table-setting .unione-table-opts[data-v-c966c24c] .ant-btn-sm{height:27px}.unione-table-setting[data-v-c966c24c] .ant-table .ant-table-thead tr th{font-weight:400}.unione-table-setting[data-v-c966c24c] .ant-table .ant-table-tbody tr td{padding:3px}.unione-table-setting .edit-field[data-v-c966c24c]{width:100%;height:100%}.unione-table-setting .edit-field.empty[data-v-c966c24c]{position:absolute;top:0;left:0}.unione-table-setting .edit-field.empty[data-v-c966c24c] .ant-btn{padding:4px 7px;float:right}.unione-table-setting .edit-field[data-v-c966c24c] .ant-input-number{width:calc(100% - 5px)}.unione-table-setting .edit-field[data-v-c966c24c] .ant-select{width:100%}.unione-table-setting .edit-field[data-v-c966c24c] .ant-btn{padding:4px;float:right}.unione-table-setting .edit-field[data-v-c966c24c] .ant-checkbox{margin-top:8px}.unione-table-setting .edit-field .field-txt[data-v-c966c24c]{line-height:30px}.form-mix[data-v-c966c24c] .ant-form-item{margin-bottom:5px!important}.form-mix .checkbox-tips[data-v-c966c24c] .ant-checkbox-wrapper{color:#999}.form-mix[data-v-c966c24c] .ant-tabs-tabpane{max-height:calc(60vh - 60px);overflow-y:auto}.unione-table-list[data-v-a168b83b]{margin-top:10px}.unione-table-list .unione-table-tools[data-v-a168b83b]{padding-bottom:10px}.unione-table-list .unione-table-tools .btn[data-v-a168b83b]{margin:auto 5px}.unione-table-list .unione-table-tools .btn.right[data-v-a168b83b]{float:right}.unione-table-list .unione-table-tools .selected-info[data-v-a168b83b]{margin:auto 5px;color:#2795f9;cursor:pointer}.unione-table-list .unione-table-tools .selected-info[data-v-a168b83b]:hover{color:red;text-decoration:line-through}.unione-table-list .unione-table-tools[data-v-a168b83b] .ant-btn-sm{height:27px}.unione-table-list .unione-table-opts .opt[data-v-a168b83b]{margin:auto 2px}.unione-table-list .unione-table-opts .opt[data-v-a168b83b] .widget-setting{display:block}.unione-table-list .unione-table-opts .opt-more.small[data-v-a168b83b]{padding:0 5px 2px;height:24px}.unione-table-list .unione-table-opts .item[data-v-a168b83b] .widget-setting{display:block}.opt-more-overlay[data-v-a168b83b]{padding:3px 5px;list-style-type:none;background-color:#fff;background-clip:padding-box;border:1px solid #e6f7ff;border-radius:8px;outline:none;box-shadow:0 6px 16px #00000014,0 3px 6px -4px #0000001f,0 9px 28px 8px #0000000d}.opt-more-overlay.vertical[data-v-a168b83b]{display:flex;flex-direction:column}.opt-more-overlay .item[data-v-a168b83b]{padding:2px 6px}.dialog-mask{position:fixed;left:0;top:0;width:100%;height:100%;opacity:.5;background:#000;z-index:99}.dialog-container{position:fixed;inset:0;overflow:auto;z-index:999;margin:0;display:flex;justify-content:center;align-items:center}.dialog{position:absolute;padding:0 30px 30px;background:#fff;box-shadow:0 2px 12px #38383833;border:1px solid #e2e6ed;border-radius:2px}.dialog-title{position:relative;border-bottom:1px solid #e2e6ed;margin-bottom:30px;height:60px;display:flex;align-items:center;justify-content:space-between}.dialog-title i{width:16px;height:16px;cursor:pointer;display:inline-block;background:url(../../assets/images/close.svg)}.dialog-option__item{margin-bottom:18px;display:flex;align-items:center;justify-content:space-between}.dialog-option__item span{margin-right:12px;font-size:14px;color:#3d4757;position:relative}.dialog-option__item input,.dialog-option__item textarea,.dialog-option__item select{width:276px;height:30px;border-radius:2px;border:1px solid #d3d3d3;min-height:30px;padding:5px;box-sizing:border-box;outline:none;appearance:none;user-select:none;font-family:inherit}.dialog-option__item input:focus,.dialog-option__item textarea:focus{border-color:#4991f2}.dialog-option__item--require:before{content:"*";color:#f56c6c;margin-right:4px;position:absolute;left:-8px}.dialog-menu{display:flex;align-items:center;justify-content:flex-end}.dialog-menu button{position:relative;display:inline-block;border:1px solid #e2e6ed;border-radius:2px;background:#fff;line-height:22px;padding:0 16px;white-space:nowrap;cursor:pointer}.dialog-menu button:hover{background:#1937580a}.dialog-menu__cancel{margin-right:16px}.dialog-menu button[type=submit]{color:#fff;background:#4991f2;border-color:#4991f2}.dialog-menu button[type=submit]:hover{background:#5b9cf3;border-color:#5b9cf3}.unione-rich-toolbar[data-v-b97ae666]{width:100%;min-height:35px;top:0;z-index:9;display:flex;align-items:center;justify-content:left;background:#f2f4f7;box-shadow:0 2px 4px 0 transparent;flex-wrap:wrap}.unione-rich-toolbar ul[data-v-b97ae666]{list-style:none;padding:0}.unione-rich-toolbar .menu-divider[data-v-b97ae666]{width:1px;height:16px;margin:0 8px;display:inline-block;background-color:#cfd2d8}.unione-rich-toolbar .menu-item[data-v-b97ae666]{height:24px;min-width:24px;position:relative;cursor:pointer;display:flex;align-items:center;justify-content:center;margin:0 2px}.unione-rich-toolbar .menu-item[data-v-b97ae666]:hover{background:#1937580a}.unione-rich-toolbar .menu-item.active[data-v-b97ae666]{background:#19375814}.unione-rich-toolbar .menu-item i[data-v-b97ae666]{width:16px;height:16px;display:inline-block;background-repeat:no-repeat;background-size:100% 100%}.unione-rich-toolbar .menu-item>span[data-v-b97ae666]{width:16px;height:3px;display:inline-block;border:1px solid #e2e6ed}.unione-rich-toolbar .menu-item .select[data-v-b97ae666]{border:none;font-size:12px;line-height:24px;user-select:none}.unione-rich-toolbar .menu-item .select[data-v-b97ae666]:after{position:absolute;content:"";top:11px;width:0;height:0;right:2px;border-color:#767c85 transparent transparent;border-style:solid solid none;border-width:3px 3px 0}.unione-rich-toolbar .menu-item .options[data-v-b97ae666]{position:fixed;padding:10px;background:#fff;font-size:14px;box-shadow:0 2px 12px #38383833;border:1px solid #e2e6ed;border-radius:2px;display:none;z-index:1}.unione-rich-toolbar .menu-item .options.visible[data-v-b97ae666]{display:block}.unione-rich-toolbar .menu-item .options li[data-v-b97ae666]{margin:5px 0;user-select:none;transition:all .3s}.unione-rich-toolbar .menu-item .options li[data-v-b97ae666]:hover{background-color:#ebecef}.unione-rich-toolbar .menu-item .options li.active[data-v-b97ae666]{background-color:#e2e6ed}.unione-rich-toolbar .menu-item .menu-item__font[data-v-b97ae666]{width:65px;position:relative}.unione-rich-toolbar .menu-item .menu-item__size[data-v-b97ae666]{width:50px;text-align:center;position:relative}.unione-rich-toolbar .menu-item__font .select[data-v-b97ae666],.unione-rich-toolbar .menu-item__size .select[data-v-b97ae666]{width:100%;height:100%}.unione-rich-toolbar .menu-item__undo.no-allow[data-v-b97ae666],.unione-rich-toolbar .menu-item__redo.no-allow[data-v-b97ae666],.unione-rich-toolbar .menu-item>div.disable[data-v-b97ae666]{color:#c0c4cc;cursor:not-allowed;opacity:.4;pointer-events:none}.unione-rich-toolbar .menu-item__underline[data-v-b97ae666]{width:30px;position:relative}.unione-rich-toolbar .menu-item__underline>i[data-v-b97ae666]{flex-shrink:0}.unione-rich-toolbar .menu-item__underline .select[data-v-b97ae666]{width:100%;height:100%}.unione-rich-toolbar .menu-item__underline .options[data-v-b97ae666]{width:128px}.unione-rich-toolbar .menu-item__underline li[data-v-b97ae666]{padding:1px 5px}.unione-rich-toolbar .menu-item__underline li i[data-v-b97ae666]{pointer-events:none;width:100%}.unione-rich-toolbar .menu-item__color[data-v-b97ae666],.unione-rich-toolbar .menu-item__highlight[data-v-b97ae666]{display:flex;flex-direction:column}.unione-rich-toolbar .menu-item__color .input-color[data-v-b97ae666],.unione-rich-toolbar .menu-item__highlight .input-highlight[data-v-b97ae666]{width:1px;height:1px;visibility:hidden;outline:none;appearance:none}.unione-rich-toolbar .menu-item__color span[data-v-b97ae666]{background-color:#000}.unione-rich-toolbar .menu-item__highlight span[data-v-b97ae666]{background-color:#ff0}.unione-rich-toolbar .menu-item .menu-item__title[data-v-b97ae666]{width:60px;position:relative}.unione-rich-toolbar .menu-item__title .select[data-v-b97ae666]{width:40px;height:100%}.unione-rich-toolbar .menu-item__title i[data-v-b97ae666]{transform:translate(-5px)}.unione-rich-toolbar .menu-item__row-margin[data-v-b97ae666],.unione-rich-toolbar .menu-item__list[data-v-b97ae666]{position:relative}.unione-rich-toolbar .menu-item__list .options>ul>li[data-v-b97ae666] *{pointer-events:none;padding:0}.unione-rich-toolbar .menu-item__list .options>ul>li li[data-v-b97ae666]{margin-left:18px}.unione-rich-toolbar .menu-item__list .options>ul>li[data-list-style=checkbox] li[data-v-b97ae666]::marker{font-size:11px}.unione-rich-toolbar .menu-item__image input[data-v-b97ae666]{display:none}.unione-rich-toolbar .menu-item__table[data-v-b97ae666]{position:relative}.unione-rich-toolbar .menu-item__table__collapse[data-v-b97ae666]{width:270px;height:310px;background:#fff;box-shadow:0 2px 12px #38383833;border:1px solid #e2e6ed;box-sizing:border-box;border-radius:2px;position:fixed;display:none;z-index:99;top:25px;left:0;padding:14px 27px;cursor:auto}.unione-rich-toolbar .menu-item__table__collapse .table-close[data-v-b97ae666]{position:absolute;right:10px;top:5px;cursor:pointer}.unione-rich-toolbar .menu-item__table__collapse .table-close[data-v-b97ae666]:hover{color:#7d7e80}.unione-rich-toolbar .menu-item__table__collapse[data-v-b97ae666]:hover{background:#fff}.unione-rich-toolbar .menu-item__table__collapse .table-title[data-v-b97ae666]{display:flex;justify-content:flex-start;padding-bottom:5px;border-bottom:1px solid #e2e6ed}.unione-rich-toolbar .table-title span[data-v-b97ae666]{font-size:12px;color:#3d4757;display:inline;margin:0}.unione-rich-toolbar .table-panel[data-v-b97ae666]{cursor:pointer}.unione-rich-toolbar .table-panel .table-row[data-v-b97ae666]{display:flex;flex-wrap:nowrap;margin-top:10px;pointer-events:none}.unione-rich-toolbar .table-panel .table-cel[data-v-b97ae666]{width:16px;height:16px;box-sizing:border-box;border:1px solid #e2e6ed;background:#fff;position:relative;margin-right:6px;pointer-events:none}.unione-rich-toolbar .table-panel .table-cel.active[data-v-b97ae666]{border:1px solid rgba(73,145,242,.2);background:#4991f226}.unione-rich-toolbar .table-panel .table-row .table-cel[data-v-b97ae666]:last-child{margin-right:0}.unione-rich-toolbar .menu-item__separator[data-v-b97ae666]{position:relative}.unione-rich-toolbar .menu-item__separator .options[data-v-b97ae666]{width:128px}.unione-rich-toolbar .menu-item__separator li[data-v-b97ae666]{padding:1px 5px}.unione-rich-toolbar .menu-item__separator li i[data-v-b97ae666]{width:100%;pointer-events:none}.unione-rich-toolbar .menu-item__watermark[data-v-b97ae666],.unione-rich-toolbar .menu-item__control[data-v-b97ae666],.unione-rich-toolbar .menu-item__date[data-v-b97ae666]{position:relative}.unione-rich-toolbar .menu-item__date .options[data-v-b97ae666]{width:160px}.unione-rich-toolbar .menu-item .menu-item__control .options[data-v-b97ae666]{width:55px}.unione-rich-toolbar .menu-item__search[data-v-b97ae666]{position:relative}.unione-rich-toolbar .menu-item__search__collapse[data-v-b97ae666]{width:260px;height:72px;box-sizing:border-box;position:absolute;display:none;z-index:99;top:25px;left:0;background:#fff;box-shadow:0 5px 5px #e3dfdf}.unione-rich-toolbar .menu-item__search__collapse[data-v-b97ae666]:hover{background:#fff}.unione-rich-toolbar .menu-item__search__collapse>div[data-v-b97ae666]{width:250px;height:36px;padding:0 5px;line-height:36px;display:flex;align-items:center;justify-content:space-between;border-radius:4px}.unione-rich-toolbar .menu-item__search__collapse>div input[data-v-b97ae666]{width:205px;height:27px;appearance:none;background-color:#fff;background-image:none;border-radius:4px;border:1px solid #ebebeb;box-sizing:border-box;color:#606266;display:inline-block;line-height:27px;outline:none;padding:0 5px}.unione-rich-toolbar .menu-item__search__collapse>div span[data-v-b97ae666]{height:100%;color:#dcdfe6;font-size:25px;display:inline-block;border:0;padding:0 10px}.unione-rich-toolbar .menu-item__search__collapse__replace button[data-v-b97ae666]{display:inline-block;border:1px solid #e2e6ed;border-radius:2px;background:#fff;line-height:22px;padding:0 6px;white-space:nowrap;margin-left:4px;cursor:pointer;font-size:12px}.unione-rich-toolbar .menu-item__search__collapse__replace button[data-v-b97ae666]:hover{background:#1937580a}.unione-rich-toolbar .menu-item__search__collapse__search[data-v-b97ae666]{position:relative}.unione-rich-toolbar .menu-item__search__collapse__search label[data-v-b97ae666]{right:110px;font-size:12px;color:#3d4757;position:absolute}.unione-rich-toolbar .menu-item__search__collapse__search>input[data-v-b97ae666]{padding:5px 90px 5px 5px!important}.unione-rich-toolbar .menu-item__search__collapse__search>div[data-v-b97ae666]{width:28px;height:27px;display:flex;justify-content:center;align-items:center;position:absolute;border-left:1px solid #e2e6ed;transition:all .5s}.unione-rich-toolbar .menu-item__search__collapse__search>div[data-v-b97ae666]:hover{background-color:#1937580a}.unione-rich-toolbar .menu-item__search__collapse__search i[data-v-b97ae666]{width:6px;height:8px;transform:translateY(1px)}.unione-rich-toolbar .menu-item__search__collapse__search .arrow-left[data-v-b97ae666]{right:76px}.unione-rich-toolbar .menu-item__search__collapse__search .arrow-right[data-v-b97ae666]{right:48px}.unione-rich-text[data-v-108483bc]{height:100%;border-radius:7px}.unione-rich-text.run[data-v-108483bc],.unione-rich-text.edit[data-v-108483bc]{border:1px solid #d9d9d9}.unione-rich-text .canvas-editor[data-v-108483bc]{min-height:200px}.unione-rich-text[data-v-108483bc] .canvas-editor>div{width:100%!important}.unione-rich-text[data-v-108483bc] .canvas-editor>div>div>canvas{width:100%!important}.data-field-manage .btn[data-v-f6307a23]{margin-top:-50px;float:right}.data-field-manage .btn.btn-add[data-v-f6307a23]{margin-right:70px}.data-field-manage .btn.btn-delete[data-v-f6307a23]{margin-right:5px}.data-field-manage .edit-field[data-v-f6307a23]{width:100%;height:100%}.data-field-manage .edit-field.empty[data-v-f6307a23]{position:absolute;top:0;left:0}.data-field-manage .edit-field[data-v-f6307a23] .ant-input-number{width:calc(100% - 5px)}.data-field-manage .edit-field[data-v-f6307a23] .ant-select{width:100%}.data-field-manage[data-v-f6307a23] .ant-table-thead tr th,.data-field-setting[data-v-ef9b9849] .ant-table .ant-table-thead tr th{font-weight:400}.data-field-setting[data-v-ef9b9849] .ant-table .ant-table-tbody tr td{padding:3px}.data-field-setting .edit-field[data-v-ef9b9849]{width:100%;height:100%}.data-field-setting .edit-field.empty[data-v-ef9b9849]{position:absolute;top:0;left:0}.data-field-setting .edit-field.empty[data-v-ef9b9849] .ant-btn{padding:4px 7px;float:right}.data-field-setting .edit-field[data-v-ef9b9849] .ant-input-number{width:calc(100% - 5px)}.data-field-setting .edit-field[data-v-ef9b9849] .ant-select{width:100%}.data-field-setting .edit-field[data-v-ef9b9849] .ant-btn{padding:4px;float:right}.data-field-setting .edit-field[data-v-ef9b9849] .ant-checkbox{margin-top:8px}.data-field-setting .edit-field .field-txt[data-v-ef9b9849]{line-height:30px}.form-mix[data-v-ef9b9849] .ant-form-item{margin-bottom:5px!important}.form-mix .checkbox-tips[data-v-ef9b9849] .ant-checkbox-wrapper{color:#999}.data-define[data-v-6be2cc50]{height:100%;overflow-y:auto}.data-define.center[data-v-6be2cc50]{display:flex}.data-define .data-model-list[data-v-6be2cc50]{width:180px;height:100%;border-right:1px solid #d9d9d9;display:flex;align-items:flex-start;flex-direction:column;float:left}.data-define .data-model-list .title[data-v-6be2cc50]{height:35px;width:100%;cursor:pointer;line-height:35px;padding:0 5px}.data-define .data-model-list .title.slt[data-v-6be2cc50]{background-color:#e6f7ff;color:#2795f9}.data-define .data-model-list .title.btn-add[data-v-6be2cc50]{text-align:center;font-size:20px;margin-top:5px;margin-left:5px;border:1px solid #d9d9d9;width:calc(100% - 10px);line-height:30px}.data-define .data-model-list .title[data-v-6be2cc50]:hover{background-color:#e6f7ff;color:#2795f9}.data-define .data-model-form[data-v-6be2cc50]{display:inline-block;width:calc(100% - 180px);padding:0 10px}.data-define .data-model-form.center[data-v-6be2cc50]{margin:0 auto}.unione-page-setting .form-mix[data-v-2420ce7a] .ant-form-item{margin-bottom:5px!important}.unione-page-setting .form-mix .checkbox-tips[data-v-2420ce7a] .ant-checkbox-wrapper{color:#999}.unione-page-setting .form-mix[data-v-2420ce7a] .ant-tabs-tabpane{max-height:calc(60vh - 60px);overflow-y:auto}.unione-page-view[data-v-f792d0b4]{padding:10px;height:100%;overflow-y:auto}.unione-page-tree .form-warp .form-btns[data-v-969fb71b]{margin-bottom:10px}.load-table-form[data-v-165bc175] .query-field{width:300px}.data-field-manage[data-v-4020e3f0]{min-height:200px}.data-field-manage .btn[data-v-4020e3f0]{margin-top:-50px;float:right}.data-field-manage .btn.btn-add[data-v-4020e3f0]{margin-right:70px}.data-field-manage .btn.btn-delete[data-v-4020e3f0]{margin-right:5px}.data-field-manage .edit-field[data-v-4020e3f0]{width:100%;height:100%}.data-field-manage .edit-field.empty[data-v-4020e3f0]{position:absolute;top:0;left:0}.data-field-manage .edit-field[data-v-4020e3f0] .ant-input-number{width:calc(100% - 5px)}.data-field-manage .edit-field[data-v-4020e3f0] .ant-select{width:100%}.data-field-manage[data-v-4020e3f0] .ant-table-thead tr th{font-weight:400}.data-field-setting[data-v-d5938ab8]{min-height:200px}.data-field-setting[data-v-d5938ab8] .ant-table .ant-table-thead tr th{font-weight:400}.data-field-setting[data-v-d5938ab8] .ant-table .ant-table-tbody tr td{padding:3px}.data-field-setting .edit-field[data-v-d5938ab8]{width:100%;height:100%}.data-field-setting .edit-field.empty[data-v-d5938ab8]{position:absolute;top:0;left:0}.data-field-setting .edit-field.empty[data-v-d5938ab8] .ant-btn{padding:4px 7px;float:right}.data-field-setting .edit-field[data-v-d5938ab8] .ant-input-number{width:calc(100% - 5px)}.data-field-setting .edit-field[data-v-d5938ab8] .ant-select{width:100%}.data-field-setting .edit-field[data-v-d5938ab8] .ant-btn{padding:4px;float:right}.data-field-setting .edit-field[data-v-d5938ab8] .ant-checkbox{margin-top:8px}.data-field-setting .edit-field .field-txt[data-v-d5938ab8]{line-height:30px}.form-mix[data-v-d5938ab8] .ant-form-item{margin-bottom:5px!important}.form-mix .checkbox-tips[data-v-d5938ab8] .ant-checkbox-wrapper{color:#999}.field-setting-form[data-v-d5938ab8]{padding-top:10px}.field-setting-form[data-v-d5938ab8] .ant-input-number{width:100%}.field-setting-form.sort[data-v-d5938ab8] .ant-form-item{width:50%;display:inline-block}.field-setting-form.sort[data-v-d5938ab8] .ant-form-item .ant-form-item-label{width:50%;max-width:50%;flex:0 0 50%}.field-setting-form.sort[data-v-d5938ab8] .ant-form-item .ant-form-item-control{width:50%;max-width:50%}.data-field-fkey[data-v-84143692]{min-height:200px}.data-field-fkey[data-v-84143692] .ant-table-cell{font-weight:unset}.data-field-fkey .edit-field[data-v-84143692]{width:100%;height:100%}.data-field-fkey .edit-field.empty[data-v-84143692]{position:absolute;top:0;left:0}.data-field-fkey .edit-field[data-v-84143692] .ant-input-number{width:calc(100% - 5px)}.data-field-fkey .edit-field[data-v-84143692] .ant-select{width:100%}.data-filter[data-v-a600b93f]{height:100%;min-height:200px}.data-filter .filter-box[data-v-a600b93f]{width:calc(25% - 10px);margin:5px;height:100px;display:inline-flex}.data-filter .filter-box[data-v-a600b93f] .ant-card-body{width:100%}.data-filter .filter-box .action[data-v-a600b93f]{margin-top:10px;text-align:center}.data-filter .filter-box .action .ant-btn[data-v-a600b93f]{width:30%;margin:auto 10px}.data-filter .filter-box.btn-add[data-v-a600b93f]{line-height:80px;cursor:pointer}.data-filter .filter-box.btn-add[data-v-a600b93f] .ant-card-body{text-align:center}.data-filter .filter-box.btn-add .btn[data-v-a600b93f]{font-size:30px;color:#00000080}.data-filter .filter-box[data-v-a600b93f]:hover{background-color:#e6f7ff}.data-filter[data-v-a600b93f] .ant-card-bordered{border:1px solid #d9d9d9}.data-filter .btn-tmpl[data-v-a600b93f]{position:absolute;right:-7px;cursor:pointer}.form-mix[data-v-a600b93f] .ant-form-item{margin-bottom:5px!important}.form-mix[data-v-a600b93f] .ant-form-item .ant-form-item-explain-error{right:5px;margin-top:-27px;position:absolute}.form-mix .checkbox-tips[data-v-a600b93f] .ant-checkbox-wrapper{color:#999}.data-define-edit[data-v-3eeab6e6]{overflow-y:auto;height:100%}.data-define-edit[data-v-3eeab6e6] .page-setting-section .title{font-size:14px}.data-define-edit[data-v-3eeab6e6] .page-setting-section .reactive{font-size:12px}.data-define-edit[data-v-3eeab6e6] .page-setting-section.open .type{margin-top:6px!important}.data-define-edit[data-v-3eeab6e6] .page-setting-section.close .title,.data-define-edit[data-v-3eeab6e6] .page-setting-section.close .reactive{color:#00bd7e}.data-define-edit .actions[data-v-3eeab6e6]{width:100%;bottom:10px;text-align:center}.data-define-edit .actions .ant-btn[data-v-3eeab6e6]{margin:15px 10px}
1
+ :root{--vt-c-white: #ffffff;--vt-c-white-soft: #f8f8f8;--vt-c-white-mute: #f2f2f2;--vt-c-black: #181818;--vt-c-black-soft: #222222;--vt-c-black-mute: #282828;--vt-c-indigo: #2c3e50;--vt-c-divider-light-1: rgba(60, 60, 60, .29);--vt-c-divider-light-2: rgba(60, 60, 60, .12);--vt-c-divider-dark-1: rgba(84, 84, 84, .65);--vt-c-divider-dark-2: rgba(84, 84, 84, .48);--vt-c-text-light-1: var(--vt-c-indigo);--vt-c-text-light-2: rgba(60, 60, 60, .66);--vt-c-text-dark-1: var(--vt-c-white);--vt-c-text-dark-2: rgba(235, 235, 235, .64)}:root{--color-background: var(--vt-c-white);--color-background-soft: var(--vt-c-white-soft);--color-background-mute: var(--vt-c-white-mute);--color-border: var(--vt-c-divider-light-2);--color-border-hover: var(--vt-c-divider-light-1);--color-heading: var(--vt-c-text-light-1);--color-text: var(--vt-c-text-light-1);--section-gap: 160px}@media (prefers-color-scheme: dark){:root{--color-background: var(--vt-c-black);--color-background-soft: var(--vt-c-black-soft);--color-background-mute: var(--vt-c-black-mute);--color-border: var(--vt-c-divider-dark-2);--color-border-hover: var(--vt-c-divider-dark-1);--color-heading: var(--vt-c-text-dark-1);--color-text: var(--vt-c-text-dark-2)}}*,*:before,*:after{box-sizing:border-box;margin:0;font-weight:400}body{min-height:100vh;color:var(--color-text);background:var(--color-background);transition:color .5s,background-color .5s;line-height:1.6;font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;font-size:15px;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}::-webkit-scrollbar{width:7px;height:7px}::-webkit-scrollbar-track{background-color:#fff;border-radius:3px}::-webkit-scrollbar-thumb{background-color:#1677ff;border-radius:6px;border:2px solid #f1f1f1;background-color:transparent}::-webkit-scrollbar-thumb:hover{background-color:#1677ff}#app{width:100vw;height:100vh;font-weight:400}.ant-switch{background-color:#1677ff}.unione-page{padding:10px 5px}.unione-page.edit .page-setting{cursor:pointer;position:absolute;right:12px;margin-top:25px;display:none}.unione-page.edit .page-setting:hover{font-size:20px;margin-right:-2px;margin-top:23px}.unione-page.edit .btn-save{cursor:pointer;position:absolute;right:12px;margin-top:55px;display:none}.unione-page.edit .btn-save:hover{font-size:20px;margin-right:-2px;margin-top:52px}.unione-page.edit:hover .page-setting{display:block;animation:rotates 2s linear infinite}.unione-page.edit:hover .btn-save{display:block}.unione-page .btn-edit{cursor:pointer;position:absolute;right:12px;margin-top:-5px}.unione-page .btn-edit:hover{font-size:20px;margin-right:-2px;margin-top:-7px}@keyframes rotates{0%{-webkit-transform:rotate(0deg)}30%{-webkit-transform:rotate(-90deg)}50%{-webkit-transform:rotate(-180deg)}70%{-webkit-transform:rotate(-270deg)}to{-webkit-transform:rotate(-360deg)}}.page-setting-dialog{height:75vh;overflow-y:auto}.unione-page-form{padding:10px;height:100%;overflow-y:auto}.unione-page-form .form-btns{width:100%;margin:10px;text-align:center}.unione-page-form .form-btns .btn{margin:auto 5px}.unione-page-tree{display:flex;height:100%;overflow-y:auto}.unione-page-tree .tree-warp{width:250px;padding-right:10px;border-right:1px solid #d9d9d9}.unione-page-tree .tree-warp .input-search{margin:0 0 5px 5px}.unione-page-tree .tree-warp .unione-btn-add{margin-bottom:5px}.unione-page-tree .tree-warp .ant-tree-icon__customize+.ant-tree-title{width:calc(100% - 25px);display:inline-block}.unione-page-tree .tree-warp .ant-tree-icon__customize:empty+.ant-tree-title{width:100%}.unione-page-tree .tree-warp .node-label{width:100%}.unione-page-tree .tree-warp .node-opts{float:right}.unione-page-tree .tree-warp .node-opts .unione-btn{margin:0}.unione-page-tree .form-warp{width:calc(100% - 250px)}.unione-page-tree .form-warp .form-btns{width:100%;margin:10px;text-align:center}.unione-page-tree .form-warp .form-btns .btn{margin:auto 5px}.unione-page-list{padding:10px;height:100%;overflow-y:auto}.ant-table .ant-table-content{border-inline-start:1px solid #cfcfcf;border-top-left-radius:8px;border-top-right-radius:8px;overflow:hidden}.ant-table .ant-table-content table{border-top:1px solid #cfcfcf!important}.ant-table .ant-table-content .ant-table-thead .ant-table-cell{background:#f0f0f0;border-inline-end:1px solid #cfcfcf!important;border-bottom:1px solid #cfcfcf!important}.ant-table .ant-table-content .ant-table-thead .ant-table-cell .ant-table-column-title{font-weight:600}.ant-table .ant-table-content .ant-table-tbody .ant-table-cell{border-inline-end:1px solid #cfcfcf!important;border-bottom:1px solid #cfcfcf!important}.ant-table .ant-table-content .ant-table-tbody .ant-table-row:hover,.ant-table .ant-table-content .ant-table-tbody .ant-table-row:hover .ant-table-cell{background-color:#e6f7ff;color:#2795f9}.ant-table .ant-table-container .ant-table-thead table{border-top:1px solid #cfcfcf!important}.ant-table .ant-table-container .ant-table-thead .ant-table-cell{background:#f0f0f0;border-inline-end:1px solid #cfcfcf!important;border-bottom:1px solid #cfcfcf!important}.ant-table .ant-table-container .ant-table-tbody table{border-top:1px solid #cfcfcf!important}.ant-table .ant-table-container .ant-table-tbody .ant-table-cell{border-inline-end:1px solid #cfcfcf!important;border-bottom:1px solid #cfcfcf!important}.ant-table .ant-table-container .ant-table-tbody .ant-table-row:hover,.ant-table .ant-table-container .ant-table-tbody .ant-table-row:hover .ant-table-cell{background-color:#e6f7ff;color:#2795f9}.unione-iframe{border:none;width:100%;height:100%}.ck .ck-powered-by{display:none!important}.unione-widget.edit .widget-setting[data-v-17b517f5]{cursor:pointer;float:right;margin-right:-6px;margin-top:6px;display:none}.unione-widget.edit .widget-setting[data-v-17b517f5]:hover{font-size:20px;margin-right:-10px;margin-top:6px;animation:rotates-17b517f5 1s linear infinite!important}.unione-widget.edit[data-v-17b517f5]:hover{background-color:#e6f7ff}.unione-widget.edit:hover>.widget-setting[data-v-17b517f5]{display:block;animation:rotates-17b517f5 2s linear infinite}@keyframes rotates-17b517f5{0%{-webkit-transform:rotate(0deg)}30%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}70%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.widget-setting-dialog[data-v-17b517f5]{height:75vh;overflow-y:auto}.form-mix[data-v-75055a2b] .ant-form-item{margin-bottom:5px!important}.form-mix .checkbox-tips[data-v-75055a2b] .ant-checkbox-wrapper{color:#999}.form-mix[data-v-75055a2b] .ant-tabs-tabpane{max-height:calc(60vh - 60px);overflow-y:auto}.btn-setting-form[data-v-75055a2b]{min-height:400px}.btn-setting-form .param-btn[data-v-75055a2b]{margin:auto 10px}.btn-setting-form .edit-field[data-v-75055a2b]{width:100%;height:100%}.btn-setting-form .edit-field.empty[data-v-75055a2b]{position:absolute;top:0;left:0}.btn-setting-form .edit-field.empty[data-v-75055a2b] .ant-btn{padding:4px 7px;float:right}.btn-setting-form .edit-field[data-v-75055a2b] .ant-input-number{width:calc(100% - 5px)}.btn-setting-form .edit-field[data-v-75055a2b] .ant-select{width:100%}.btn-setting-form .edit-field[data-v-75055a2b] .ant-btn{padding:4px;float:right}.btn-setting-form .edit-field[data-v-75055a2b] .ant-checkbox{margin-top:8px}.btn-setting-form .edit-field .field-txt[data-v-75055a2b]{line-height:30px}.unione-btn[data-v-02b17517]{display:inline-block;margin:auto 5px}.unione-btn.unione-btn-block[data-v-02b17517]{width:100%}.unione-btn[data-v-02b17517] .widget-setting{position:absolute;z-index:1;transform:scale(.8);margin-top:-5px!important;margin-left:-5px}.unione-btn-drawer .ant-drawer-body[data-v-02b17517]{padding:5px!important;background-color:red}.dropdown-overlay[data-v-02b17517]{padding:3px 5px;list-style-type:none;background-color:#fff;background-clip:padding-box;border:1px solid #e6f7ff;border-radius:8px;outline:none;box-shadow:0 6px 16px #00000014,0 3px 6px -4px #0000001f,0 9px 28px 8px #0000000d}.dropdown-overlay.vertical[data-v-02b17517]{display:flex;flex-direction:column}.dropdown-overlay .item[data-v-02b17517]{padding:2px 6px}.unione-layout-section .head[data-v-e75e9a84]{padding:5px 15px}.unione-layout-section .head.right[data-v-e75e9a84]{text-align:right}.unione-layout-section .head.reactive[data-v-e75e9a84]{cursor:pointer}.unione-layout-section .head .title[data-v-e75e9a84]{font-size:17px;display:inline-block}.unione-layout-section .head .title .type[data-v-e75e9a84]{background-color:#1677ff;display:inline-block;width:12px;height:12px;margin-right:2px}.unione-layout-section .head .title .type.circle[data-v-e75e9a84]{border-radius:6px}.unione-layout-section .head .title .type.square[data-v-e75e9a84]{margin-right:2px}.unione-layout-section .head .title .type.line[data-v-e75e9a84]{width:5px;margin-right:2px}.unione-layout-section .head .opts[data-v-e75e9a84]{float:right}.unione-layout-section .head .reactive[data-v-e75e9a84]{float:right;margin-top:3px}.unione-form-setting .unione-form-btns[data-v-c0f75bb9]{padding-bottom:10px}.unione-form-setting .unione-form-btns .btn[data-v-c0f75bb9]{margin:auto 5px}.unione-form-setting .unione-form-btns .btn.right[data-v-c0f75bb9]{float:right}.unione-form-setting .unione-form-btns .btn .btn-del[data-v-c0f75bb9]{display:none;position:absolute;margin-top:-25px;right:0;color:#000}.unione-form-setting .unione-form-btns .btn .btn-del[data-v-c0f75bb9]:hover{background-color:#f0f0f0}.unione-form-setting .unione-form-btns .btn.deleted[data-v-c0f75bb9]{color:#999;border-color:#999}.unione-form-setting .unione-form-btns .btn.deleted[data-v-c0f75bb9] span{text-decoration:line-through}.unione-form-setting .unione-form-btns .btn:hover .btn-del[data-v-c0f75bb9]{display:block}.unione-form-setting .unione-form-btns .selected-info[data-v-c0f75bb9]{margin:auto 5px;color:#2795f9;cursor:pointer}.unione-form-setting .unione-form-btns .selected-info[data-v-c0f75bb9]:hover{color:red;text-decoration:line-through}.unione-form-setting .unione-form-btns[data-v-c0f75bb9] .ant-btn-sm{height:27px}.unione-form-setting .unione-form-opts[data-v-c0f75bb9]{padding-bottom:10px}.unione-form-setting .unione-form-opts .btn[data-v-c0f75bb9]{margin:auto 5px}.unione-form-setting .unione-form-opts .btn.right[data-v-c0f75bb9]{float:right}.unione-form-setting .unione-form-opts .btn .btn-del[data-v-c0f75bb9]{display:none;position:absolute;margin-top:-25px;right:0;color:#000}.unione-form-setting .unione-form-opts .btn .btn-del[data-v-c0f75bb9]:hover{background-color:#f0f0f0}.unione-form-setting .unione-form-opts .btn.deleted[data-v-c0f75bb9]{color:#999;border-color:#999}.unione-form-setting .unione-form-opts .btn.deleted[data-v-c0f75bb9] span{text-decoration:line-through}.unione-form-setting .unione-form-opts .btn:hover .btn-del[data-v-c0f75bb9]{display:block}.unione-form-setting .unione-form-opts[data-v-c0f75bb9] .ant-btn-sm{height:27px}.unione-form-setting[data-v-c0f75bb9] .ant-table .ant-table-thead tr th{font-weight:400}.unione-form-setting[data-v-c0f75bb9] .ant-table .ant-table-tbody tr td{padding:3px}.unione-form-setting .edit-field[data-v-c0f75bb9]{width:100%;height:100%}.unione-form-setting .edit-field.empty[data-v-c0f75bb9]{position:absolute;top:0;left:0}.unione-form-setting .edit-field.empty[data-v-c0f75bb9] .ant-btn{padding:4px 7px;float:right}.unione-form-setting .edit-field[data-v-c0f75bb9] .ant-input-number{width:calc(100% - 5px)}.unione-form-setting .edit-field[data-v-c0f75bb9] .ant-select{width:100%}.unione-form-setting .edit-field[data-v-c0f75bb9] .ant-btn{padding:4px;float:right}.unione-form-setting .edit-field[data-v-c0f75bb9] .ant-checkbox{margin-top:8px}.unione-form-setting .edit-field .field-txt[data-v-c0f75bb9]{line-height:30px}.form-mix[data-v-c0f75bb9] .ant-form-item{margin-bottom:5px!important}.form-mix .checkbox-tips[data-v-c0f75bb9] .ant-checkbox-wrapper{color:#999}.form-mix[data-v-c0f75bb9] .ant-tabs-tabpane{max-height:calc(60vh - 60px);overflow-y:auto}.unione-form-widget[data-v-12b27d37]{padding:10px}.unione-form-widget[data-v-12b27d37] .widget-setting{margin-top:-5px!important}.unione-form-widget .unione-form[data-v-12b27d37]{display:flex;flex-direction:row}.unione-form-widget .unione-form.edit[data-v-12b27d37]{padding:0 20px}.unione-form-widget .unione-form .form-left[data-v-12b27d37]{width:30%}.unione-form-widget .unione-form .form-warp[data-v-12b27d37]{width:100%}.unione-form-widget .unione-form .form-right[data-v-12b27d37]{width:30%}.unione-form-widget .unione-form .unione-widget[data-v-12b27d37]{display:block}.unione-form-widget .unione-form .unione-widget.all-line[data-v-12b27d37]{width:100%!important}.unione-form-widget .unione-form .unione-widget.2in_line[data-v-12b27d37]{width:66.66%!important}.unione-form-widget .unione-form.form-layout-col-1 .unione-widget[data-v-12b27d37]{width:100%}.unione-form-widget .unione-form.form-layout-col-2 .unione-widget[data-v-12b27d37]{width:50%;display:inline-block}.unione-form-widget .unione-form.form-layout-col-3 .unione-widget[data-v-12b27d37]{width:33.33%;display:inline-block}.unione-form-widget .form-btns[data-v-12b27d37]{width:100%;margin:10px;text-align:center}.unione-form-widget .form-btns .btn[data-v-12b27d37]{margin:auto 5px}.unione-form-item .ant-form-item[data-v-20adb860]{margin-bottom:6px}.unione-form-item .ant-form-item[data-v-20adb860] .ant-form-item-explain-error{right:5px;margin-top:-27px;position:absolute}.unione-query-setting .unione-query-tools[data-v-ce575063]{padding-bottom:10px}.unione-query-setting .unione-query-tools .btn[data-v-ce575063]{margin:auto 5px}.unione-query-setting .unione-query-tools .btn.right[data-v-ce575063]{float:right}.unione-query-setting .unione-query-tools .btn .bool-del[data-v-ce575063]{display:none;position:absolute;margin-top:-25px;right:0;color:#000}.unione-query-setting .unione-query-tools .btn .bool-del[data-v-ce575063]:hover{background-color:#f0f0f0}.unione-query-setting .unione-query-tools .btn.deleted[data-v-ce575063]{color:#999;border-color:#999}.unione-query-setting .unione-query-tools .btn.deleted[data-v-ce575063] span{text-decoration:line-through}.unione-query-setting .unione-query-tools .btn:hover .bool-del[data-v-ce575063]{display:block}.unione-query-setting .unione-query-tools .selected-info[data-v-ce575063]{margin:auto 5px;color:#2795f9;cursor:pointer}.unione-query-setting .unione-query-tools .selected-info[data-v-ce575063]:hover{color:red;text-decoration:line-through}.unione-query-setting .unione-query-tools[data-v-ce575063] .ant-btn-sm{height:27px}.unione-query-setting .unione-query-opts[data-v-ce575063]{padding-bottom:10px}.unione-query-setting .unione-query-opts .btn[data-v-ce575063]{margin:auto 5px}.unione-query-setting .unione-query-opts .btn.right[data-v-ce575063]{float:right}.unione-query-setting .unione-query-opts .btn .btn-del[data-v-ce575063]{display:none;position:absolute;margin-top:-25px;right:0;color:#000}.unione-query-setting .unione-query-opts .btn .btn-del[data-v-ce575063]:hover{background-color:#f0f0f0}.unione-query-setting .unione-query-opts .btn.deleted[data-v-ce575063]{color:#999;border-color:#999}.unione-query-setting .unione-query-opts .btn.deleted[data-v-ce575063] span{text-decoration:line-through}.unione-query-setting .unione-query-opts .btn:hover .btn-del[data-v-ce575063]{display:block}.unione-query-setting .unione-query-opts[data-v-ce575063] .ant-btn-sm{height:27px}.unione-query-setting[data-v-ce575063] .ant-table .ant-table-thead tr th{font-weight:400}.unione-query-setting[data-v-ce575063] .ant-table .ant-table-tbody tr td{padding:3px}.unione-query-setting .edit-field[data-v-ce575063]{width:100%;height:100%}.unione-query-setting .edit-field.empty[data-v-ce575063]{position:absolute;top:0;left:0}.unione-query-setting .edit-field.empty[data-v-ce575063] .ant-btn{padding:4px 7px;float:right}.unione-query-setting .edit-field[data-v-ce575063] .ant-input-number{width:calc(100% - 5px)}.unione-query-setting .edit-field[data-v-ce575063] .ant-select{width:100%}.unione-query-setting .edit-field[data-v-ce575063] .ant-btn{padding:4px;float:right}.unione-query-setting .edit-field[data-v-ce575063] .ant-checkbox{margin-top:8px}.unione-query-setting .edit-field .field-txt[data-v-ce575063]{line-height:30px}.form-mix[data-v-ce575063] .ant-form-item{margin-bottom:5px!important}.form-mix .checkbox-tips[data-v-ce575063] .ant-checkbox-wrapper{color:#999}.form-mix[data-v-ce575063] .ant-tabs-tabpane{max-height:calc(60vh - 60px);overflow-y:auto}.unione-query-form .query-field[data-v-05f95e36]{display:inline-block;margin-bottom:5px;min-width:250px;width:25%}.unione-query-form.edit .query-field[data-v-05f95e36]{width:calc(25% - 7px)}.unione-query-form .query-btn[data-v-05f95e36]{display:inline-block;white-space:nowrap}.unione-query-form .query-btn .btn[data-v-05f95e36]{margin:auto 5px}.unione-query-form .query-btn .btn.save-search[data-v-05f95e36]{float:right;position:absolute;right:10px}.btn-advanced-overlay[data-v-05f95e36]{padding:3px 5px;list-style-type:none;background-color:#fff;background-clip:padding-box;border-radius:8px;outline:none;box-shadow:0 6px 16px #00000014,0 3px 6px -4px #0000001f,0 9px 28px 8px #0000000d;display:flex;flex-direction:column}.btn-advanced-overlay .item[data-v-05f95e36]{padding:3px 5px}.unione-table-setting .unione-table-tools[data-v-c966c24c]{padding-bottom:10px}.unione-table-setting .unione-table-tools .btn[data-v-c966c24c]{margin:auto 5px}.unione-table-setting .unione-table-tools .btn.right[data-v-c966c24c]{float:right}.unione-table-setting .unione-table-tools .btn .bool-del[data-v-c966c24c]{display:none;position:absolute;margin-top:-25px;right:0;color:#000}.unione-table-setting .unione-table-tools .btn .bool-del[data-v-c966c24c]:hover{background-color:#f0f0f0}.unione-table-setting .unione-table-tools .btn.deleted[data-v-c966c24c]{color:#999;border-color:#999}.unione-table-setting .unione-table-tools .btn.deleted[data-v-c966c24c] span{text-decoration:line-through}.unione-table-setting .unione-table-tools .btn:hover .bool-del[data-v-c966c24c]{display:block}.unione-table-setting .unione-table-tools .selected-info[data-v-c966c24c]{margin:auto 5px;color:#2795f9;cursor:pointer}.unione-table-setting .unione-table-tools .selected-info[data-v-c966c24c]:hover{color:red;text-decoration:line-through}.unione-table-setting .unione-table-tools[data-v-c966c24c] .ant-btn-sm{height:27px}.unione-table-setting .unione-table-opts[data-v-c966c24c]{padding-bottom:10px}.unione-table-setting .unione-table-opts .btn[data-v-c966c24c]{margin:auto 5px}.unione-table-setting .unione-table-opts .btn.right[data-v-c966c24c]{float:right}.unione-table-setting .unione-table-opts .btn .btn-del[data-v-c966c24c]{display:none;position:absolute;margin-top:-25px;right:0;color:#000}.unione-table-setting .unione-table-opts .btn .btn-del[data-v-c966c24c]:hover{background-color:#f0f0f0}.unione-table-setting .unione-table-opts .btn.deleted[data-v-c966c24c]{color:#999;border-color:#999}.unione-table-setting .unione-table-opts .btn.deleted[data-v-c966c24c] span{text-decoration:line-through}.unione-table-setting .unione-table-opts .btn:hover .btn-del[data-v-c966c24c]{display:block}.unione-table-setting .unione-table-opts[data-v-c966c24c] .ant-btn-sm{height:27px}.unione-table-setting[data-v-c966c24c] .ant-table .ant-table-thead tr th{font-weight:400}.unione-table-setting[data-v-c966c24c] .ant-table .ant-table-tbody tr td{padding:3px}.unione-table-setting .edit-field[data-v-c966c24c]{width:100%;height:100%}.unione-table-setting .edit-field.empty[data-v-c966c24c]{position:absolute;top:0;left:0}.unione-table-setting .edit-field.empty[data-v-c966c24c] .ant-btn{padding:4px 7px;float:right}.unione-table-setting .edit-field[data-v-c966c24c] .ant-input-number{width:calc(100% - 5px)}.unione-table-setting .edit-field[data-v-c966c24c] .ant-select{width:100%}.unione-table-setting .edit-field[data-v-c966c24c] .ant-btn{padding:4px;float:right}.unione-table-setting .edit-field[data-v-c966c24c] .ant-checkbox{margin-top:8px}.unione-table-setting .edit-field .field-txt[data-v-c966c24c]{line-height:30px}.form-mix[data-v-c966c24c] .ant-form-item{margin-bottom:5px!important}.form-mix .checkbox-tips[data-v-c966c24c] .ant-checkbox-wrapper{color:#999}.form-mix[data-v-c966c24c] .ant-tabs-tabpane{max-height:calc(60vh - 60px);overflow-y:auto}.unione-table-list[data-v-ea916a8b]{margin-top:10px}.unione-table-list .unione-table-tools[data-v-ea916a8b]{padding-bottom:10px}.unione-table-list .unione-table-tools .btn[data-v-ea916a8b]{margin:auto 5px}.unione-table-list .unione-table-tools .btn.right[data-v-ea916a8b]{float:right}.unione-table-list .unione-table-tools .selected-info[data-v-ea916a8b]{margin:auto 5px;color:#2795f9;cursor:pointer}.unione-table-list .unione-table-tools .selected-info[data-v-ea916a8b]:hover{color:red;text-decoration:line-through}.unione-table-list .unione-table-tools[data-v-ea916a8b] .ant-btn-sm{height:27px}.unione-table-list .unione-table-opts .opt[data-v-ea916a8b]{margin:auto 2px}.unione-table-list .unione-table-opts .opt[data-v-ea916a8b] .widget-setting{display:block}.unione-table-list .unione-table-opts .opt-more.small[data-v-ea916a8b]{padding:0 5px 2px;height:24px}.unione-table-list .unione-table-opts .item[data-v-ea916a8b] .widget-setting{display:block}.opt-more-overlay[data-v-ea916a8b]{padding:3px 5px;list-style-type:none;background-color:#fff;background-clip:padding-box;border:1px solid #e6f7ff;border-radius:8px;outline:none;box-shadow:0 6px 16px #00000014,0 3px 6px -4px #0000001f,0 9px 28px 8px #0000000d}.opt-more-overlay.vertical[data-v-ea916a8b]{display:flex;flex-direction:column}.opt-more-overlay .item[data-v-ea916a8b]{padding:2px 6px}.dialog-mask{position:fixed;left:0;top:0;width:100%;height:100%;opacity:.5;background:#000;z-index:99}.dialog-container{position:fixed;inset:0;overflow:auto;z-index:999;margin:0;display:flex;justify-content:center;align-items:center}.dialog{position:absolute;padding:0 30px 30px;background:#fff;box-shadow:0 2px 12px #38383833;border:1px solid #e2e6ed;border-radius:2px}.dialog-title{position:relative;border-bottom:1px solid #e2e6ed;margin-bottom:30px;height:60px;display:flex;align-items:center;justify-content:space-between}.dialog-title i{width:16px;height:16px;cursor:pointer;display:inline-block;background:url(../../assets/images/close.svg)}.dialog-option__item{margin-bottom:18px;display:flex;align-items:center;justify-content:space-between}.dialog-option__item span{margin-right:12px;font-size:14px;color:#3d4757;position:relative}.dialog-option__item input,.dialog-option__item textarea,.dialog-option__item select{width:276px;height:30px;border-radius:2px;border:1px solid #d3d3d3;min-height:30px;padding:5px;box-sizing:border-box;outline:none;appearance:none;user-select:none;font-family:inherit}.dialog-option__item input:focus,.dialog-option__item textarea:focus{border-color:#4991f2}.dialog-option__item--require:before{content:"*";color:#f56c6c;margin-right:4px;position:absolute;left:-8px}.dialog-menu{display:flex;align-items:center;justify-content:flex-end}.dialog-menu button{position:relative;display:inline-block;border:1px solid #e2e6ed;border-radius:2px;background:#fff;line-height:22px;padding:0 16px;white-space:nowrap;cursor:pointer}.dialog-menu button:hover{background:#1937580a}.dialog-menu__cancel{margin-right:16px}.dialog-menu button[type=submit]{color:#fff;background:#4991f2;border-color:#4991f2}.dialog-menu button[type=submit]:hover{background:#5b9cf3;border-color:#5b9cf3}.unione-rich-toolbar[data-v-9be2b83f]{width:100%;min-height:35px;top:0;z-index:9;display:flex;align-items:center;justify-content:left;background:#f2f4f7;box-shadow:0 2px 4px 0 transparent;flex-wrap:wrap;border:1px solid #d9d9d9;border-top-left-radius:6px;border-top-right-radius:6px;border-bottom:none}.unione-rich-toolbar ul[data-v-9be2b83f]{list-style:none;padding:0}.unione-rich-toolbar .menu-divider[data-v-9be2b83f]{width:1px;height:16px;margin:0 8px;display:inline-block;background-color:#cfd2d8}.unione-rich-toolbar .menu-item[data-v-9be2b83f]{height:24px;min-width:24px;position:relative;cursor:pointer;display:flex;align-items:center;justify-content:center;margin:0 2px}.unione-rich-toolbar .menu-item[data-v-9be2b83f]:hover{background:#1937580a}.unione-rich-toolbar .menu-item.active[data-v-9be2b83f]{background:#19375814}.unione-rich-toolbar .menu-item i[data-v-9be2b83f]{width:16px;height:16px;display:inline-block;background-repeat:no-repeat;background-size:100% 100%}.unione-rich-toolbar .menu-item>span[data-v-9be2b83f]{width:16px;height:3px;display:inline-block;border:1px solid #e2e6ed}.unione-rich-toolbar .menu-item .select[data-v-9be2b83f]{border:none;font-size:12px;line-height:24px;user-select:none}.unione-rich-toolbar .menu-item .select[data-v-9be2b83f]:after{position:absolute;content:"";top:11px;width:0;height:0;right:2px;border-color:#767c85 transparent transparent;border-style:solid solid none;border-width:3px 3px 0}.unione-rich-toolbar .menu-item .options[data-v-9be2b83f]{position:fixed;padding:10px;background:#fff;font-size:14px;box-shadow:0 2px 12px #38383833;border:1px solid #e2e6ed;border-radius:2px;display:none;z-index:1}.unione-rich-toolbar .menu-item .options.visible[data-v-9be2b83f]{display:block}.unione-rich-toolbar .menu-item .options li[data-v-9be2b83f]{margin:5px 0;user-select:none;transition:all .3s}.unione-rich-toolbar .menu-item .options li[data-v-9be2b83f]:hover{background-color:#ebecef}.unione-rich-toolbar .menu-item .options li.active[data-v-9be2b83f]{background-color:#e2e6ed}.unione-rich-toolbar .menu-item .menu-item__font[data-v-9be2b83f]{width:65px;position:relative}.unione-rich-toolbar .menu-item .menu-item__size[data-v-9be2b83f]{width:50px;text-align:center;position:relative}.unione-rich-toolbar .menu-item__font .select[data-v-9be2b83f],.unione-rich-toolbar .menu-item__size .select[data-v-9be2b83f]{width:100%;height:100%}.unione-rich-toolbar .menu-item__undo.no-allow[data-v-9be2b83f],.unione-rich-toolbar .menu-item__redo.no-allow[data-v-9be2b83f],.unione-rich-toolbar .menu-item>div.disable[data-v-9be2b83f]{color:#c0c4cc;cursor:not-allowed;opacity:.4;pointer-events:none}.unione-rich-toolbar .menu-item__underline[data-v-9be2b83f]{width:30px;position:relative}.unione-rich-toolbar .menu-item__underline>i[data-v-9be2b83f]{flex-shrink:0}.unione-rich-toolbar .menu-item__underline .select[data-v-9be2b83f]{width:100%;height:100%}.unione-rich-toolbar .menu-item__underline .options[data-v-9be2b83f]{width:128px}.unione-rich-toolbar .menu-item__underline li[data-v-9be2b83f]{padding:1px 5px}.unione-rich-toolbar .menu-item__underline li i[data-v-9be2b83f]{pointer-events:none;width:100%}.unione-rich-toolbar .menu-item__color[data-v-9be2b83f],.unione-rich-toolbar .menu-item__highlight[data-v-9be2b83f]{display:flex;flex-direction:column}.unione-rich-toolbar .menu-item__color .input-color[data-v-9be2b83f],.unione-rich-toolbar .menu-item__highlight .input-highlight[data-v-9be2b83f]{width:1px;height:1px;visibility:hidden;outline:none;appearance:none}.unione-rich-toolbar .menu-item__color span[data-v-9be2b83f]{background-color:#000}.unione-rich-toolbar .menu-item__highlight span[data-v-9be2b83f]{background-color:#ff0}.unione-rich-toolbar .menu-item .menu-item__title[data-v-9be2b83f]{width:60px;position:relative}.unione-rich-toolbar .menu-item__title .select[data-v-9be2b83f]{width:40px;height:100%}.unione-rich-toolbar .menu-item__title i[data-v-9be2b83f]{transform:translate(-5px)}.unione-rich-toolbar .menu-item__row-margin[data-v-9be2b83f],.unione-rich-toolbar .menu-item__list[data-v-9be2b83f]{position:relative}.unione-rich-toolbar .menu-item__list .options>ul>li[data-v-9be2b83f] *{pointer-events:none;padding:0}.unione-rich-toolbar .menu-item__list .options>ul>li li[data-v-9be2b83f]{margin-left:18px}.unione-rich-toolbar .menu-item__list .options>ul>li[data-list-style=checkbox] li[data-v-9be2b83f]::marker{font-size:11px}.unione-rich-toolbar .menu-item__image input[data-v-9be2b83f]{display:none}.unione-rich-toolbar .menu-item__table[data-v-9be2b83f]{position:relative}.unione-rich-toolbar .menu-item__table__collapse[data-v-9be2b83f]{width:270px;height:310px;background:#fff;box-shadow:0 2px 12px #38383833;border:1px solid #e2e6ed;box-sizing:border-box;border-radius:2px;position:fixed;display:none;z-index:99;top:25px;left:0;padding:14px 27px;cursor:auto}.unione-rich-toolbar .menu-item__table__collapse .table-close[data-v-9be2b83f]{position:absolute;right:10px;top:5px;cursor:pointer}.unione-rich-toolbar .menu-item__table__collapse .table-close[data-v-9be2b83f]:hover{color:#7d7e80}.unione-rich-toolbar .menu-item__table__collapse[data-v-9be2b83f]:hover{background:#fff}.unione-rich-toolbar .menu-item__table__collapse .table-title[data-v-9be2b83f]{display:flex;justify-content:flex-start;padding-bottom:5px;border-bottom:1px solid #e2e6ed}.unione-rich-toolbar .table-title span[data-v-9be2b83f]{font-size:12px;color:#3d4757;display:inline;margin:0}.unione-rich-toolbar .table-panel[data-v-9be2b83f]{cursor:pointer}.unione-rich-toolbar .table-panel .table-row[data-v-9be2b83f]{display:flex;flex-wrap:nowrap;margin-top:10px;pointer-events:none}.unione-rich-toolbar .table-panel .table-cel[data-v-9be2b83f]{width:16px;height:16px;box-sizing:border-box;border:1px solid #e2e6ed;background:#fff;position:relative;margin-right:6px;pointer-events:none}.unione-rich-toolbar .table-panel .table-cel.active[data-v-9be2b83f]{border:1px solid rgba(73,145,242,.2);background:#4991f226}.unione-rich-toolbar .table-panel .table-row .table-cel[data-v-9be2b83f]:last-child{margin-right:0}.unione-rich-toolbar .menu-item__separator[data-v-9be2b83f]{position:relative}.unione-rich-toolbar .menu-item__separator .options[data-v-9be2b83f]{width:128px}.unione-rich-toolbar .menu-item__separator li[data-v-9be2b83f]{padding:1px 5px}.unione-rich-toolbar .menu-item__separator li i[data-v-9be2b83f]{width:100%;pointer-events:none}.unione-rich-toolbar .menu-item__watermark[data-v-9be2b83f],.unione-rich-toolbar .menu-item__control[data-v-9be2b83f],.unione-rich-toolbar .menu-item__date[data-v-9be2b83f]{position:relative}.unione-rich-toolbar .menu-item__date .options[data-v-9be2b83f]{width:160px}.unione-rich-toolbar .menu-item .menu-item__control .options[data-v-9be2b83f]{width:55px}.unione-rich-toolbar .menu-item__search[data-v-9be2b83f]{position:relative}.unione-rich-toolbar .menu-item__search__collapse[data-v-9be2b83f]{width:260px;height:72px;box-sizing:border-box;position:absolute;display:none;z-index:99;top:25px;left:0;background:#fff;box-shadow:0 5px 5px #e3dfdf}.unione-rich-toolbar .menu-item__search__collapse[data-v-9be2b83f]:hover{background:#fff}.unione-rich-toolbar .menu-item__search__collapse>div[data-v-9be2b83f]{width:250px;height:36px;padding:0 5px;line-height:36px;display:flex;align-items:center;justify-content:space-between;border-radius:4px}.unione-rich-toolbar .menu-item__search__collapse>div input[data-v-9be2b83f]{width:205px;height:27px;appearance:none;background-color:#fff;background-image:none;border-radius:4px;border:1px solid #ebebeb;box-sizing:border-box;color:#606266;display:inline-block;line-height:27px;outline:none;padding:0 5px}.unione-rich-toolbar .menu-item__search__collapse>div span[data-v-9be2b83f]{height:100%;color:#dcdfe6;font-size:25px;display:inline-block;border:0;padding:0 10px}.unione-rich-toolbar .menu-item__search__collapse__replace button[data-v-9be2b83f]{display:inline-block;border:1px solid #e2e6ed;border-radius:2px;background:#fff;line-height:22px;padding:0 6px;white-space:nowrap;margin-left:4px;cursor:pointer;font-size:12px}.unione-rich-toolbar .menu-item__search__collapse__replace button[data-v-9be2b83f]:hover{background:#1937580a}.unione-rich-toolbar .menu-item__search__collapse__search[data-v-9be2b83f]{position:relative}.unione-rich-toolbar .menu-item__search__collapse__search label[data-v-9be2b83f]{right:110px;font-size:12px;color:#3d4757;position:absolute}.unione-rich-toolbar .menu-item__search__collapse__search>input[data-v-9be2b83f]{padding:5px 90px 5px 5px!important}.unione-rich-toolbar .menu-item__search__collapse__search>div[data-v-9be2b83f]{width:28px;height:27px;display:flex;justify-content:center;align-items:center;position:absolute;border-left:1px solid #e2e6ed;transition:all .5s}.unione-rich-toolbar .menu-item__search__collapse__search>div[data-v-9be2b83f]:hover{background-color:#1937580a}.unione-rich-toolbar .menu-item__search__collapse__search i[data-v-9be2b83f]{width:6px;height:8px;transform:translateY(1px)}.unione-rich-toolbar .menu-item__search__collapse__search .arrow-left[data-v-9be2b83f]{right:76px}.unione-rich-toolbar .menu-item__search__collapse__search .arrow-right[data-v-9be2b83f]{right:48px}.unione-rich-text[data-v-d2704ee4]{height:100%}.unione-rich-text.run .canvas-editor[data-v-d2704ee4],.unione-rich-text.edit .canvas-editor[data-v-d2704ee4]{border:1px solid #d9d9d9;border-bottom-left-radius:6px;border-bottom-right-radius:6px}.unione-rich-text .canvas-editor[data-v-d2704ee4]{min-height:200px;overflow-y:auto}.unione-rich-text[data-v-d2704ee4] .canvas-editor>div{width:100%!important}.unione-rich-text[data-v-d2704ee4] .canvas-editor>div>div>canvas{width:100%!important}.data-field-manage .btn[data-v-f6307a23]{margin-top:-50px;float:right}.data-field-manage .btn.btn-add[data-v-f6307a23]{margin-right:70px}.data-field-manage .btn.btn-delete[data-v-f6307a23]{margin-right:5px}.data-field-manage .edit-field[data-v-f6307a23]{width:100%;height:100%}.data-field-manage .edit-field.empty[data-v-f6307a23]{position:absolute;top:0;left:0}.data-field-manage .edit-field[data-v-f6307a23] .ant-input-number{width:calc(100% - 5px)}.data-field-manage .edit-field[data-v-f6307a23] .ant-select{width:100%}.data-field-manage[data-v-f6307a23] .ant-table-thead tr th,.data-field-setting[data-v-ef9b9849] .ant-table .ant-table-thead tr th{font-weight:400}.data-field-setting[data-v-ef9b9849] .ant-table .ant-table-tbody tr td{padding:3px}.data-field-setting .edit-field[data-v-ef9b9849]{width:100%;height:100%}.data-field-setting .edit-field.empty[data-v-ef9b9849]{position:absolute;top:0;left:0}.data-field-setting .edit-field.empty[data-v-ef9b9849] .ant-btn{padding:4px 7px;float:right}.data-field-setting .edit-field[data-v-ef9b9849] .ant-input-number{width:calc(100% - 5px)}.data-field-setting .edit-field[data-v-ef9b9849] .ant-select{width:100%}.data-field-setting .edit-field[data-v-ef9b9849] .ant-btn{padding:4px;float:right}.data-field-setting .edit-field[data-v-ef9b9849] .ant-checkbox{margin-top:8px}.data-field-setting .edit-field .field-txt[data-v-ef9b9849]{line-height:30px}.form-mix[data-v-ef9b9849] .ant-form-item{margin-bottom:5px!important}.form-mix .checkbox-tips[data-v-ef9b9849] .ant-checkbox-wrapper{color:#999}.data-define[data-v-6be2cc50]{height:100%;overflow-y:auto}.data-define.center[data-v-6be2cc50]{display:flex}.data-define .data-model-list[data-v-6be2cc50]{width:180px;height:100%;border-right:1px solid #d9d9d9;display:flex;align-items:flex-start;flex-direction:column;float:left}.data-define .data-model-list .title[data-v-6be2cc50]{height:35px;width:100%;cursor:pointer;line-height:35px;padding:0 5px}.data-define .data-model-list .title.slt[data-v-6be2cc50]{background-color:#e6f7ff;color:#2795f9}.data-define .data-model-list .title.btn-add[data-v-6be2cc50]{text-align:center;font-size:20px;margin-top:5px;margin-left:5px;border:1px solid #d9d9d9;width:calc(100% - 10px);line-height:30px}.data-define .data-model-list .title[data-v-6be2cc50]:hover{background-color:#e6f7ff;color:#2795f9}.data-define .data-model-form[data-v-6be2cc50]{display:inline-block;width:calc(100% - 180px);padding:0 10px}.data-define .data-model-form.center[data-v-6be2cc50]{margin:0 auto}.unione-page-setting .form-mix[data-v-2420ce7a] .ant-form-item{margin-bottom:5px!important}.unione-page-setting .form-mix .checkbox-tips[data-v-2420ce7a] .ant-checkbox-wrapper{color:#999}.unione-page-setting .form-mix[data-v-2420ce7a] .ant-tabs-tabpane{max-height:calc(60vh - 60px);overflow-y:auto}.unione-page-view[data-v-f792d0b4]{padding:10px;height:100%;overflow-y:auto}.unione-page-tree .form-warp .form-btns[data-v-0c4bbbf6]{margin-bottom:10px}.flow-audit-drawer .handel-opinion .line{font-size:16px;margin-bottom:10px}.flow-audit-drawer .handel-opinion .ant-input{min-height:400px}.flow-audit-drawer .preset-opinions .line{font-size:16px;margin:20px 0 10px}.flow-audit-drawer .preset-opinions .ok,.flow-audit-drawer .preset-opinions .reject{margin-bottom:10px}.flow-audit-drawer .preset-opinions .ant-tag{cursor:pointer;margin:5px 15px 0}.flow-audit-drawer .ant-drawer-footer{text-align:right}.flow-audit-drawer .ant-drawer-footer .ant-btn{margin:auto 10px}.flow-opinion-drawer .btn-close{float:right;margin-right:20px}.load-table-form[data-v-165bc175] .query-field{width:300px}.data-field-manage[data-v-4020e3f0]{min-height:200px}.data-field-manage .btn[data-v-4020e3f0]{margin-top:-50px;float:right}.data-field-manage .btn.btn-add[data-v-4020e3f0]{margin-right:70px}.data-field-manage .btn.btn-delete[data-v-4020e3f0]{margin-right:5px}.data-field-manage .edit-field[data-v-4020e3f0]{width:100%;height:100%}.data-field-manage .edit-field.empty[data-v-4020e3f0]{position:absolute;top:0;left:0}.data-field-manage .edit-field[data-v-4020e3f0] .ant-input-number{width:calc(100% - 5px)}.data-field-manage .edit-field[data-v-4020e3f0] .ant-select{width:100%}.data-field-manage[data-v-4020e3f0] .ant-table-thead tr th{font-weight:400}.data-field-setting[data-v-d5938ab8]{min-height:200px}.data-field-setting[data-v-d5938ab8] .ant-table .ant-table-thead tr th{font-weight:400}.data-field-setting[data-v-d5938ab8] .ant-table .ant-table-tbody tr td{padding:3px}.data-field-setting .edit-field[data-v-d5938ab8]{width:100%;height:100%}.data-field-setting .edit-field.empty[data-v-d5938ab8]{position:absolute;top:0;left:0}.data-field-setting .edit-field.empty[data-v-d5938ab8] .ant-btn{padding:4px 7px;float:right}.data-field-setting .edit-field[data-v-d5938ab8] .ant-input-number{width:calc(100% - 5px)}.data-field-setting .edit-field[data-v-d5938ab8] .ant-select{width:100%}.data-field-setting .edit-field[data-v-d5938ab8] .ant-btn{padding:4px;float:right}.data-field-setting .edit-field[data-v-d5938ab8] .ant-checkbox{margin-top:8px}.data-field-setting .edit-field .field-txt[data-v-d5938ab8]{line-height:30px}.form-mix[data-v-d5938ab8] .ant-form-item{margin-bottom:5px!important}.form-mix .checkbox-tips[data-v-d5938ab8] .ant-checkbox-wrapper{color:#999}.field-setting-form[data-v-d5938ab8]{padding-top:10px}.field-setting-form[data-v-d5938ab8] .ant-input-number{width:100%}.field-setting-form.sort[data-v-d5938ab8] .ant-form-item{width:50%;display:inline-block}.field-setting-form.sort[data-v-d5938ab8] .ant-form-item .ant-form-item-label{width:50%;max-width:50%;flex:0 0 50%}.field-setting-form.sort[data-v-d5938ab8] .ant-form-item .ant-form-item-control{width:50%;max-width:50%}.data-field-fkey[data-v-84143692]{min-height:200px}.data-field-fkey[data-v-84143692] .ant-table-cell{font-weight:unset}.data-field-fkey .edit-field[data-v-84143692]{width:100%;height:100%}.data-field-fkey .edit-field.empty[data-v-84143692]{position:absolute;top:0;left:0}.data-field-fkey .edit-field[data-v-84143692] .ant-input-number{width:calc(100% - 5px)}.data-field-fkey .edit-field[data-v-84143692] .ant-select{width:100%}.data-filter[data-v-a600b93f]{height:100%;min-height:200px}.data-filter .filter-box[data-v-a600b93f]{width:calc(25% - 10px);margin:5px;height:100px;display:inline-flex}.data-filter .filter-box[data-v-a600b93f] .ant-card-body{width:100%}.data-filter .filter-box .action[data-v-a600b93f]{margin-top:10px;text-align:center}.data-filter .filter-box .action .ant-btn[data-v-a600b93f]{width:30%;margin:auto 10px}.data-filter .filter-box.btn-add[data-v-a600b93f]{line-height:80px;cursor:pointer}.data-filter .filter-box.btn-add[data-v-a600b93f] .ant-card-body{text-align:center}.data-filter .filter-box.btn-add .btn[data-v-a600b93f]{font-size:30px;color:#00000080}.data-filter .filter-box[data-v-a600b93f]:hover{background-color:#e6f7ff}.data-filter[data-v-a600b93f] .ant-card-bordered{border:1px solid #d9d9d9}.data-filter .btn-tmpl[data-v-a600b93f]{position:absolute;right:-7px;cursor:pointer}.form-mix[data-v-a600b93f] .ant-form-item{margin-bottom:5px!important}.form-mix[data-v-a600b93f] .ant-form-item .ant-form-item-explain-error{right:5px;margin-top:-27px;position:absolute}.form-mix .checkbox-tips[data-v-a600b93f] .ant-checkbox-wrapper{color:#999}.data-define-edit[data-v-3eeab6e6]{overflow-y:auto;height:100%}.data-define-edit[data-v-3eeab6e6] .page-setting-section .title{font-size:14px}.data-define-edit[data-v-3eeab6e6] .page-setting-section .reactive{font-size:12px}.data-define-edit[data-v-3eeab6e6] .page-setting-section.open .type{margin-top:6px!important}.data-define-edit[data-v-3eeab6e6] .page-setting-section.close .title,.data-define-edit[data-v-3eeab6e6] .page-setting-section.close .reactive{color:#00bd7e}.data-define-edit .actions[data-v-3eeab6e6]{width:100%;bottom:10px;text-align:center}.data-define-edit .actions .ant-btn[data-v-3eeab6e6]{margin:15px 10px}
package/dist/typing.d.ts CHANGED
@@ -10,7 +10,9 @@ export interface Convert {
10
10
  refValue?: string;
11
11
  isAsync?: boolean;
12
12
  isPaging?: boolean;
13
+ ctx?: string;
13
14
  url?: string;
15
+ process?: Function;
14
16
  params?: Object;
15
17
  dsId?: string;
16
18
  tableName?: string;
@@ -256,6 +258,7 @@ export interface DataParams {
256
258
  value?: string;
257
259
  }
258
260
  export interface DataStorage {
261
+ ctx?: string;
259
262
  controller: string;
260
263
  findParams?: Array<DataParams>;
261
264
  findUrl?: string;
@@ -414,6 +417,7 @@ export interface WidgetModel {
414
417
  index?: number;
415
418
  wid: string;
416
419
  title: string;
420
+ name: string;
417
421
  widget: string;
418
422
  widgets?: Array<any>;
419
423
  css?: {
@@ -1,2 +1,2 @@
1
- declare const _default: "0.0.21";
1
+ declare const _default: "0.0.23";
2
2
  export default _default;
@@ -1,4 +1,8 @@
1
1
  declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ wid: {
3
+ type: StringConstructor;
4
+ required: false;
5
+ };
2
6
  editor: {
3
7
  type: ObjectConstructor;
4
8
  required: false;
@@ -39,6 +43,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
39
43
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
40
44
  click: (...args: any[]) => void;
41
45
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
46
+ wid: {
47
+ type: StringConstructor;
48
+ required: false;
49
+ };
42
50
  editor: {
43
51
  type: ObjectConstructor;
44
52
  required: false;