unione-form-vue 0.0.8 → 0.0.10

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.
@@ -75,7 +75,7 @@ export declare class DataStorage {
75
75
  $form: any;
76
76
  $params: any;
77
77
  $store: TypeDataStorage;
78
- constructor(sn: string, type: 'form' | 'list', model: Ref<'run' | 'view' | 'edit' | 'preview'>);
78
+ constructor(sn: string | TypeDataStorage, type: 'form' | 'list', model?: Ref<'run' | 'view' | 'edit' | 'preview'>);
79
79
  $isStorage(): boolean;
80
80
  store(store?: TypeDataStorage): TypeDataStorage;
81
81
  data(): any;
@@ -8,7 +8,7 @@ export default class EventBus {
8
8
  $delayEmit: Ref<any>;
9
9
  constructor();
10
10
  $on(name: string, fn: Function): void;
11
- $emit(name: string, params: any): void;
11
+ $emit(name: string, params?: any): void;
12
12
  $once(name: string, fn: Function): void;
13
13
  $off(name: string): void;
14
14
  }
@@ -1,5 +1,8 @@
1
1
  import { PropType } from 'vue';
2
- import { PageDefine } from '../typing';
2
+ import { DataStorage, FormItem, ButtonSetting } from '../typing';
3
+ import { default as UnioneEditor } from '../editor';
4
+ declare function storage(): any;
5
+ declare function reload(): void;
3
6
  declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
4
7
  psn: {
5
8
  type: StringConstructor;
@@ -9,11 +12,89 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
9
12
  type: ObjectConstructor;
10
13
  default(): {};
11
14
  };
12
- pageDefine: {
13
- type: PropType<PageDefine>;
15
+ storage: {
16
+ type: PropType<DataStorage>;
17
+ required: true;
18
+ };
19
+ fields: {
20
+ type: {
21
+ (arrayLength: number): PropType<FormItem>[];
22
+ (...items: PropType<FormItem>[]): PropType<FormItem>[];
23
+ new (arrayLength: number): PropType<FormItem>[];
24
+ new (...items: PropType<FormItem>[]): PropType<FormItem>[];
25
+ isArray(arg: any): arg is any[];
26
+ readonly prototype: any[];
27
+ from<T>(arrayLike: ArrayLike<T>): T[];
28
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
29
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
30
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
31
+ of<T_4>(...items: T_4[]): T_4[];
32
+ readonly [Symbol.species]: ArrayConstructor;
33
+ };
34
+ required: true;
35
+ };
36
+ queryBtns: {
37
+ type: {
38
+ (arrayLength: number): PropType<ButtonSetting>[];
39
+ (...items: PropType<ButtonSetting>[]): PropType<ButtonSetting>[];
40
+ new (arrayLength: number): PropType<ButtonSetting>[];
41
+ new (...items: PropType<ButtonSetting>[]): PropType<ButtonSetting>[];
42
+ isArray(arg: any): arg is any[];
43
+ readonly prototype: any[];
44
+ from<T>(arrayLike: ArrayLike<T>): T[];
45
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
46
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
47
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
48
+ of<T_4>(...items: T_4[]): T_4[];
49
+ readonly [Symbol.species]: ArrayConstructor;
50
+ };
51
+ required: false;
52
+ };
53
+ operation: {
54
+ type: ObjectConstructor;
55
+ required: false;
56
+ };
57
+ leftBtns: {
58
+ type: {
59
+ (arrayLength: number): PropType<ButtonSetting>[];
60
+ (...items: PropType<ButtonSetting>[]): PropType<ButtonSetting>[];
61
+ new (arrayLength: number): PropType<ButtonSetting>[];
62
+ new (...items: PropType<ButtonSetting>[]): PropType<ButtonSetting>[];
63
+ isArray(arg: any): arg is any[];
64
+ readonly prototype: any[];
65
+ from<T>(arrayLike: ArrayLike<T>): T[];
66
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
67
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
68
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
69
+ of<T_4>(...items: T_4[]): T_4[];
70
+ readonly [Symbol.species]: ArrayConstructor;
71
+ };
72
+ required: false;
73
+ };
74
+ rightBtns: {
75
+ type: {
76
+ (arrayLength: number): PropType<ButtonSetting>[];
77
+ (...items: PropType<ButtonSetting>[]): PropType<ButtonSetting>[];
78
+ new (arrayLength: number): PropType<ButtonSetting>[];
79
+ new (...items: PropType<ButtonSetting>[]): PropType<ButtonSetting>[];
80
+ isArray(arg: any): arg is any[];
81
+ readonly prototype: any[];
82
+ from<T>(arrayLike: ArrayLike<T>): T[];
83
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
84
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
85
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
86
+ of<T_4>(...items: T_4[]): T_4[];
87
+ readonly [Symbol.species]: ArrayConstructor;
88
+ };
14
89
  required: false;
15
90
  };
16
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
91
+ }>, {
92
+ storage: typeof storage;
93
+ editor: UnioneEditor;
94
+ reload: typeof reload;
95
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
96
+ btnClick: (...args: any[]) => void;
97
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
17
98
  psn: {
18
99
  type: StringConstructor;
19
100
  required: false;
@@ -22,11 +103,85 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
22
103
  type: ObjectConstructor;
23
104
  default(): {};
24
105
  };
25
- pageDefine: {
26
- type: PropType<PageDefine>;
106
+ storage: {
107
+ type: PropType<DataStorage>;
108
+ required: true;
109
+ };
110
+ fields: {
111
+ type: {
112
+ (arrayLength: number): PropType<FormItem>[];
113
+ (...items: PropType<FormItem>[]): PropType<FormItem>[];
114
+ new (arrayLength: number): PropType<FormItem>[];
115
+ new (...items: PropType<FormItem>[]): PropType<FormItem>[];
116
+ isArray(arg: any): arg is any[];
117
+ readonly prototype: any[];
118
+ from<T>(arrayLike: ArrayLike<T>): T[];
119
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
120
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
121
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
122
+ of<T_4>(...items: T_4[]): T_4[];
123
+ readonly [Symbol.species]: ArrayConstructor;
124
+ };
125
+ required: true;
126
+ };
127
+ queryBtns: {
128
+ type: {
129
+ (arrayLength: number): PropType<ButtonSetting>[];
130
+ (...items: PropType<ButtonSetting>[]): PropType<ButtonSetting>[];
131
+ new (arrayLength: number): PropType<ButtonSetting>[];
132
+ new (...items: PropType<ButtonSetting>[]): PropType<ButtonSetting>[];
133
+ isArray(arg: any): arg is any[];
134
+ readonly prototype: any[];
135
+ from<T>(arrayLike: ArrayLike<T>): T[];
136
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
137
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
138
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
139
+ of<T_4>(...items: T_4[]): T_4[];
140
+ readonly [Symbol.species]: ArrayConstructor;
141
+ };
142
+ required: false;
143
+ };
144
+ operation: {
145
+ type: ObjectConstructor;
146
+ required: false;
147
+ };
148
+ leftBtns: {
149
+ type: {
150
+ (arrayLength: number): PropType<ButtonSetting>[];
151
+ (...items: PropType<ButtonSetting>[]): PropType<ButtonSetting>[];
152
+ new (arrayLength: number): PropType<ButtonSetting>[];
153
+ new (...items: PropType<ButtonSetting>[]): PropType<ButtonSetting>[];
154
+ isArray(arg: any): arg is any[];
155
+ readonly prototype: any[];
156
+ from<T>(arrayLike: ArrayLike<T>): T[];
157
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
158
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
159
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
160
+ of<T_4>(...items: T_4[]): T_4[];
161
+ readonly [Symbol.species]: ArrayConstructor;
162
+ };
163
+ required: false;
164
+ };
165
+ rightBtns: {
166
+ type: {
167
+ (arrayLength: number): PropType<ButtonSetting>[];
168
+ (...items: PropType<ButtonSetting>[]): PropType<ButtonSetting>[];
169
+ new (arrayLength: number): PropType<ButtonSetting>[];
170
+ new (...items: PropType<ButtonSetting>[]): PropType<ButtonSetting>[];
171
+ isArray(arg: any): arg is any[];
172
+ readonly prototype: any[];
173
+ from<T>(arrayLike: ArrayLike<T>): T[];
174
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
175
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
176
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
177
+ of<T_4>(...items: T_4[]): T_4[];
178
+ readonly [Symbol.species]: ArrayConstructor;
179
+ };
27
180
  required: false;
28
181
  };
29
- }>> & Readonly<{}>, {
182
+ }>> & Readonly<{
183
+ onBtnClick?: ((...args: any[]) => any) | undefined;
184
+ }>, {
30
185
  params: Record<string, any>;
31
186
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
32
187
  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 .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%}.unione-widget.edit .widget-setting[data-v-3a88c0c0]{cursor:pointer;float:right;margin-right:-6px;margin-top:6px;display:none}.unione-widget.edit .widget-setting[data-v-3a88c0c0]:hover{font-size:20px;margin-right:-10px;margin-top:6px;animation:rotates-3a88c0c0 1s linear infinite!important}.unione-widget.edit[data-v-3a88c0c0]:hover{background-color:#e6f7ff}.unione-widget.edit:hover>.widget-setting[data-v-3a88c0c0]{display:block;animation:rotates-3a88c0c0 2s linear infinite}@keyframes rotates-3a88c0c0{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-3a88c0c0]{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-42bd8785]{display:inline-block;margin:auto 5px}.unione-btn.unione-btn-block[data-v-42bd8785]{width:100%}.unione-btn[data-v-42bd8785] .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-42bd8785]{padding:5px!important;background-color:red}.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-540f619c]{padding:10px}.unione-form-widget[data-v-540f619c] .widget-setting{margin-top:-5px!important}.unione-form-widget .unione-form.edit[data-v-540f619c]{padding:0 20px}.unione-form-widget .unione-form .unione-widget[data-v-540f619c]{display:block}.unione-form-widget .unione-form .unione-widget.all-line[data-v-540f619c]{width:100%!important}.unione-form-widget .unione-form .unione-widget.2in_line[data-v-540f619c]{width:66.66%!important}.unione-form-widget .unione-form.form-layout-col-1 .unione-widget[data-v-540f619c]{width:100%}.unione-form-widget .unione-form.form-layout-col-2 .unione-widget[data-v-540f619c]{width:50%;display:inline-block}.unione-form-widget .unione-form.form-layout-col-3 .unione-widget[data-v-540f619c]{width:33.33%;display:inline-block}.unione-form-widget .form-btns[data-v-540f619c]{width:100%;margin:10px;text-align:center}.unione-form-widget .form-btns .btn[data-v-540f619c]{margin:auto 5px}.unione-form-item .ant-form-item[data-v-8941ba2b]{margin-bottom:6px}.unione-form-item .ant-form-item[data-v-8941ba2b] .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-bf93af8d]{display:inline-block;margin-bottom:5px;min-width:250px;width:25%}.unione-query-form.edit .query-field[data-v-bf93af8d]{width:calc(25% - 7px)}.unione-query-form .query-btn[data-v-bf93af8d]{display:inline-block;white-space:nowrap}.unione-query-form .query-btn .btn[data-v-bf93af8d]{margin:auto 5px}.unione-query-form .query-btn .btn.save-search[data-v-bf93af8d]{float:right;position:absolute;right:10px}.btn-advanced-overlay[data-v-bf93af8d]{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-bf93af8d]{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-a9f2c11d]{margin-top:10px}.unione-table-list .unione-table-tools[data-v-a9f2c11d]{padding-bottom:10px}.unione-table-list .unione-table-tools .btn[data-v-a9f2c11d]{margin:auto 5px}.unione-table-list .unione-table-tools .btn.right[data-v-a9f2c11d]{float:right}.unione-table-list .unione-table-tools .selected-info[data-v-a9f2c11d]{margin:auto 5px;color:#2795f9;cursor:pointer}.unione-table-list .unione-table-tools .selected-info[data-v-a9f2c11d]:hover{color:red;text-decoration:line-through}.unione-table-list .unione-table-tools[data-v-a9f2c11d] .ant-btn-sm{height:27px}.unione-table-list .unione-table-opts .opt[data-v-a9f2c11d]{margin:auto 2px}.unione-table-list .unione-table-opts .opt[data-v-a9f2c11d] .widget-setting{display:block}.unione-table-list .unione-table-opts .opt-more.small[data-v-a9f2c11d]{padding:0 5px 2px;height:24px}.unione-table-list .unione-table-opts .item[data-v-a9f2c11d] .widget-setting{display:block}.opt-more-overlay[data-v-a9f2c11d]{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-a9f2c11d]{display:flex;flex-direction:column}.opt-more-overlay .item[data-v-a9f2c11d]{padding:2px 6px}.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}.load-table-form[data-v-d7658b67] .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 .node-label{display:inline-block;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%}.unione-widget.edit .widget-setting[data-v-3a88c0c0]{cursor:pointer;float:right;margin-right:-6px;margin-top:6px;display:none}.unione-widget.edit .widget-setting[data-v-3a88c0c0]:hover{font-size:20px;margin-right:-10px;margin-top:6px;animation:rotates-3a88c0c0 1s linear infinite!important}.unione-widget.edit[data-v-3a88c0c0]:hover{background-color:#e6f7ff}.unione-widget.edit:hover>.widget-setting[data-v-3a88c0c0]{display:block;animation:rotates-3a88c0c0 2s linear infinite}@keyframes rotates-3a88c0c0{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-3a88c0c0]{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-ea6fa089]{display:inline-block;margin:auto 5px}.unione-btn.unione-btn-block[data-v-ea6fa089]{width:100%}.unione-btn[data-v-ea6fa089] .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-ea6fa089]{padding:5px!important;background-color:red}.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-e10a94d9]{padding:10px}.unione-form-widget[data-v-e10a94d9] .widget-setting{margin-top:-5px!important}.unione-form-widget .unione-form.edit[data-v-e10a94d9]{padding:0 20px}.unione-form-widget .unione-form .unione-widget[data-v-e10a94d9]{display:block}.unione-form-widget .unione-form .unione-widget.all-line[data-v-e10a94d9]{width:100%!important}.unione-form-widget .unione-form .unione-widget.2in_line[data-v-e10a94d9]{width:66.66%!important}.unione-form-widget .unione-form.form-layout-col-1 .unione-widget[data-v-e10a94d9]{width:100%}.unione-form-widget .unione-form.form-layout-col-2 .unione-widget[data-v-e10a94d9]{width:50%;display:inline-block}.unione-form-widget .unione-form.form-layout-col-3 .unione-widget[data-v-e10a94d9]{width:33.33%;display:inline-block}.unione-form-widget .form-btns[data-v-e10a94d9]{width:100%;margin:10px;text-align:center}.unione-form-widget .form-btns .btn[data-v-e10a94d9]{margin:auto 5px}.unione-form-item .ant-form-item[data-v-d8a9fb47]{margin-bottom:6px}.unione-form-item .ant-form-item[data-v-d8a9fb47] .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-16d6d00f]{display:inline-block;margin-bottom:5px;min-width:250px;width:25%}.unione-query-form.edit .query-field[data-v-16d6d00f]{width:calc(25% - 7px)}.unione-query-form .query-btn[data-v-16d6d00f]{display:inline-block;white-space:nowrap}.unione-query-form .query-btn .btn[data-v-16d6d00f]{margin:auto 5px}.unione-query-form .query-btn .btn.save-search[data-v-16d6d00f]{float:right;position:absolute;right:10px}.btn-advanced-overlay[data-v-16d6d00f]{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-16d6d00f]{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-ae4b8723]{margin-top:10px}.unione-table-list .unione-table-tools[data-v-ae4b8723]{padding-bottom:10px}.unione-table-list .unione-table-tools .btn[data-v-ae4b8723]{margin:auto 5px}.unione-table-list .unione-table-tools .btn.right[data-v-ae4b8723]{float:right}.unione-table-list .unione-table-tools .selected-info[data-v-ae4b8723]{margin:auto 5px;color:#2795f9;cursor:pointer}.unione-table-list .unione-table-tools .selected-info[data-v-ae4b8723]:hover{color:red;text-decoration:line-through}.unione-table-list .unione-table-tools[data-v-ae4b8723] .ant-btn-sm{height:27px}.unione-table-list .unione-table-opts .opt[data-v-ae4b8723]{margin:auto 2px}.unione-table-list .unione-table-opts .opt[data-v-ae4b8723] .widget-setting{display:block}.unione-table-list .unione-table-opts .opt-more.small[data-v-ae4b8723]{padding:0 5px 2px;height:24px}.unione-table-list .unione-table-opts .item[data-v-ae4b8723] .widget-setting{display:block}.opt-more-overlay[data-v-ae4b8723]{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-ae4b8723]{display:flex;flex-direction:column}.opt-more-overlay .item[data-v-ae4b8723]{padding:2px 6px}.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}.load-table-form[data-v-483acb94] .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
@@ -38,6 +38,7 @@ export interface Config {
38
38
  export interface FormItem {
39
39
  dsn?: string;
40
40
  control?: string;
41
+ title: string;
41
42
  name: string;
42
43
  value?: string | number;
43
44
  dataType?: string;
@@ -49,7 +50,11 @@ export interface FormItem {
49
50
  fkey?: any;
50
51
  conditionStyle?: Array<any>;
51
52
  props?: any;
52
- view?: any;
53
+ view?: {
54
+ dataFormat?: string;
55
+ };
56
+ isPk?: boolean;
57
+ isQuery?: boolean;
53
58
  }
54
59
  export interface FormPageEvent {
55
60
  validate?: EventDefine | Function;
@@ -436,6 +441,7 @@ export interface ButtonSetting {
436
441
  action?: {
437
442
  type?: string;
438
443
  href?: string;
444
+ link?: string;
439
445
  target?: string;
440
446
  component?: string;
441
447
  position?: string;
@@ -1,2 +1,2 @@
1
- declare const _default: "0.0.8";
1
+ declare const _default: "0.0.10";
2
2
  export default _default;
@@ -0,0 +1,9 @@
1
+ type __VLS_PublicProps = {
2
+ 'value'?: any;
3
+ };
4
+ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
5
+ "update:value": (value: any) => any;
6
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
7
+ "onUpdate:value"?: ((value: any) => any) | undefined;
8
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
9
+ export default _default;
@@ -1,6 +1,6 @@
1
1
  import { PropType } from 'vue';
2
2
  import { WidgetModel } from '../../typing';
3
- declare function clearSelected(): void;
3
+ declare function clearSelected(flag?: boolean): void;
4
4
  /**
5
5
  * 获得选中记录
6
6
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "unione-form-vue",
3
- "version": "0.0.8",
3
+ "version": "0.0.10",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "npm run version && vite serve preview --mode development",
@@ -30,7 +30,7 @@
30
30
  "dist"
31
31
  ],
32
32
  "dependencies": {
33
- "unione-base-vue": "^0.0.10"
33
+ "unione-base-vue": "^0.0.12"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@ant-design/icons-vue": "^7.0.1",