unione-form-vue 0.0.3 → 0.0.5

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.
Files changed (37) hide show
  1. package/dist/config/index.d.ts +19 -0
  2. package/dist/config/settings.d.ts +15 -0
  3. package/dist/editor.d.ts +12 -20
  4. package/dist/index.d.ts +18 -7
  5. package/dist/index.umd.js +13 -354
  6. package/dist/lib/convertor.d.ts +36 -0
  7. package/dist/lib/data.d.ts +89 -44
  8. package/dist/lib/debounce.d.ts +1 -0
  9. package/dist/lib/dict.d.ts +23 -0
  10. package/dist/lib/ebus.d.ts +14 -0
  11. package/dist/lib/rule.d.ts +9 -0
  12. package/dist/lib/utils.d.ts +5 -5
  13. package/dist/locales/index.d.ts +2 -3
  14. package/dist/page/data/define/api.d.ts +10 -0
  15. package/dist/page/data/define/components/dataFieldFKeys.vue.d.ts +10 -0
  16. package/dist/page/data/define/components/dataFieldMange.vue.d.ts +10 -0
  17. package/dist/page/data/define/components/dataFieldSetting.vue.d.ts +10 -0
  18. package/dist/page/data/define/components/dataFilters.vue.d.ts +9 -0
  19. package/dist/page/data/define/edit.vue.d.ts +2 -0
  20. package/dist/page/data/define/list.vue.d.ts +2 -0
  21. package/dist/page/{view.vue.d.ts → editor.vue.d.ts} +7 -21
  22. package/dist/page/form.vue.d.ts +32 -0
  23. package/dist/page/list.vue.d.ts +32 -0
  24. package/dist/style.css +1 -1
  25. package/dist/typing.d.ts +372 -167
  26. package/dist/version/version.d.ts +1 -1
  27. package/dist/widgets/base/btn.vue.d.ts +39 -2
  28. package/dist/widgets/form/checkBox.vue.d.ts +56 -0
  29. package/dist/widgets/form/form.vue.d.ts +28 -15
  30. package/dist/widgets/form/{render.vue.d.ts → formItem.vue.d.ts} +14 -4
  31. package/dist/widgets/form/radioBox.vue.d.ts +56 -0
  32. package/dist/widgets/form/selectBox.vue.d.ts +56 -0
  33. package/dist/widgets/form/switchBox.vue.d.ts +48 -0
  34. package/dist/widgets/layout/section.vue.d.ts +89 -0
  35. package/dist/widgets/query/queryForm.vue.d.ts +2 -2
  36. package/dist/widgets/table/tableList.vue.d.ts +52 -9
  37. package/package.json +3 -2
@@ -0,0 +1,36 @@
1
+ import { Convert } from '../typing';
2
+ /**
3
+ * 数据转换器数据处理
4
+ */
5
+ export default class Convertor {
6
+ private convertObj;
7
+ private config;
8
+ private options;
9
+ constructor(convert: Convert);
10
+ /**
11
+ * 组件渲染、数据回显
12
+ * @param value
13
+ * @param force
14
+ */
15
+ load(value?: string | number, force?: boolean): Promise<unknown>;
16
+ /**
17
+ * 数据转换:value->label
18
+ * @param value
19
+ */
20
+ convert(value: string | number): Promise<any>;
21
+ /**
22
+ * 加载下级数据项
23
+ * @param pid
24
+ */
25
+ children(pid?: string | number): Promise<unknown>;
26
+ /**
27
+ * 关键字搜索
28
+ * @param keywords
29
+ */
30
+ search(keywords: string): Promise<unknown>;
31
+ /**
32
+ * 前端接口数据选项处理
33
+ * @param list
34
+ */
35
+ $processOptions(list: Array<any>): any[];
36
+ }
@@ -1,62 +1,107 @@
1
1
  import { Ref } from 'vue';
2
- import { DataModel, DataParams, DataResult } from '../typing';
2
+ import { DataFind, DataCommit, DataResult } from '../typing';
3
+ /**
4
+ * 数据管理对象
5
+ */
3
6
  export default class DataManager {
4
- $dataModels: Ref<Array<DataModel>>;
5
- $dataModelMap: Ref<any>;
6
- $settings: Ref<any>;
7
- $axios: any;
8
- $axiosProccess: any;
9
- constructor(dataModel: Array<DataModel>, config?: any);
7
+ $psn: Ref<string>;
8
+ $pid: Ref<string>;
9
+ $store: Ref<any>;
10
+ $forms: Ref<any>;
11
+ $model: Ref<'run' | 'view' | 'edit' | 'preview'>;
12
+ $params: Ref<any>;
13
+ $refObj: Ref<any>;
14
+ $refData: Ref<any>;
15
+ constructor(dsn: string, model: Ref<'run' | 'view' | 'edit' | 'preview'>);
10
16
  /**
11
- * 初始化Axios实例
17
+ * 设置、获取参数对象
18
+ * @param params
19
+ * @returns
20
+ */
21
+ params(params?: any): any;
22
+ /**
23
+ * 设置/获取 primary data sn
24
+ * @param psn
25
+ * @returns
12
26
  */
13
- $initAxios(): void;
27
+ psn(psn?: string): string;
14
28
  /**
15
- * 获取/设置数据模型
29
+ * 注册引用字段,并返回当前值
30
+ * @param obj
31
+ * @param refs
32
+ */
33
+ regRef(obj: any, refs: Array<string>): void;
34
+ /**
35
+ * 更新引用数据,并同步更新被引用对象中的refData属性
36
+ * @param dsn
37
+ * @param field
38
+ * @param value
39
+ */
40
+ setRefData(dsn: string, field: string, value: any): void;
41
+ /**
42
+ * 获取数据存储实例
16
43
  * @param sn
44
+ */
45
+ use(dsn: string, type: 'form' | 'list', formIns?: any): any;
46
+ useForm(dsn: string, formIns: any, callback?: Function): any;
47
+ /**
48
+ * 获取数据对象
49
+ * @param dsn
50
+ * @returns
51
+ */
52
+ data(dsn: string): any;
53
+ /**
54
+ * 获得表单实例
55
+ * @param dsn
56
+ * @returns
57
+ */
58
+ form(dsn?: string): any;
59
+ /**
60
+ * 获得主表单存储对象
61
+ * @returns
62
+ */
63
+ primary(): any;
64
+ dsnList(): string[];
65
+ }
66
+ /**
67
+ * 数据存储对象
68
+ */
69
+ export declare class DataStorage {
70
+ $dsn: string;
71
+ $type: 'form' | 'list';
72
+ $data: Ref<any>;
73
+ $dialog: any;
74
+ $model: any;
75
+ constructor(sn: string, type: 'form' | 'list', model: Ref<'run' | 'view' | 'edit' | 'preview'>);
76
+ data(): any;
77
+ /**
78
+ * 数据查询方法
79
+ * @param params
80
+ * @returns
81
+ */
82
+ find(params: DataFind): Promise<DataResult>;
83
+ /**
84
+ * 保存数据:新增、修改
17
85
  * @param data
18
86
  * @returns
19
87
  */
20
- dataModel(sn: string, data?: any): any;
88
+ save(data: DataCommit): Promise<DataResult>;
21
89
  /**
22
- * 设置/获取数据模型列表
23
- * @param models
90
+ * 根据ids加载数据
91
+ * @param ids
24
92
  * @returns
25
93
  */
26
- dataModels(models?: Array<DataModel>): DataModel[] | undefined;
94
+ loadByIds(ids: Array<string>): Promise<DataResult>;
27
95
  /**
28
- * 设置
29
- * @param settings
96
+ * 数据详情
97
+ * @param id
30
98
  * @returns
31
99
  */
32
- settings(settings: any): any;
100
+ detail(id: string): Promise<DataResult>;
33
101
  /**
34
- * 获取数据实例
35
- * @param sn
102
+ * 数据删除:单个,批量
103
+ * @param ids
104
+ * @returns
36
105
  */
37
- use(sn: string): import('pinia').StoreDefinition<string, import('pinia')._UnwrapAll<Pick<{
38
- find: (params: DataParams) => Promise<DataResult>;
39
- save: (data: any) => Promise<DataResult>;
40
- loadByIds: (ids: Array<string>) => Promise<DataResult>;
41
- detail: (id: string) => Promise<DataResult>;
42
- deleteByIds: (ids: Array<string>) => Promise<DataResult>;
43
- request: (req: any) => Promise<DataResult>;
44
- resolve: (scope: Array<string>) => Promise<DataResult>;
45
- }, never>>, Pick<{
46
- find: (params: DataParams) => Promise<DataResult>;
47
- save: (data: any) => Promise<DataResult>;
48
- loadByIds: (ids: Array<string>) => Promise<DataResult>;
49
- detail: (id: string) => Promise<DataResult>;
50
- deleteByIds: (ids: Array<string>) => Promise<DataResult>;
51
- request: (req: any) => Promise<DataResult>;
52
- resolve: (scope: Array<string>) => Promise<DataResult>;
53
- }, never>, Pick<{
54
- find: (params: DataParams) => Promise<DataResult>;
55
- save: (data: any) => Promise<DataResult>;
56
- loadByIds: (ids: Array<string>) => Promise<DataResult>;
57
- detail: (id: string) => Promise<DataResult>;
58
- deleteByIds: (ids: Array<string>) => Promise<DataResult>;
59
- request: (req: any) => Promise<DataResult>;
60
- resolve: (scope: Array<string>) => Promise<DataResult>;
61
- }, "find" | "save" | "loadByIds" | "detail" | "deleteByIds" | "request" | "resolve">>;
106
+ deleteByIds(ids: Array<string>): Promise<DataResult>;
62
107
  }
@@ -0,0 +1 @@
1
+ export default function useDebounce(callback: Function, time?: number): (value: string) => void;
@@ -0,0 +1,23 @@
1
+ /**
2
+ * 加载字典数据
3
+ * @param name
4
+ */
5
+ declare function load(name: string, force?: boolean): Promise<any>;
6
+ /**
7
+ * 根据获取字典选项
8
+ * @param name
9
+ * @param key
10
+ */
11
+ declare function getOption(name: string, key: string | number): Promise<any>;
12
+ /**
13
+ * 根据value获取对应的label
14
+ * @param name
15
+ * @param key
16
+ */
17
+ declare function getLabel(name: string, key: string | number): Promise<any>;
18
+ declare const _default: {
19
+ load: typeof load;
20
+ getLabel: typeof getLabel;
21
+ getOption: typeof getOption;
22
+ };
23
+ export default _default;
@@ -0,0 +1,14 @@
1
+ import { Ref } from 'vue';
2
+ /**
3
+ * 数据管理对象
4
+ */
5
+ export default class EventBus {
6
+ $event: Ref<any>;
7
+ $onces: Ref<any>;
8
+ $delayEmit: Ref<any>;
9
+ constructor();
10
+ $on(name: string, fn: Function): void;
11
+ $emit(name: string, params: any): void;
12
+ $once(name: string, fn: Function): void;
13
+ $off(name: string): void;
14
+ }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * 获取预设表单规则列表
3
+ * @returns
4
+ */
5
+ export declare function loadAdvances(): any[];
6
+ declare const _default: {
7
+ loadAdvances: typeof loadAdvances;
8
+ };
9
+ export default _default;
@@ -1,10 +1,10 @@
1
1
  /**
2
- * 根据path从obj中获取数据
3
- * @param obj
4
- * @param path
2
+ * 下划线转驼峰
3
+ * @param name
4
+ * @returns
5
5
  */
6
- declare function getObjValue(obj: any, path: string): any;
6
+ export declare function toHump(name: string): any;
7
7
  declare const _default: {
8
- getObjValue: typeof getObjValue;
8
+ toHump: typeof toHump;
9
9
  };
10
10
  export default _default;
@@ -1,9 +1,8 @@
1
1
  export declare function loadLanguage(lang: string, extLocal: Function | Object): Promise<string>;
2
2
  declare const locales: {
3
- i18n: import('vue-i18n').I18n<{
4
- "zh-CN": any;
5
- }, {}, {}, string, false>;
3
+ i18n: any;
6
4
  loadLanguage: typeof import('unione-base-vue/dist/locales').loadLanguage;
7
5
  langMessage: any;
6
+ useI18n: typeof import('unione-base-vue').useI18n;
8
7
  };
9
8
  export default locales;
@@ -0,0 +1,10 @@
1
+ declare const _default: {
2
+ release(data: any): any;
3
+ find(data: any): any;
4
+ save(data: any): any;
5
+ delete(ids: Array<any>): any;
6
+ detail(id: any): any;
7
+ loadFromDb(data: any): any;
8
+ impFromDb(data: any): any;
9
+ };
10
+ export default _default;
@@ -0,0 +1,10 @@
1
+ import { DataField } from '../../../../typing';
2
+ type __VLS_PublicProps = {
3
+ modelValue: Array<DataField>;
4
+ };
5
+ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
6
+ "update:modelValue": (modelValue: DataField[]) => any;
7
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
8
+ "onUpdate:modelValue"?: ((modelValue: DataField[]) => any) | undefined;
9
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
10
+ export default _default;
@@ -0,0 +1,10 @@
1
+ import { DataField } from '../../../../typing';
2
+ type __VLS_PublicProps = {
3
+ modelValue: Array<DataField>;
4
+ };
5
+ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
6
+ "update:modelValue": (modelValue: DataField[]) => any;
7
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
8
+ "onUpdate:modelValue"?: ((modelValue: DataField[]) => any) | undefined;
9
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
10
+ export default _default;
@@ -0,0 +1,10 @@
1
+ import { DataField } from '../../../../typing';
2
+ type __VLS_PublicProps = {
3
+ modelValue: Array<DataField>;
4
+ };
5
+ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
6
+ "update:modelValue": (modelValue: DataField[]) => any;
7
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
8
+ "onUpdate:modelValue"?: ((modelValue: DataField[]) => any) | undefined;
9
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
10
+ export default _default;
@@ -0,0 +1,9 @@
1
+ type __VLS_PublicProps = {
2
+ modelValue: Array<any>;
3
+ };
4
+ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
5
+ "update:modelValue": (modelValue: any[]) => any;
6
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
7
+ "onUpdate:modelValue"?: ((modelValue: any[]) => any) | undefined;
8
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
9
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -1,43 +1,29 @@
1
1
  import { PropType } from 'vue';
2
- import { WidgetModel } from '../typing';
2
+ import { PageDefine } from '../typing';
3
3
  declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
4
4
  psn: {
5
5
  type: StringConstructor;
6
+ required: false;
6
7
  };
7
8
  params: {
8
9
  type: ObjectConstructor;
9
10
  default(): {};
10
11
  };
11
- wid: {
12
- type: StringConstructor;
13
- required: false;
14
- };
15
- editor: {
16
- type: ObjectConstructor;
17
- required: false;
18
- };
19
- widget: {
20
- type: PropType<WidgetModel>;
12
+ pageDefine: {
13
+ type: PropType<PageDefine>;
21
14
  required: false;
22
15
  };
23
16
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
24
17
  psn: {
25
18
  type: StringConstructor;
19
+ required: false;
26
20
  };
27
21
  params: {
28
22
  type: ObjectConstructor;
29
23
  default(): {};
30
24
  };
31
- wid: {
32
- type: StringConstructor;
33
- required: false;
34
- };
35
- editor: {
36
- type: ObjectConstructor;
37
- required: false;
38
- };
39
- widget: {
40
- type: PropType<WidgetModel>;
25
+ pageDefine: {
26
+ type: PropType<PageDefine>;
41
27
  required: false;
42
28
  };
43
29
  }>> & Readonly<{}>, {
@@ -0,0 +1,32 @@
1
+ import { PropType } from 'vue';
2
+ import { PageDefine } from '../typing';
3
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
4
+ psn: {
5
+ type: StringConstructor;
6
+ required: false;
7
+ };
8
+ params: {
9
+ type: ObjectConstructor;
10
+ default(): {};
11
+ };
12
+ pageDefine: {
13
+ type: PropType<PageDefine>;
14
+ required: false;
15
+ };
16
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
17
+ psn: {
18
+ type: StringConstructor;
19
+ required: false;
20
+ };
21
+ params: {
22
+ type: ObjectConstructor;
23
+ default(): {};
24
+ };
25
+ pageDefine: {
26
+ type: PropType<PageDefine>;
27
+ required: false;
28
+ };
29
+ }>> & Readonly<{}>, {
30
+ params: Record<string, any>;
31
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
32
+ export default _default;
@@ -0,0 +1,32 @@
1
+ import { PropType } from 'vue';
2
+ import { PageDefine } from '../typing';
3
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
4
+ psn: {
5
+ type: StringConstructor;
6
+ required: false;
7
+ };
8
+ params: {
9
+ type: ObjectConstructor;
10
+ default(): {};
11
+ };
12
+ pageDefine: {
13
+ type: PropType<PageDefine>;
14
+ required: false;
15
+ };
16
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
17
+ psn: {
18
+ type: StringConstructor;
19
+ required: false;
20
+ };
21
+ params: {
22
+ type: ObjectConstructor;
23
+ default(): {};
24
+ };
25
+ pageDefine: {
26
+ type: PropType<PageDefine>;
27
+ required: false;
28
+ };
29
+ }>> & Readonly<{}>, {
30
+ params: Record<string, any>;
31
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
32
+ export default _default;
package/dist/style.css CHANGED
@@ -1 +1 @@
1
- .unione-widget.edit .widget-setting[data-v-af42a5b2]{cursor:pointer;float:right;margin-right:-6px;margin-top:6px;display:none}.unione-widget.edit .widget-setting[data-v-af42a5b2]:hover{font-size:20px;margin-right:-10px;margin-top:6px;animation:rotates-af42a5b2 1s linear infinite!important}.unione-widget.edit[data-v-af42a5b2]:hover{background-color:#e6f7ff}.unione-widget.edit:hover>.widget-setting[data-v-af42a5b2]{display:block;animation:rotates-af42a5b2 2s linear infinite}@keyframes rotates-af42a5b2{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-af42a5b2]{height:75vh;overflow-y:auto}.form-mix[data-v-937393aa] .ant-form-item{margin-bottom:5px!important}.form-mix .checkbox-tips[data-v-937393aa] .ant-checkbox-wrapper{color:#999}.form-mix[data-v-937393aa] .ant-tabs-tabpane{max-height:calc(60vh - 60px);overflow-y:auto}.btn-setting-form[data-v-937393aa]{min-height:400px}.btn-setting-form .param-btn[data-v-937393aa]{margin:auto 10px}.btn-setting-form .edit-field[data-v-937393aa]{width:100%;height:100%}.btn-setting-form .edit-field.empty[data-v-937393aa]{position:absolute;top:0;left:0}.btn-setting-form .edit-field.empty[data-v-937393aa] .ant-btn{padding:4px 7px;float:right}.btn-setting-form .edit-field[data-v-937393aa] .ant-input-number{width:calc(100% - 5px)}.btn-setting-form .edit-field[data-v-937393aa] .ant-select{width:100%}.btn-setting-form .edit-field[data-v-937393aa] .ant-btn{padding:4px;float:right}.btn-setting-form .edit-field[data-v-937393aa] .ant-checkbox{margin-top:8px}.btn-setting-form .edit-field .field-txt[data-v-937393aa]{line-height:30px}.unione-btn[data-v-d3ece18c]{display:inline-block;margin:auto 5px}.unione-btn.unione-btn-block[data-v-d3ece18c]{width:100%}.unione-btn-drawer .ant-drawer-body[data-v-d3ece18c]{padding:5px!important;background-color:red}.unione-form-render .ant-form-item[data-v-afd62b6d]{margin-bottom:6px}.unione-form-render .ant-form-item[data-v-afd62b6d] .ant-form-item-explain-error{right:5px;margin-top:-27px;position:absolute}.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-ab85bf08]{padding:10px;height:100%}.unione-form-widget[data-v-ab85bf08] .widget-setting{margin-top:-5px!important}.unione-form-widget .unione-form.edit[data-v-ab85bf08]{padding:0 20px}.unione-form-widget .unione-form .unione-widget[data-v-ab85bf08]{display:block}.unione-form-widget .unione-form .unione-widget.all-line[data-v-ab85bf08]{width:100%!important}.unione-form-widget .unione-form.form-layout-col-1 .unione-widget[data-v-ab85bf08]{width:100%}.unione-form-widget .unione-form.form-layout-col-2 .unione-widget[data-v-ab85bf08]{width:50%;display:inline-block}.unione-form-widget .unione-form.form-layout-col-3 .unione-widget[data-v-ab85bf08]{width:33.33%;display:inline-block}.unione-form-widget .form-btns[data-v-ab85bf08]{width:100%;margin:10px;text-align:center}.unione-form-widget .form-btns .btn[data-v-ab85bf08]{margin:auto 5px}.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[data-v-4c6e1c2a]{padding-bottom:10px;padding-left:5px}.unione-query-form .query-field[data-v-4c6e1c2a]{display:inline-block;margin-bottom:5px;min-width:250px;width:25%}.unione-query-form.edit .query-field[data-v-4c6e1c2a]{width:calc(25% - 7px)}.unione-query-form .query-btn[data-v-4c6e1c2a]{display:inline-block;white-space:nowrap}.unione-query-form .query-btn .btn[data-v-4c6e1c2a]{margin:auto 5px}.unione-query-form .query-btn .btn.save-search[data-v-4c6e1c2a]{float:right;position:absolute;right:10px}.btn-advanced-overlay[data-v-4c6e1c2a]{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-4c6e1c2a]{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-df2a5ad7]{padding:10px}.unione-table-list .unione-table-tools[data-v-df2a5ad7]{padding-bottom:10px}.unione-table-list .unione-table-tools .btn[data-v-df2a5ad7]{margin:auto 5px}.unione-table-list .unione-table-tools .btn.right[data-v-df2a5ad7]{float:right}.unione-table-list .unione-table-tools .selected-info[data-v-df2a5ad7]{margin:auto 5px;color:#2795f9;cursor:pointer}.unione-table-list .unione-table-tools .selected-info[data-v-df2a5ad7]:hover{color:red;text-decoration:line-through}.unione-table-list .unione-table-tools[data-v-df2a5ad7] .ant-btn-sm{height:27px}.unione-table-list .unione-table-opts .opt[data-v-df2a5ad7]{margin:auto 2px}.unione-table-list .unione-table-opts .opt[data-v-df2a5ad7] .widget-setting{display:block}.unione-table-list .unione-table-opts .opt.unione-widget.edit[data-v-df2a5ad7]{padding-right:8px}.unione-table-list .unione-table-opts .opt-more.small[data-v-df2a5ad7]{padding:0 5px 2px;height:24px}.unione-table-list .unione-table-opts .item[data-v-df2a5ad7] .widget-setting{display:block}.opt-more-overlay[data-v-df2a5ad7]{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-df2a5ad7]{display:flex;flex-direction:column}.opt-more-overlay .item[data-v-df2a5ad7]{padding:2px 6px}.unione-page.edit .page-setting[data-v-49c94288]{cursor:pointer;position:absolute;right:12px;margin-top:25px;display:none}.unione-page.edit .page-setting[data-v-49c94288]:hover{font-size:20px;margin-right:-2px;margin-top:23px}.unione-page.edit .btn-save[data-v-49c94288]{cursor:pointer;position:absolute;right:12px;margin-top:55px;display:none}.unione-page.edit .btn-save[data-v-49c94288]:hover{font-size:20px;margin-right:-2px;margin-top:52px}.unione-page.edit:hover .page-setting[data-v-49c94288]{display:block;animation:rotates-49c94288 2s linear infinite}.unione-page.edit:hover .btn-save[data-v-49c94288]{display:block}.unione-page .btn-edit[data-v-49c94288]{cursor:pointer;position:absolute;right:12px;margin-top:-5px}.unione-page .btn-edit[data-v-49c94288]:hover{font-size:20px;margin-right:-2px;margin-top:-7px}@keyframes rotates-49c94288{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[data-v-49c94288]{height:75vh;overflow-y:auto}.data-field-manage .btn[data-v-ec6d21c7]{margin-top:-50px;float:right}.data-field-manage .btn.btn-add[data-v-ec6d21c7]{margin-right:70px}.data-field-manage .btn.btn-delete[data-v-ec6d21c7]{margin-right:5px}.data-field-manage .edit-field[data-v-ec6d21c7]{width:100%;height:100%}.data-field-manage .edit-field.empty[data-v-ec6d21c7]{position:absolute;top:0;left:0}.data-field-manage .edit-field[data-v-ec6d21c7] .ant-input-number{width:calc(100% - 5px)}.data-field-manage .edit-field[data-v-ec6d21c7] .ant-select{width:100%}.data-field-manage[data-v-ec6d21c7] .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[data-v-2d722d75]{padding:10px;height:100%;overflow-y:auto}
1
+ .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-672f13d5]{display:inline-block;margin:auto 5px}.unione-btn.unione-btn-block[data-v-672f13d5]{width:100%}.unione-btn[data-v-672f13d5] .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-672f13d5]{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-afd7fb6a]{padding:10px}.unione-form-widget[data-v-afd7fb6a] .widget-setting{margin-top:-5px!important}.unione-form-widget .unione-form.edit[data-v-afd7fb6a]{padding:0 20px}.unione-form-widget .unione-form .unione-widget[data-v-afd7fb6a]{display:block}.unione-form-widget .unione-form .unione-widget.all-line[data-v-afd7fb6a]{width:100%!important}.unione-form-widget .unione-form .unione-widget.2in_line[data-v-afd7fb6a]{width:66.66%!important}.unione-form-widget .unione-form.form-layout-col-1 .unione-widget[data-v-afd7fb6a]{width:100%}.unione-form-widget .unione-form.form-layout-col-2 .unione-widget[data-v-afd7fb6a]{width:50%;display:inline-block}.unione-form-widget .unione-form.form-layout-col-3 .unione-widget[data-v-afd7fb6a]{width:33.33%;display:inline-block}.unione-form-widget .form-btns[data-v-afd7fb6a]{width:100%;margin:10px;text-align:center}.unione-form-widget .form-btns .btn[data-v-afd7fb6a]{margin:auto 5px}.unione-form-item .ant-form-item[data-v-1a91c715]{margin-bottom:6px}.unione-form-item .ant-form-item[data-v-1a91c715] .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-b75267b4]{margin-top:10px}.unione-table-list .unione-table-tools[data-v-b75267b4]{padding-bottom:10px}.unione-table-list .unione-table-tools .btn[data-v-b75267b4]{margin:auto 5px}.unione-table-list .unione-table-tools .btn.right[data-v-b75267b4]{float:right}.unione-table-list .unione-table-tools .selected-info[data-v-b75267b4]{margin:auto 5px;color:#2795f9;cursor:pointer}.unione-table-list .unione-table-tools .selected-info[data-v-b75267b4]:hover{color:red;text-decoration:line-through}.unione-table-list .unione-table-tools[data-v-b75267b4] .ant-btn-sm{height:27px}.unione-table-list .unione-table-opts .opt[data-v-b75267b4]{margin:auto 2px}.unione-table-list .unione-table-opts .opt[data-v-b75267b4] .widget-setting{display:block}.unione-table-list .unione-table-opts .opt-more.small[data-v-b75267b4]{padding:0 5px 2px;height:24px}.unione-table-list .unione-table-opts .item[data-v-b75267b4] .widget-setting{display:block}.opt-more-overlay[data-v-b75267b4]{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-b75267b4]{display:flex;flex-direction:column}.opt-more-overlay .item[data-v-b75267b4]{padding:2px 6px}.unione-page.edit .page-setting[data-v-49c94288]{cursor:pointer;position:absolute;right:12px;margin-top:25px;display:none}.unione-page.edit .page-setting[data-v-49c94288]:hover{font-size:20px;margin-right:-2px;margin-top:23px}.unione-page.edit .btn-save[data-v-49c94288]{cursor:pointer;position:absolute;right:12px;margin-top:55px;display:none}.unione-page.edit .btn-save[data-v-49c94288]:hover{font-size:20px;margin-right:-2px;margin-top:52px}.unione-page.edit:hover .page-setting[data-v-49c94288]{display:block;animation:rotates-49c94288 2s linear infinite}.unione-page.edit:hover .btn-save[data-v-49c94288]{display:block}.unione-page .btn-edit[data-v-49c94288]{cursor:pointer;position:absolute;right:12px;margin-top:-5px}.unione-page .btn-edit[data-v-49c94288]:hover{font-size:20px;margin-right:-2px;margin-top:-7px}@keyframes rotates-49c94288{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[data-v-49c94288]{height:75vh;overflow-y:auto}.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],.unione-page-view[data-v-15f9f222]{padding:10px;height:100%;overflow-y:auto}.unione-page-view .form-btns[data-v-15f9f222]{width:100%;margin:10px;text-align:center}.unione-page-view .form-btns .btn[data-v-15f9f222]{margin:auto 5px}.unione-page-list[data-v-3255459d]{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}