cnhis-design-vue 3.1.27-beta.6 → 3.1.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/components/index.css +1 -1
- package/es/components/scale-view/src/components/formitem/standard-modal.d.ts +2 -2
- package/es/components/scale-view/src/hooks/use-component.d.ts +3 -3
- package/es/components/search-cascader/index.d.ts +1 -1
- package/es/components/search-cascader/src/SearchCascader.vue.d.ts +1 -1
- package/es/components/select-label/index.d.ts +5 -5
- package/es/components/select-label/src/LabelFormContent.vue.d.ts +2 -2
- package/es/components/select-label/src/SelectLabel.vue.d.ts +3 -3
- package/es/components/select-person/index.d.ts +69 -326
- package/es/components/select-person/src/SelectPerson.vue.d.ts +69 -328
- package/es/components/select-person/src/SelectPerson.vue_vue_type_script_setup_true_lang.js +185 -884
- package/es/components/select-person/src/utils/index.d.ts +2 -12
- package/es/components/select-person/src/utils/index.js +39 -79
- package/es/components/select-person/style/index.css +1 -1
- package/es/components/steps-wheel/src/StepsWheel.js +19 -20
- package/es/components/steps-wheel/style/index.css +1 -1
- package/package.json +2 -2
- package/es/components/select-person/src/SearchTree.js +0 -6
- package/es/components/select-person/src/SearchTree.vue_vue_type_script_setup_true_lang.js +0 -233
|
@@ -1,12 +1,4 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
visible: {
|
|
3
|
-
type: BooleanConstructor;
|
|
4
|
-
default: boolean;
|
|
5
|
-
};
|
|
6
|
-
isDetail: {
|
|
7
|
-
type: BooleanConstructor;
|
|
8
|
-
default: boolean;
|
|
9
|
-
};
|
|
10
2
|
defaultList: {
|
|
11
3
|
type: ArrayConstructor;
|
|
12
4
|
default: () => never[];
|
|
@@ -31,19 +23,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
31
23
|
type: ObjectConstructor;
|
|
32
24
|
default: () => {};
|
|
33
25
|
};
|
|
34
|
-
SearchLoadMore: {
|
|
35
|
-
type: BooleanConstructor;
|
|
36
|
-
default: boolean;
|
|
37
|
-
};
|
|
38
|
-
queryMainTreeData: {
|
|
39
|
-
type: FunctionConstructor;
|
|
40
|
-
};
|
|
41
|
-
queryLoadChildData: {
|
|
42
|
-
type: FunctionConstructor;
|
|
43
|
-
};
|
|
44
|
-
queryTreeSearch: {
|
|
45
|
-
type: FunctionConstructor;
|
|
46
|
-
};
|
|
47
26
|
showCount: {
|
|
48
27
|
type: BooleanConstructor;
|
|
49
28
|
default: boolean;
|
|
@@ -58,14 +37,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
58
37
|
};
|
|
59
38
|
}, {
|
|
60
39
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
61
|
-
visible: {
|
|
62
|
-
type: BooleanConstructor;
|
|
63
|
-
default: boolean;
|
|
64
|
-
};
|
|
65
|
-
isDetail: {
|
|
66
|
-
type: BooleanConstructor;
|
|
67
|
-
default: boolean;
|
|
68
|
-
};
|
|
69
40
|
defaultList: {
|
|
70
41
|
type: ArrayConstructor;
|
|
71
42
|
default: () => never[];
|
|
@@ -90,19 +61,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
90
61
|
type: ObjectConstructor;
|
|
91
62
|
default: () => {};
|
|
92
63
|
};
|
|
93
|
-
SearchLoadMore: {
|
|
94
|
-
type: BooleanConstructor;
|
|
95
|
-
default: boolean;
|
|
96
|
-
};
|
|
97
|
-
queryMainTreeData: {
|
|
98
|
-
type: FunctionConstructor;
|
|
99
|
-
};
|
|
100
|
-
queryLoadChildData: {
|
|
101
|
-
type: FunctionConstructor;
|
|
102
|
-
};
|
|
103
|
-
queryTreeSearch: {
|
|
104
|
-
type: FunctionConstructor;
|
|
105
|
-
};
|
|
106
64
|
showCount: {
|
|
107
65
|
type: BooleanConstructor;
|
|
108
66
|
default: boolean;
|
|
@@ -116,127 +74,36 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
116
74
|
default: boolean;
|
|
117
75
|
};
|
|
118
76
|
}>> & {
|
|
119
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
120
77
|
onCheck?: ((...args: any[]) => any) | undefined;
|
|
121
|
-
onPubCheckedTreeItem?: ((...args: any[]) => any) | undefined;
|
|
122
|
-
onHandleOk?: ((...args: any[]) => any) | undefined;
|
|
123
|
-
onSubmitData?: ((...args: any[]) => any) | undefined;
|
|
124
|
-
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
125
78
|
}>>;
|
|
126
79
|
$message: import("naive-ui").MessageApi;
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
other: never[];
|
|
139
|
-
};
|
|
140
|
-
checkedKeys: {
|
|
141
|
-
main: never[];
|
|
142
|
-
other: never[];
|
|
143
|
-
};
|
|
144
|
-
search: {
|
|
145
|
-
defaultExpandedKeys: never[];
|
|
146
|
-
status: number;
|
|
147
|
-
dataListKeys: {
|
|
148
|
-
main: never[];
|
|
149
|
-
other: never[];
|
|
150
|
-
};
|
|
151
|
-
records: number;
|
|
152
|
-
};
|
|
153
|
-
searchValue: string;
|
|
154
|
-
searchPage: number;
|
|
155
|
-
searchNoMore: boolean;
|
|
156
|
-
title: string;
|
|
157
|
-
checkedLeafKeys: never[];
|
|
158
|
-
spinning: boolean;
|
|
159
|
-
loadMorenLoadinng: boolean;
|
|
160
|
-
errorMsg: string;
|
|
161
|
-
defaultShowList: never[];
|
|
162
|
-
checkedKeysMain: never[];
|
|
163
|
-
cacheParentIdObj: {};
|
|
164
|
-
singleChecked: boolean;
|
|
165
|
-
indeterminate: boolean;
|
|
166
|
-
searchIndeterminate: boolean;
|
|
167
|
-
searchChecked: boolean;
|
|
168
|
-
};
|
|
169
|
-
emit: (event: "check" | "pubCheckedTreeItem" | "handleOk" | "change" | "submitData" | "update:visible", ...args: any[]) => void;
|
|
170
|
-
searchTreeVisable: import("vue").ComputedRef<boolean>;
|
|
171
|
-
dataListMainKeys: import("vue").ComputedRef<any[]>;
|
|
172
|
-
dataListOtherKeys: import("vue").ComputedRef<any[]>;
|
|
173
|
-
checkedTreeItem: import("vue").ComputedRef<any>;
|
|
174
|
-
wordbookConfig: import("vue").ComputedRef<{
|
|
175
|
-
parent_id_obj: any;
|
|
176
|
-
parent_name_obj: any;
|
|
177
|
-
user_id_obj: any;
|
|
178
|
-
user_name_obj: any;
|
|
179
|
-
}>;
|
|
180
|
-
getLoadChildData: import("vue").ComputedRef<((option: any) => Promise<unknown>) | null>;
|
|
80
|
+
emit: (event: "check", ...args: any[]) => void;
|
|
81
|
+
keyword: import("vue").Ref<string>;
|
|
82
|
+
checkedAll: import("vue").Ref<boolean>;
|
|
83
|
+
checkedKeys: import("vue").Ref<never[]>;
|
|
84
|
+
expandedKeys: import("vue").Ref<never[]>;
|
|
85
|
+
treeData: import("vue").Ref<never[]>;
|
|
86
|
+
tagData: import("vue").Ref<never[]>;
|
|
87
|
+
temp: unknown[];
|
|
88
|
+
allCheckedKeys: never[];
|
|
89
|
+
init: () => void;
|
|
90
|
+
transformTree: (tree: any) => void;
|
|
181
91
|
renderLabel: ({ option }: {
|
|
182
92
|
option: any;
|
|
183
93
|
}) => any;
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
handleDefMapping: (v: any) => void;
|
|
187
|
-
staticDataInit: () => void;
|
|
188
|
-
getcheckedKeys: () => {
|
|
189
|
-
checkedKeysMain: never[];
|
|
190
|
-
checkedKeysOther: never[];
|
|
191
|
-
};
|
|
192
|
-
loadSelected: () => Promise<void | undefined[]>;
|
|
193
|
-
onLoadData: (option: any) => Promise<unknown>;
|
|
194
|
-
getUsers: () => Promise<void>;
|
|
195
|
-
loadMainChildData: (searchResultTreeData: any) => Promise<unknown>;
|
|
196
|
-
handleLoadChildData: (key: any, option: any) => Promise<any>;
|
|
197
|
-
generateDataList: (data: any, dataList: any) => void;
|
|
198
|
-
addCheckedKeysChildrenMain: (item: any) => false | undefined;
|
|
199
|
-
hanldeFilterDefaultShowList: (list: any) => void;
|
|
200
|
-
searchFetch: (data?: {}, config?: {}) => Promise<false | undefined>;
|
|
201
|
-
refreshSearchTree: () => false | undefined;
|
|
202
|
-
generateSearchDataListKeys: (searchResultTreeData: any) => void;
|
|
203
|
-
insertSearchTreeData: (item: any) => void;
|
|
204
|
-
insertSearchTreeDataOther: (item: any) => false | undefined;
|
|
205
|
-
isSearchAllCheck: () => void;
|
|
206
|
-
staticDataSearch: () => void;
|
|
207
|
-
onExpand: (expandedKeys: any) => void;
|
|
94
|
+
getLabelName: (option: any) => any;
|
|
95
|
+
setAllCheckedKeys: (tree: any) => void;
|
|
208
96
|
searchClick: () => void;
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
removeCheckedkeysMain: (keys: any) => void;
|
|
216
|
-
addCheckedkeysOther: (keys: any) => void;
|
|
217
|
-
removeCheckedkeysOther: (keys: any) => void;
|
|
218
|
-
handleDeldefaultShowList: (key: any) => void;
|
|
219
|
-
closeDefaultTag: (tag: any, i: any) => void;
|
|
220
|
-
closeTag: (removedTag: any) => void;
|
|
97
|
+
setTreeCheckd: (tree: any, checked: any) => void;
|
|
98
|
+
checkedAllChange: (checked: any) => void;
|
|
99
|
+
uniq: (arr: any) => any;
|
|
100
|
+
setTagData: (tree: any) => void;
|
|
101
|
+
updateTreeChecked: (keys: any) => void;
|
|
102
|
+
setCheckedAll: () => void;
|
|
221
103
|
clearAll: () => void;
|
|
222
|
-
|
|
223
|
-
removedCheckedkeysMain: (tag: any) => false | undefined;
|
|
224
|
-
removedCheckedkeysOther: (tag: any) => false | undefined;
|
|
225
|
-
OtherRemoveCheckedkeysIncludeChildren: (parentKey: any) => void;
|
|
226
|
-
getCheckedMainChildKeys: () => Promise<unknown>;
|
|
227
|
-
getCheckedLeafKeys: () => never[];
|
|
228
|
-
handleOk: (isShowLoading?: boolean) => Promise<void>;
|
|
229
|
-
handleGetSumitData: (list?: never[]) => never[];
|
|
230
|
-
searchOnloadMore: () => void;
|
|
231
|
-
treeCount: (count: any) => string;
|
|
232
|
-
cancel: () => void;
|
|
233
|
-
hanldeGetValue: (...arg: any[]) => void;
|
|
234
|
-
getParentId: (v: any) => string;
|
|
235
|
-
uniqArrObj: (arr: any, name: any) => any;
|
|
236
|
-
getuniqKey: (v: any) => string;
|
|
104
|
+
closeTag: (tag: any) => void;
|
|
237
105
|
NButton: any;
|
|
238
106
|
NInput: any;
|
|
239
|
-
NSpin: any;
|
|
240
107
|
NInputGroup: import("vue").DefineComponent<{
|
|
241
108
|
[x: string]: never;
|
|
242
109
|
[x: number]: never;
|
|
@@ -252,164 +119,59 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
252
119
|
NTree: any;
|
|
253
120
|
NIcon: any;
|
|
254
121
|
NSpace: any;
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
type:
|
|
259
|
-
default:
|
|
260
|
-
};
|
|
261
|
-
|
|
262
|
-
type:
|
|
263
|
-
default:
|
|
264
|
-
};
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
type:
|
|
271
|
-
default:
|
|
272
|
-
};
|
|
273
|
-
searchValue: {
|
|
274
|
-
type: StringConstructor;
|
|
275
|
-
};
|
|
276
|
-
defaultExpandedKeys: {
|
|
277
|
-
type: ArrayConstructor;
|
|
278
|
-
required: true;
|
|
279
|
-
};
|
|
280
|
-
allCheckedKeys: {
|
|
281
|
-
type: ObjectConstructor;
|
|
282
|
-
};
|
|
283
|
-
dataListKeys: {
|
|
284
|
-
type: ObjectConstructor;
|
|
122
|
+
NGrid: any;
|
|
123
|
+
NGi: import("vue").DefineComponent<{
|
|
124
|
+
readonly span: {
|
|
125
|
+
readonly type: import("vue").PropType<string | number>;
|
|
126
|
+
readonly default: 1;
|
|
127
|
+
};
|
|
128
|
+
readonly offset: {
|
|
129
|
+
readonly type: import("vue").PropType<string | number>;
|
|
130
|
+
readonly default: 0;
|
|
131
|
+
};
|
|
132
|
+
readonly suffix: BooleanConstructor;
|
|
133
|
+
readonly privateOffset: NumberConstructor;
|
|
134
|
+
readonly privateSpan: NumberConstructor;
|
|
135
|
+
readonly privateColStart: NumberConstructor;
|
|
136
|
+
readonly privateShow: {
|
|
137
|
+
readonly type: BooleanConstructor;
|
|
138
|
+
readonly default: true;
|
|
285
139
|
};
|
|
286
140
|
}, {
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
};
|
|
296
|
-
loadMorenLoadinng: {
|
|
297
|
-
type: BooleanConstructor;
|
|
298
|
-
default: boolean;
|
|
299
|
-
};
|
|
300
|
-
formatTreeData: {
|
|
301
|
-
type: ArrayConstructor;
|
|
302
|
-
default: () => never[];
|
|
303
|
-
};
|
|
304
|
-
searchValue: {
|
|
305
|
-
type: StringConstructor;
|
|
306
|
-
};
|
|
307
|
-
defaultExpandedKeys: {
|
|
308
|
-
type: ArrayConstructor;
|
|
309
|
-
required: true;
|
|
310
|
-
};
|
|
311
|
-
allCheckedKeys: {
|
|
312
|
-
type: ObjectConstructor;
|
|
313
|
-
};
|
|
314
|
-
dataListKeys: {
|
|
315
|
-
type: ObjectConstructor;
|
|
316
|
-
};
|
|
317
|
-
}>> & {
|
|
318
|
-
onAddCheckedkeysMain?: ((...args: any[]) => any) | undefined;
|
|
319
|
-
onRemoveCheckedkeysMain?: ((...args: any[]) => any) | undefined;
|
|
320
|
-
onAddCheckedkeysOther?: ((...args: any[]) => any) | undefined;
|
|
321
|
-
onRemoveCheckedkeysOther?: ((...args: any[]) => any) | undefined;
|
|
322
|
-
onSearchOnloadMore?: ((...args: any[]) => any) | undefined;
|
|
323
|
-
}>>;
|
|
324
|
-
state: {
|
|
325
|
-
expandedKeys: never[];
|
|
326
|
-
autoExpandParent: boolean;
|
|
327
|
-
checkedKeys: never[];
|
|
328
|
-
defaultCheckedKeys: {
|
|
329
|
-
main: never[];
|
|
330
|
-
other: never[];
|
|
331
|
-
};
|
|
332
|
-
};
|
|
333
|
-
emit: (event: "addCheckedkeysMain" | "removeCheckedkeysMain" | "addCheckedkeysOther" | "removeCheckedkeysOther" | "searchOnloadMore", ...args: any[]) => void;
|
|
334
|
-
dataLen: import("vue").ComputedRef<number>;
|
|
335
|
-
resetData: () => void;
|
|
336
|
-
emitCheckedkeys: () => void;
|
|
337
|
-
emitCheckedkeysMain: () => void; /**
|
|
338
|
-
* 根据配置映射默认值
|
|
339
|
-
*/
|
|
340
|
-
emitCheckedkeysOther: () => void;
|
|
341
|
-
calcChangeKeys: (defaultCheckedKeys: any, currentCheckedKeys: any) => {
|
|
342
|
-
add: never[];
|
|
343
|
-
remove: never[];
|
|
344
|
-
};
|
|
345
|
-
emptyCheckedKeys: () => void;
|
|
346
|
-
setDefaultCheckedKeys: () => void;
|
|
347
|
-
setDefaultCheckedKeysMain: () => void;
|
|
348
|
-
setDefaultCheckedKeysOther: () => void;
|
|
349
|
-
setCurrentCheckedKeys: () => void;
|
|
350
|
-
onCheck: (checkedKeys: any) => void;
|
|
351
|
-
onExpand: (expandedKeys: any) => void;
|
|
352
|
-
treeCount: (count: any) => string;
|
|
353
|
-
searchOnloadMore: () => void;
|
|
354
|
-
formatName: (name: any) => any;
|
|
355
|
-
renderLabel: ({ option }: {
|
|
356
|
-
option: any;
|
|
357
|
-
}) => any;
|
|
358
|
-
NSpin: any;
|
|
359
|
-
NTree: any;
|
|
360
|
-
NIcon: any;
|
|
361
|
-
Search: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
362
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("addCheckedkeysMain" | "removeCheckedkeysMain" | "addCheckedkeysOther" | "removeCheckedkeysOther" | "searchOnloadMore")[], "addCheckedkeysMain" | "removeCheckedkeysMain" | "addCheckedkeysOther" | "removeCheckedkeysOther" | "searchOnloadMore", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
363
|
-
visible: {
|
|
364
|
-
type: BooleanConstructor;
|
|
365
|
-
default: boolean;
|
|
366
|
-
};
|
|
367
|
-
searchNoMore: {
|
|
368
|
-
type: BooleanConstructor;
|
|
369
|
-
default: boolean;
|
|
370
|
-
};
|
|
371
|
-
loadMorenLoadinng: {
|
|
372
|
-
type: BooleanConstructor;
|
|
373
|
-
default: boolean;
|
|
374
|
-
};
|
|
375
|
-
formatTreeData: {
|
|
376
|
-
type: ArrayConstructor;
|
|
377
|
-
default: () => never[];
|
|
378
|
-
};
|
|
379
|
-
searchValue: {
|
|
380
|
-
type: StringConstructor;
|
|
141
|
+
overflow: import("vue").Ref<boolean>;
|
|
142
|
+
itemStyle: import("vue").Ref<string | import("vue").CSSProperties | undefined>;
|
|
143
|
+
layoutShiftDisabled: import("vue").Ref<boolean>;
|
|
144
|
+
mergedXGap: import("vue").ComputedRef<string>;
|
|
145
|
+
deriveStyle: () => {
|
|
146
|
+
display: string;
|
|
147
|
+
gridColumn: string;
|
|
148
|
+
marginLeft: string;
|
|
381
149
|
};
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
150
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
151
|
+
readonly span: {
|
|
152
|
+
readonly type: import("vue").PropType<string | number>;
|
|
153
|
+
readonly default: 1;
|
|
154
|
+
};
|
|
155
|
+
readonly offset: {
|
|
156
|
+
readonly type: import("vue").PropType<string | number>;
|
|
157
|
+
readonly default: 0;
|
|
158
|
+
};
|
|
159
|
+
readonly suffix: BooleanConstructor;
|
|
160
|
+
readonly privateOffset: NumberConstructor;
|
|
161
|
+
readonly privateSpan: NumberConstructor;
|
|
162
|
+
readonly privateColStart: NumberConstructor;
|
|
163
|
+
readonly privateShow: {
|
|
164
|
+
readonly type: BooleanConstructor;
|
|
165
|
+
readonly default: true;
|
|
166
|
+
};
|
|
167
|
+
}>>, {
|
|
168
|
+
readonly offset: string | number;
|
|
169
|
+
readonly span: string | number;
|
|
170
|
+
readonly suffix: boolean;
|
|
171
|
+
readonly privateShow: boolean;
|
|
403
172
|
}>;
|
|
404
|
-
},
|
|
405
|
-
|
|
406
|
-
type: BooleanConstructor;
|
|
407
|
-
default: boolean;
|
|
408
|
-
};
|
|
409
|
-
isDetail: {
|
|
410
|
-
type: BooleanConstructor;
|
|
411
|
-
default: boolean;
|
|
412
|
-
};
|
|
173
|
+
CloseCircleSharp: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
174
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "check"[], "check", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
413
175
|
defaultList: {
|
|
414
176
|
type: ArrayConstructor;
|
|
415
177
|
default: () => never[];
|
|
@@ -434,19 +196,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
434
196
|
type: ObjectConstructor;
|
|
435
197
|
default: () => {};
|
|
436
198
|
};
|
|
437
|
-
SearchLoadMore: {
|
|
438
|
-
type: BooleanConstructor;
|
|
439
|
-
default: boolean;
|
|
440
|
-
};
|
|
441
|
-
queryMainTreeData: {
|
|
442
|
-
type: FunctionConstructor;
|
|
443
|
-
};
|
|
444
|
-
queryLoadChildData: {
|
|
445
|
-
type: FunctionConstructor;
|
|
446
|
-
};
|
|
447
|
-
queryTreeSearch: {
|
|
448
|
-
type: FunctionConstructor;
|
|
449
|
-
};
|
|
450
199
|
showCount: {
|
|
451
200
|
type: BooleanConstructor;
|
|
452
201
|
default: boolean;
|
|
@@ -460,22 +209,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
460
209
|
default: boolean;
|
|
461
210
|
};
|
|
462
211
|
}>> & {
|
|
463
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
464
212
|
onCheck?: ((...args: any[]) => any) | undefined;
|
|
465
|
-
onPubCheckedTreeItem?: ((...args: any[]) => any) | undefined;
|
|
466
|
-
onHandleOk?: ((...args: any[]) => any) | undefined;
|
|
467
|
-
onSubmitData?: ((...args: any[]) => any) | undefined;
|
|
468
|
-
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
469
213
|
}, {
|
|
470
214
|
data: unknown[];
|
|
471
|
-
visible: boolean;
|
|
472
|
-
isDetail: boolean;
|
|
473
215
|
defaultList: unknown[];
|
|
474
216
|
searchPlaceholder: string;
|
|
475
217
|
searchButtonText: string;
|
|
476
218
|
wordbook: Record<string, any>;
|
|
477
219
|
wordbookChild: Record<string, any>;
|
|
478
|
-
SearchLoadMore: boolean;
|
|
479
220
|
showCount: boolean;
|
|
480
221
|
showClear: boolean;
|
|
481
222
|
multiple: boolean;
|