@qqt-product/system 11.0.2 → 11.0.3

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 (28) hide show
  1. package/dist/index.es.js +16109 -15582
  2. package/dist/index.umd.js +38 -38
  3. package/dist/lib/components/ExportDataModal/index.vue.d.ts +47 -0
  4. package/dist/lib/components/QAccountList/src/QAccountCreate.vue.d.ts +1 -0
  5. package/dist/lib/components/QAccountList/src/QAccountDetail.vue.d.ts +1 -0
  6. package/dist/lib/components/QAccountList/src/QAccountEdit.vue.d.ts +1 -0
  7. package/dist/lib/components/QAccountList/src/QAccountList.vue.d.ts +1 -0
  8. package/dist/lib/components/QElsMsgRecordList/src/QElsMsgRecordDetail.vue.d.ts +1 -0
  9. package/dist/lib/components/QElsTenantPortalNewsList/src/QElsTenantPortalNewsDetail.vue.d.ts +1 -0
  10. package/dist/lib/components/QElsTenantPortalNewsList/src/QElsTenantPortalNewsEdit.vue.d.ts +1 -0
  11. package/dist/lib/components/QI18nList/src/QI18nList.vue.d.ts +6 -0
  12. package/dist/lib/components/QPermissionDataList/src/QPermissionDataEdit.vue.d.ts +1 -0
  13. package/dist/lib/components/QPermissionDataList/src/QPermissionDataList.vue.d.ts +0 -1
  14. package/dist/lib/components/QPurchaseNoticeList/src/QPurchaseNoticeDetail.vue.d.ts +1 -0
  15. package/dist/lib/components/QPurchaseNoticeList/src/QPurchaseNoticeEdit.vue.d.ts +1 -0
  16. package/dist/lib/components/QRoleList/src/QRoleList.vue.d.ts +9 -0
  17. package/dist/lib/components/QRoleList/src/QRoleUserConfig.vue.d.ts +389 -0
  18. package/dist/lib/components/QUsageList/src/useConfigData.d.ts +3 -0
  19. package/dist/lib/components/index.d.ts +2 -1
  20. package/dist/lib/components/integratedNodesList/src/QIntegratedNodesDetail.vue.d.ts +1 -0
  21. package/dist/lib/components/integratedNodesList/src/QIntegratedNodesEdit.vue.d.ts +1 -0
  22. package/dist/lib/components/loginAbnormalLogList/src/index.vue.d.ts +63 -3
  23. package/dist/lib/components/loginLogList/src/index.vue.d.ts +64 -3
  24. package/dist/lib/components/operateLogList/src/index.vue.d.ts +63 -3
  25. package/dist/lib/utils/global.hook.d.ts +1 -0
  26. package/dist/lib/utils/regexp.d.ts +1 -0
  27. package/dist/style.css +1 -1
  28. package/package.json +1 -1
@@ -0,0 +1,47 @@
1
+ import type { SrmI18n } from '@qqt-product/ui/dist/lib/utils/type';
2
+ import type { DefineComponent, Ref, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
3
+ declare const _sfc_main: DefineComponent<{
4
+ visible: {
5
+ type: BooleanConstructor;
6
+ default: boolean;
7
+ };
8
+ }, {
9
+ srmI18n: SrmI18n;
10
+ emit: (event: "success" | "update:visible", ...args: any[]) => void;
11
+ props: any;
12
+ showModal: Ref<boolean>;
13
+ OnClose: () => void;
14
+ formState: Ref<{
15
+ startTime: string;
16
+ endTime: string;
17
+ }>;
18
+ formRef: Ref<any>;
19
+ loading: Ref<boolean>;
20
+ formRules: {
21
+ startTime: {
22
+ required: boolean;
23
+ message: string;
24
+ trigger: string;
25
+ }[];
26
+ endTime: {
27
+ required: boolean;
28
+ message: string;
29
+ trigger: string;
30
+ }[];
31
+ };
32
+ init: () => void;
33
+ disableStartTime: (current: any) => any;
34
+ disableEndTime: (current: any) => any;
35
+ handleOk: () => void;
36
+ }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("success" | "update:visible")[], "success" | "update:visible", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
37
+ visible: {
38
+ type: BooleanConstructor;
39
+ default: boolean;
40
+ };
41
+ }>> & {
42
+ "onUpdate:visible"?: ((...args: any[]) => any) | undefined;
43
+ onSuccess?: ((...args: any[]) => any) | undefined;
44
+ }, {
45
+ visible: boolean;
46
+ }, {}>;
47
+ export default _sfc_main;
@@ -2680,6 +2680,7 @@ declare const _sfc_main: DefineComponent<{
2680
2680
  shake?: boolean | undefined;
2681
2681
  slot?: boolean | undefined;
2682
2682
  master?: boolean | undefined;
2683
+ useAllConfig?: boolean | undefined;
2683
2684
  enableTile?: "0" | "1" | undefined;
2684
2685
  columns?: {
2685
2686
  [x: string]: unknown;
@@ -2680,6 +2680,7 @@ declare const _sfc_main: DefineComponent<{
2680
2680
  shake?: boolean | undefined;
2681
2681
  slot?: boolean | undefined;
2682
2682
  master?: boolean | undefined;
2683
+ useAllConfig?: boolean | undefined;
2683
2684
  enableTile?: "0" | "1" | undefined;
2684
2685
  columns?: {
2685
2686
  [x: string]: unknown;
@@ -2680,6 +2680,7 @@ declare const _sfc_main: DefineComponent<{
2680
2680
  shake?: boolean | undefined;
2681
2681
  slot?: boolean | undefined;
2682
2682
  master?: boolean | undefined;
2683
+ useAllConfig?: boolean | undefined;
2683
2684
  enableTile?: "0" | "1" | undefined;
2684
2685
  columns?: {
2685
2686
  [x: string]: unknown;
@@ -144,6 +144,7 @@ declare const _sfc_main: DefineComponent<{
144
144
  type: string;
145
145
  label: string;
146
146
  fieldName: string;
147
+ placeholder: string;
147
148
  }[];
148
149
  };
149
150
  pagerConfig: {};
@@ -2677,6 +2677,7 @@ declare const _sfc_main: DefineComponent<{
2677
2677
  shake?: boolean | undefined;
2678
2678
  slot?: boolean | undefined;
2679
2679
  master?: boolean | undefined;
2680
+ useAllConfig?: boolean | undefined;
2680
2681
  enableTile?: "0" | "1" | undefined;
2681
2682
  columns?: {
2682
2683
  [x: string]: unknown;
@@ -2677,6 +2677,7 @@ declare const _sfc_main: DefineComponent<{
2677
2677
  shake?: boolean | undefined;
2678
2678
  slot?: boolean | undefined;
2679
2679
  master?: boolean | undefined;
2680
+ useAllConfig?: boolean | undefined;
2680
2681
  enableTile?: "0" | "1" | undefined;
2681
2682
  columns?: {
2682
2683
  [x: string]: unknown;
@@ -2683,6 +2683,7 @@ declare const _sfc_main: DefineComponent<{
2683
2683
  shake?: boolean | undefined;
2684
2684
  slot?: boolean | undefined;
2685
2685
  master?: boolean | undefined;
2686
+ useAllConfig?: boolean | undefined;
2686
2687
  enableTile?: "0" | "1" | undefined;
2687
2688
  columns?: {
2688
2689
  [x: string]: unknown;
@@ -57,6 +57,7 @@ declare const _sfc_main: DefineComponent<{
57
57
  attrs: {
58
58
  type: string;
59
59
  };
60
+ disabled: () => boolean;
60
61
  click: () => void;
61
62
  type?: undefined;
62
63
  args?: undefined;
@@ -72,6 +73,7 @@ declare const _sfc_main: DefineComponent<{
72
73
  };
73
74
  authorityCode?: undefined;
74
75
  attrs?: undefined;
76
+ disabled?: undefined;
75
77
  click?: undefined;
76
78
  } | {
77
79
  label: string;
@@ -85,6 +87,7 @@ declare const _sfc_main: DefineComponent<{
85
87
  type: string;
86
88
  authorityCode?: undefined;
87
89
  attrs?: undefined;
90
+ disabled?: undefined;
88
91
  click?: undefined;
89
92
  } | {
90
93
  authorityCode: string;
@@ -92,6 +95,7 @@ declare const _sfc_main: DefineComponent<{
92
95
  click: () => void;
93
96
  icon?: undefined;
94
97
  attrs?: undefined;
98
+ disabled?: undefined;
95
99
  type?: undefined;
96
100
  args?: undefined;
97
101
  } | {
@@ -102,11 +106,13 @@ declare const _sfc_main: DefineComponent<{
102
106
  type: string;
103
107
  authorityCode?: undefined;
104
108
  attrs?: undefined;
109
+ disabled?: undefined;
105
110
  click?: undefined;
106
111
  args?: undefined;
107
112
  })[];
108
113
  };
109
114
  queryConfig: {
115
+ needAdvancedquery: boolean;
110
116
  attrs: {};
111
117
  extend: {};
112
118
  form: {
@@ -2679,6 +2679,7 @@ declare const _sfc_main: DefineComponent<{
2679
2679
  shake?: boolean | undefined;
2680
2680
  slot?: boolean | undefined;
2681
2681
  master?: boolean | undefined;
2682
+ useAllConfig?: boolean | undefined;
2682
2683
  enableTile?: "0" | "1" | undefined;
2683
2684
  columns?: {
2684
2685
  [x: string]: unknown;
@@ -67,7 +67,6 @@ declare const _sfc_main: DefineComponent<{}, {
67
67
  type: string;
68
68
  label: string;
69
69
  fieldName: string;
70
- placeholder: string;
71
70
  }[];
72
71
  };
73
72
  pagerConfig: {};
@@ -2677,6 +2677,7 @@ declare const _sfc_main: DefineComponent<{
2677
2677
  shake?: boolean | undefined;
2678
2678
  slot?: boolean | undefined;
2679
2679
  master?: boolean | undefined;
2680
+ useAllConfig?: boolean | undefined;
2680
2681
  enableTile?: "0" | "1" | undefined;
2681
2682
  columns?: {
2682
2683
  [x: string]: unknown;
@@ -2686,6 +2686,7 @@ declare const _sfc_main: DefineComponent<{
2686
2686
  shake?: boolean | undefined;
2687
2687
  slot?: boolean | undefined;
2688
2688
  master?: boolean | undefined;
2689
+ useAllConfig?: boolean | undefined;
2689
2690
  enableTile?: "0" | "1" | undefined;
2690
2691
  columns?: {
2691
2692
  [x: string]: unknown;
@@ -1,6 +1,7 @@
1
1
  import type { SrmI18n } from '@qqt-product/ui/dist/lib/utils/type';
2
2
  import type { DefineComponent, Ref, ShallowRef, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
3
3
  import { MapObjectNoneType } from '../../../utils/global.types';
4
+ import { GlobalListPageLayoutTypes } from '@qqt-product/ui';
4
5
  declare const _sfc_main: DefineComponent<{
5
6
  userInfo: {
6
7
  type: ObjectConstructor;
@@ -77,6 +78,13 @@ declare const _sfc_main: DefineComponent<{
77
78
  row?: MapObjectNoneType | undefined;
78
79
  }) => boolean;
79
80
  click?: undefined;
81
+ } | {
82
+ title: string;
83
+ click: ({ row }: GlobalListPageLayoutTypes.ListOptionsEventParams) => void;
84
+ authorityCode?: undefined;
85
+ type?: undefined;
86
+ disabled?: undefined;
87
+ args?: undefined;
80
88
  })[];
81
89
  };
82
90
  buttonConfig: {
@@ -120,6 +128,7 @@ declare const _sfc_main: DefineComponent<{
120
128
  type: string;
121
129
  label: string;
122
130
  fieldName: string;
131
+ placeholder: string;
123
132
  }[];
124
133
  };
125
134
  pagerConfig: {};
@@ -0,0 +1,389 @@
1
+ import type { SrmI18n } from '@qqt-product/ui/dist/lib/utils/type';
2
+ import type { DefineComponent, Ref, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
3
+ import type { VxeColumnSlotTypes, VxeTableDataRow, SlotVNodeType, VxeColumnPropTypes, VxeTablePropTypes, VxeTooltipPropTypes, SizeType, VxePagerPropTypes, VxeTableDefines } from 'vxe-table';
4
+ import { GlobalPageLayoutTypes } from '@qqt-product/ui';
5
+ import qqtApi from '@qqt-product/api';
6
+ declare const _sfc_main: DefineComponent<{
7
+ businessId: {
8
+ type: StringConstructor;
9
+ required: true;
10
+ };
11
+ templateVersion: {
12
+ type: StringConstructor;
13
+ required: true;
14
+ };
15
+ currentRow: {
16
+ type: null;
17
+ required: true;
18
+ };
19
+ userInfo: {
20
+ type: null;
21
+ required: true;
22
+ };
23
+ }, {
24
+ srmI18n: SrmI18n;
25
+ props: any;
26
+ emits: (event: "pageBack", ...args: any[]) => void;
27
+ currentRow: any;
28
+ qHttp: qqtApi.Request;
29
+ form: any;
30
+ confirmLoading: Ref<boolean>;
31
+ userAllTableLoading: Ref<boolean>;
32
+ userTableLoading: Ref<boolean>;
33
+ userAllListKeyWord: Ref<string>;
34
+ userListKeyWord: Ref<string>;
35
+ userAllTableData: Ref<GlobalPageLayoutTypes.RecordString[]>;
36
+ userTableData: Ref<GlobalPageLayoutTypes.RecordString[]>;
37
+ userTableColumns: {
38
+ children?: any[] | undefined;
39
+ slots?: {
40
+ title?: string | ((params: VxeColumnSlotTypes.HeaderSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
41
+ radio?: string | ((params: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
42
+ checkbox?: string | ((params: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
43
+ default?: string | ((params: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
44
+ header?: string | ((params: VxeColumnSlotTypes.HeaderSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
45
+ footer?: string | ((params: VxeColumnSlotTypes.FooterSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
46
+ content?: string | ((params: VxeColumnSlotTypes.ContentSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
47
+ filter?: string | ((params: VxeColumnSlotTypes.FilterSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
48
+ edit?: string | ((params: VxeColumnSlotTypes.EditSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
49
+ icon?: string | ((params: VxeColumnSlotTypes.IconSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
50
+ } | undefined;
51
+ colId?: VxeColumnPropTypes.ColId | undefined;
52
+ type?: VxeColumnPropTypes.Type | undefined;
53
+ field?: string | undefined;
54
+ title?: string | undefined;
55
+ width?: VxeColumnPropTypes.Width | undefined;
56
+ minWidth?: VxeColumnPropTypes.MinWidth | undefined;
57
+ maxWidth?: VxeColumnPropTypes.MaxWidth | undefined;
58
+ resizable?: boolean | undefined;
59
+ fixed?: VxeColumnPropTypes.Fixed | undefined;
60
+ align?: VxeColumnPropTypes.Align | undefined;
61
+ headerAlign?: VxeColumnPropTypes.Align | undefined;
62
+ footerAlign?: VxeColumnPropTypes.Align | undefined;
63
+ showOverflow?: VxeTablePropTypes.ShowOverflow | undefined;
64
+ showHeaderOverflow?: VxeTablePropTypes.ShowOverflow | undefined;
65
+ showFooterOverflow?: VxeTablePropTypes.ShowOverflow | undefined;
66
+ className?: VxeColumnPropTypes.ClassName<VxeTableDataRow> | undefined;
67
+ headerClassName?: VxeColumnPropTypes.HeaderClassName<VxeTableDataRow> | undefined;
68
+ footerClassName?: VxeColumnPropTypes.FooterClassName<VxeTableDataRow> | undefined;
69
+ formatter?: VxeColumnPropTypes.Formatter<VxeTableDataRow> | undefined;
70
+ sortable?: boolean | undefined;
71
+ sortBy?: VxeColumnPropTypes.SortBy<VxeTableDataRow> | undefined;
72
+ sortType?: VxeColumnPropTypes.SortType | undefined;
73
+ filters?: {
74
+ label?: string | number | undefined;
75
+ value?: any;
76
+ data?: any;
77
+ resetValue?: any;
78
+ checked?: boolean | undefined;
79
+ }[] | undefined;
80
+ filterMultiple?: boolean | undefined;
81
+ filterMethod?: VxeColumnPropTypes.FilterMethod<VxeTableDataRow> | undefined;
82
+ filterRender?: {
83
+ options?: any[] | undefined;
84
+ optionProps?: {
85
+ value?: string | undefined;
86
+ label?: string | undefined;
87
+ key?: string | undefined;
88
+ } | undefined;
89
+ optionGroups?: any[] | undefined;
90
+ optionGroupProps?: {
91
+ options?: string | undefined;
92
+ label?: string | undefined;
93
+ key?: string | undefined;
94
+ } | undefined;
95
+ content?: string | undefined;
96
+ name?: string | undefined;
97
+ props?: {
98
+ [key: string]: any;
99
+ } | undefined;
100
+ attrs?: {
101
+ [key: string]: any;
102
+ } | undefined;
103
+ events?: {
104
+ [key: string]: (...args: any[]) => any;
105
+ } | undefined;
106
+ children?: any[] | undefined;
107
+ cellType?: "string" | "number" | undefined;
108
+ } | undefined;
109
+ treeNode?: boolean | undefined;
110
+ visible?: boolean | undefined;
111
+ exportMethod?: VxeColumnPropTypes.ExportMethod<VxeTableDataRow> | undefined;
112
+ footerExportMethod?: VxeColumnPropTypes.FooterExportMethod<VxeTableDataRow> | undefined;
113
+ titleHelp?: {
114
+ useHTML?: boolean | undefined;
115
+ content?: VxeTooltipPropTypes.Content | undefined;
116
+ enterable?: boolean | undefined;
117
+ theme?: string | undefined;
118
+ icon?: string | undefined;
119
+ message?: string | undefined;
120
+ } | undefined;
121
+ titlePrefix?: {
122
+ useHTML?: boolean | undefined;
123
+ content?: VxeTooltipPropTypes.Content | undefined;
124
+ enterable?: boolean | undefined;
125
+ theme?: string | undefined;
126
+ icon?: string | undefined;
127
+ message?: string | undefined;
128
+ } | undefined;
129
+ cellType?: VxeColumnPropTypes.CellType | undefined;
130
+ cellRender?: {
131
+ events?: {
132
+ [key: string]: (cellParams: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>, ...args: any[]) => any;
133
+ } | undefined;
134
+ options?: any[] | undefined;
135
+ optionProps?: {
136
+ value?: string | undefined;
137
+ label?: string | undefined;
138
+ key?: string | undefined;
139
+ } | undefined;
140
+ optionGroups?: any[] | undefined;
141
+ optionGroupProps?: {
142
+ options?: string | undefined;
143
+ label?: string | undefined;
144
+ key?: string | undefined;
145
+ } | undefined;
146
+ content?: string | undefined;
147
+ name?: string | undefined;
148
+ props?: {
149
+ [key: string]: any;
150
+ } | undefined;
151
+ attrs?: {
152
+ [key: string]: any;
153
+ } | undefined;
154
+ children?: any[] | undefined;
155
+ cellType?: "string" | "number" | undefined;
156
+ } | undefined;
157
+ editRender?: {
158
+ events?: {
159
+ [key: string]: (cellParams: VxeColumnSlotTypes.EditSlotParams<VxeTableDataRow>, ...args: any[]) => any;
160
+ } | undefined;
161
+ enabled?: boolean | undefined;
162
+ options?: any[] | undefined;
163
+ optionProps?: {
164
+ value?: string | undefined;
165
+ label?: string | undefined;
166
+ key?: string | undefined;
167
+ } | undefined;
168
+ optionGroups?: any[] | undefined;
169
+ optionGroupProps?: {
170
+ options?: string | undefined;
171
+ label?: string | undefined;
172
+ key?: string | undefined;
173
+ } | undefined;
174
+ autofocus?: string | undefined;
175
+ autoselect?: boolean | undefined;
176
+ defaultValue?: string | number | object | any[] | ((params: {
177
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
178
+ }) => any) | {
179
+ exec: (string: string) => RegExpExecArray | null;
180
+ test: (string: string) => boolean;
181
+ readonly source: string;
182
+ readonly global: boolean;
183
+ readonly ignoreCase: boolean;
184
+ readonly multiline: boolean;
185
+ lastIndex: number;
186
+ compile: (pattern: string, flags?: string | undefined) => RegExp;
187
+ readonly flags: string;
188
+ readonly sticky: boolean;
189
+ readonly unicode: boolean;
190
+ readonly dotAll: boolean;
191
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
192
+ [Symbol.replace]: {
193
+ (string: string, replaceValue: string): string;
194
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
195
+ };
196
+ [Symbol.search]: (string: string) => number;
197
+ [Symbol.split]: (string: string, limit?: number | undefined) => string[];
198
+ [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
199
+ } | {
200
+ toString: () => string;
201
+ toDateString: () => string;
202
+ toTimeString: () => string;
203
+ toLocaleString: {
204
+ (): string;
205
+ (locales?: string | string[] | undefined, options?: Intl.DateTimeFormatOptions | undefined): string;
206
+ (locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions | undefined): string;
207
+ };
208
+ toLocaleDateString: {
209
+ (): string;
210
+ (locales?: string | string[] | undefined, options?: Intl.DateTimeFormatOptions | undefined): string;
211
+ (locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions | undefined): string;
212
+ };
213
+ toLocaleTimeString: {
214
+ (): string;
215
+ (locales?: string | string[] | undefined, options?: Intl.DateTimeFormatOptions | undefined): string;
216
+ (locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions | undefined): string;
217
+ };
218
+ valueOf: () => number;
219
+ getTime: () => number;
220
+ getFullYear: () => number;
221
+ getUTCFullYear: () => number;
222
+ getMonth: () => number;
223
+ getUTCMonth: () => number;
224
+ getDate: () => number;
225
+ getUTCDate: () => number;
226
+ getDay: () => number;
227
+ getUTCDay: () => number;
228
+ getHours: () => number;
229
+ getUTCHours: () => number;
230
+ getMinutes: () => number;
231
+ getUTCMinutes: () => number;
232
+ getSeconds: () => number;
233
+ getUTCSeconds: () => number;
234
+ getMilliseconds: () => number;
235
+ getUTCMilliseconds: () => number;
236
+ getTimezoneOffset: () => number;
237
+ setTime: (time: number) => number;
238
+ setMilliseconds: (ms: number) => number;
239
+ setUTCMilliseconds: (ms: number) => number;
240
+ setSeconds: (sec: number, ms?: number | undefined) => number;
241
+ setUTCSeconds: (sec: number, ms?: number | undefined) => number;
242
+ setMinutes: (min: number, sec?: number | undefined, ms?: number | undefined) => number;
243
+ setUTCMinutes: (min: number, sec?: number | undefined, ms?: number | undefined) => number;
244
+ setHours: (hours: number, min?: number | undefined, sec?: number | undefined, ms?: number | undefined) => number;
245
+ setUTCHours: (hours: number, min?: number | undefined, sec?: number | undefined, ms?: number | undefined) => number;
246
+ setDate: (date: number) => number;
247
+ setUTCDate: (date: number) => number;
248
+ setMonth: (month: number, date?: number | undefined) => number;
249
+ setUTCMonth: (month: number, date?: number | undefined) => number;
250
+ setFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
251
+ setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
252
+ toUTCString: () => string;
253
+ toISOString: () => string;
254
+ toJSON: (key?: any) => string;
255
+ [Symbol.toPrimitive]: {
256
+ (hint: "default"): string;
257
+ (hint: "string"): string;
258
+ (hint: "number"): number;
259
+ (hint: string): string | number;
260
+ };
261
+ } | null | undefined;
262
+ immediate?: boolean | undefined;
263
+ content?: string | undefined;
264
+ placeholder?: string | undefined;
265
+ name?: string | undefined;
266
+ props?: {
267
+ [key: string]: any;
268
+ } | undefined;
269
+ attrs?: {
270
+ [key: string]: any;
271
+ } | undefined;
272
+ children?: any[] | undefined;
273
+ cellType?: "string" | "number" | undefined;
274
+ } | undefined;
275
+ contentRender?: {
276
+ options?: any[] | undefined;
277
+ optionProps?: {
278
+ value?: string | undefined;
279
+ label?: string | undefined;
280
+ key?: string | undefined;
281
+ } | undefined;
282
+ optionGroups?: any[] | undefined;
283
+ optionGroupProps?: {
284
+ options?: string | undefined;
285
+ label?: string | undefined;
286
+ key?: string | undefined;
287
+ } | undefined;
288
+ name?: string | undefined;
289
+ props?: {
290
+ [key: string]: any;
291
+ } | undefined;
292
+ attrs?: {
293
+ [key: string]: any;
294
+ } | undefined;
295
+ events?: {
296
+ [key: string]: (...args: any[]) => any;
297
+ } | undefined;
298
+ children?: any[] | undefined;
299
+ cellType?: "string" | "number" | undefined;
300
+ } | undefined;
301
+ params?: any;
302
+ }[];
303
+ userAllTablePage: {
304
+ enabled?: boolean | undefined;
305
+ slots?: any;
306
+ size?: SizeType | undefined;
307
+ layouts?: ("PrevJump" | "PrevPage" | "Number" | "JumpNumber" | "NextPage" | "NextJump" | "Sizes" | "Jump" | "FullJump" | "PageCount" | "Total")[] | undefined;
308
+ currentPage?: number | undefined;
309
+ loading?: boolean | undefined;
310
+ pageSize?: number | undefined;
311
+ total?: number | undefined;
312
+ pagerCount?: number | undefined;
313
+ pageSizes?: (number | {
314
+ label?: string | number | undefined;
315
+ value?: string | number | undefined;
316
+ })[] | undefined;
317
+ align?: string | undefined;
318
+ border?: boolean | undefined;
319
+ background?: boolean | undefined;
320
+ perfect?: boolean | undefined;
321
+ autoHidden?: boolean | undefined;
322
+ transfer?: boolean | undefined;
323
+ className?: VxePagerPropTypes.ClassName | undefined;
324
+ iconPrevPage?: string | undefined;
325
+ iconJumpPrev?: string | undefined;
326
+ iconJumpNext?: string | undefined;
327
+ iconNextPage?: string | undefined;
328
+ iconJumpMore?: string | undefined;
329
+ };
330
+ userTablePage: {
331
+ enabled?: boolean | undefined;
332
+ slots?: any;
333
+ size?: SizeType | undefined;
334
+ layouts?: ("PrevJump" | "PrevPage" | "Number" | "JumpNumber" | "NextPage" | "NextJump" | "Sizes" | "Jump" | "FullJump" | "PageCount" | "Total")[] | undefined;
335
+ currentPage?: number | undefined;
336
+ loading?: boolean | undefined;
337
+ pageSize?: number | undefined;
338
+ total?: number | undefined;
339
+ pagerCount?: number | undefined;
340
+ pageSizes?: (number | {
341
+ label?: string | number | undefined;
342
+ value?: string | number | undefined;
343
+ })[] | undefined;
344
+ align?: string | undefined;
345
+ border?: boolean | undefined;
346
+ background?: boolean | undefined;
347
+ perfect?: boolean | undefined;
348
+ autoHidden?: boolean | undefined;
349
+ transfer?: boolean | undefined;
350
+ className?: VxePagerPropTypes.ClassName | undefined;
351
+ iconPrevPage?: string | undefined;
352
+ iconJumpPrev?: string | undefined;
353
+ iconJumpNext?: string | undefined;
354
+ iconNextPage?: string | undefined;
355
+ iconJumpMore?: string | undefined;
356
+ };
357
+ userAllListHandlePageChange: ({ currentPage, pageSize }: {
358
+ currentPage: any;
359
+ pageSize: any;
360
+ }) => void;
361
+ userListHandlePageChange: ({ currentPage, pageSize }: {
362
+ currentPage: any;
363
+ pageSize: any;
364
+ }) => void;
365
+ usersAllLoadData: () => void;
366
+ usersLoadData: () => void;
367
+ handleDispose: (type: string, row: GlobalPageLayoutTypes.RecordString) => void;
368
+ handleBack: () => void;
369
+ }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "pageBack"[], "pageBack", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
370
+ businessId: {
371
+ type: StringConstructor;
372
+ required: true;
373
+ };
374
+ templateVersion: {
375
+ type: StringConstructor;
376
+ required: true;
377
+ };
378
+ currentRow: {
379
+ type: null;
380
+ required: true;
381
+ };
382
+ userInfo: {
383
+ type: null;
384
+ required: true;
385
+ };
386
+ }>> & {
387
+ onPageBack?: ((...args: any[]) => any) | undefined;
388
+ }, {}, {}>;
389
+ export default _sfc_main;
@@ -84,6 +84,9 @@ export declare function useConfigData(srmI18n: any): {
84
84
  width: string;
85
85
  type: string;
86
86
  data: string[];
87
+ textStyle: {
88
+ color: string;
89
+ };
87
90
  };
88
91
  toolbox: {
89
92
  show: boolean;
@@ -18,6 +18,7 @@ import * as QAccountEdit from './QAccountList/src/QAccountEdit.vue';
18
18
  import * as QAccountCreate from './QAccountList/src/QAccountCreate.vue';
19
19
  import * as QAccountDetail from './QAccountList/src/QAccountDetail.vue';
20
20
  import * as QRoleList from './QRoleList/src/QRoleList.vue';
21
+ import * as QRoleUserConfig from './QRoleList/src/QRoleUserConfig.vue';
21
22
  import * as QPermissionDataList from './QPermissionDataList/src/QPermissionDataList.vue';
22
23
  import * as QPermissionDataEdit from './QPermissionDataList/src/QPermissionDataEdit.vue';
23
24
  import * as QPermissionDataAuth from './QPermissionDataList/src/QPermissionDataAuth.vue';
@@ -38,4 +39,4 @@ import * as QMqRecordList from './QMqRecordList/src/QMqRecordList.vue';
38
39
  import * as QUsageList from './QUsageList/src/QUsageList.vue';
39
40
  import * as QCostCustomConfigEdit from './QCostCustomConfigEdit/src/QCostCustomConfigEdit.vue';
40
41
  import * as QCostCustomConfigList from './QCostCustomConfigList/src/QCostCustomConfigList.vue';
41
- export { QCostCustomConfigList, QCostCustomConfigEdit, QcustomConfigEdit, QcustomConfigList, QsysConfigList, QLoginLogList, QOperateLogList, QLoginSupplierLogList, QLoginAbnormalLogList, QIntegratedNodesList, QIntegratedNodesEdit, QIntegratedNodesDetail, QIntegratedReportList, QIntegratedReportSearchList, QPasswordSecurityPolicy, QI18nList, QSupplierAccountList, QAccountList, QAccountEdit, QAccountCreate, QAccountDetail, QRoleList, QPermissionDataList, QPermissionDataEdit, QPermissionDataAuth, QPurchaseNoticeTemplateList, QElsTenantPortalNewsList, QElsTenantPortalNewsEdit, QElsTenantPortalNewsDetail, QPurchaseNoticeList, QPurchaseNoticeEdit, QPurchaseNoticeDetail, QElsMsgRecordList, QElsMsgRecordDetail, QImChatGroupList, QElsEmailSendLogList, QQuartzJobList, QBackgroundFileTaskList, QMqRecordList, QUsageList, };
42
+ export { QCostCustomConfigList, QCostCustomConfigEdit, QcustomConfigEdit, QcustomConfigList, QsysConfigList, QLoginLogList, QOperateLogList, QLoginSupplierLogList, QLoginAbnormalLogList, QIntegratedNodesList, QIntegratedNodesEdit, QIntegratedNodesDetail, QIntegratedReportList, QIntegratedReportSearchList, QPasswordSecurityPolicy, QI18nList, QSupplierAccountList, QAccountList, QAccountEdit, QAccountCreate, QAccountDetail, QRoleList, QRoleUserConfig, QPermissionDataList, QPermissionDataEdit, QPermissionDataAuth, QPurchaseNoticeTemplateList, QElsTenantPortalNewsList, QElsTenantPortalNewsEdit, QElsTenantPortalNewsDetail, QPurchaseNoticeList, QPurchaseNoticeEdit, QPurchaseNoticeDetail, QElsMsgRecordList, QElsMsgRecordDetail, QImChatGroupList, QElsEmailSendLogList, QQuartzJobList, QBackgroundFileTaskList, QMqRecordList, QUsageList, };
@@ -2681,6 +2681,7 @@ declare const _sfc_main: DefineComponent<{
2681
2681
  shake?: boolean | undefined;
2682
2682
  slot?: boolean | undefined;
2683
2683
  master?: boolean | undefined;
2684
+ useAllConfig?: boolean | undefined;
2684
2685
  enableTile?: "0" | "1" | undefined;
2685
2686
  columns?: {
2686
2687
  [x: string]: unknown;
@@ -2683,6 +2683,7 @@ declare const _sfc_main: DefineComponent<{
2683
2683
  shake?: boolean | undefined;
2684
2684
  slot?: boolean | undefined;
2685
2685
  master?: boolean | undefined;
2686
+ useAllConfig?: boolean | undefined;
2686
2687
  enableTile?: "0" | "1" | undefined;
2687
2688
  columns?: {
2688
2689
  [x: string]: unknown;