@kengic/vue 0.2.1-beta.3 → 0.2.1-beta.4
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/dist/index.css +1 -1
- package/dist/kengic-vue.js +2592 -2285
- package/dist/src/apis/WMS/models.d.ts +93 -5
- package/dist/src/components/KgControl/KgControl.Date.d.ts +2 -0
- package/dist/src/components/KgControl/KgControl.Input.d.ts +2 -0
- package/dist/src/components/KgControl/KgControl.Select.d.ts +2 -0
- package/dist/src/components/KgControl/KgControl.Switch.d.ts +2 -0
- package/dist/src/components/KgControl/KgControl.d.ts +2 -0
- package/dist/src/components/KgControl/index.vm.d.ts +2 -0
- package/dist/src/components/KgSearch/KgSearch.d.ts +3 -6
- package/dist/src/components/KgSearch/index.hook.d.ts +7 -1
- package/dist/src/components/KgSearch/index.store.d.ts +12 -3
- package/dist/src/components/KgVar/index.hook.d.ts +8 -5
- package/dist/src/components/KgVar/index.store.d.ts +15 -1
- package/dist/src/consts/index.d.ts +17 -19
- package/package.json +1 -1
|
@@ -63,6 +63,28 @@ export declare class VarCatalog {
|
|
|
63
63
|
varText?: string | null;
|
|
64
64
|
constructor(obj?: VarCatalog);
|
|
65
65
|
}
|
|
66
|
+
/**
|
|
67
|
+
* 变量控件配置.
|
|
68
|
+
*/
|
|
69
|
+
export declare class VarConfig {
|
|
70
|
+
/** 控件属性(ControlProperties). */
|
|
71
|
+
ctrlProp?: string | null;
|
|
72
|
+
/** 控件类型(ControlType). */
|
|
73
|
+
ctrlTyp?: string | null;
|
|
74
|
+
/** 定制级别(CustomLevel). */
|
|
75
|
+
custLvl?: number | null;
|
|
76
|
+
/** 界面标识(FormID). */
|
|
77
|
+
frmId?: string | null;
|
|
78
|
+
/** 分组(GroupName). */
|
|
79
|
+
grpNam?: string | null;
|
|
80
|
+
/** 主键. */
|
|
81
|
+
id?: string | null;
|
|
82
|
+
/** 语言(LocaleID). */
|
|
83
|
+
localeId?: string | null;
|
|
84
|
+
/** 变量名称(VariableName). */
|
|
85
|
+
varNam?: string | null;
|
|
86
|
+
constructor(obj?: VarConfig);
|
|
87
|
+
}
|
|
66
88
|
/**
|
|
67
89
|
* 变量
|
|
68
90
|
*/
|
|
@@ -87,12 +109,16 @@ export declare class VarDTO {
|
|
|
87
109
|
varButtons?: Array<VarButton> | null;
|
|
88
110
|
/** 变量别名. */
|
|
89
111
|
varCatalogs?: Array<VarCatalog> | null;
|
|
112
|
+
/** 变量控件配置. */
|
|
113
|
+
varConfigs?: Array<VarConfig> | null;
|
|
90
114
|
/** 表格. */
|
|
91
115
|
varGrid?: VarGridDTO | null;
|
|
92
116
|
/** 表格配置. */
|
|
93
117
|
varGridConfig?: VarGridConfig | null;
|
|
94
118
|
/** 变量查找. */
|
|
95
119
|
varLookups?: Array<VarLookup> | null;
|
|
120
|
+
/** 表格. */
|
|
121
|
+
varProfile?: VarProfileDTO | null;
|
|
96
122
|
constructor(obj?: VarDTO);
|
|
97
123
|
}
|
|
98
124
|
/**
|
|
@@ -171,7 +197,7 @@ export declare class VarGridMasterDTO {
|
|
|
171
197
|
id?: string | null;
|
|
172
198
|
/** 用户(UserID). */
|
|
173
199
|
usrId?: string | null;
|
|
174
|
-
/**
|
|
200
|
+
/** 表格视图明细列表. */
|
|
175
201
|
varGridDetails?: Array<VarGridDetail> | null;
|
|
176
202
|
constructor(obj?: VarGridMasterDTO);
|
|
177
203
|
}
|
|
@@ -179,6 +205,10 @@ export declare class VarGridMasterDTO {
|
|
|
179
205
|
* 变量查找.
|
|
180
206
|
*/
|
|
181
207
|
export declare class VarLookup {
|
|
208
|
+
/** 查询接口地址(Command). */
|
|
209
|
+
cmd?: string | null;
|
|
210
|
+
/** 查询接口参数(CommandParameter). */
|
|
211
|
+
cmdPrm?: string | null;
|
|
182
212
|
/** 定制级别(CustomLevel). */
|
|
183
213
|
custLvl?: number | null;
|
|
184
214
|
/** 是否启用(EnableFlag). */
|
|
@@ -189,10 +219,6 @@ export declare class VarLookup {
|
|
|
189
219
|
grpNam?: string | null;
|
|
190
220
|
/** 主键. */
|
|
191
221
|
id?: string | null;
|
|
192
|
-
/** 查询接口地址(LookupCommand). */
|
|
193
|
-
lkpCmd?: string | null;
|
|
194
|
-
/** 查询接口参数(LookupCommandParameter). */
|
|
195
|
-
lkpCmdPrm?: string | null;
|
|
196
222
|
/** 查找编号(LookupID). */
|
|
197
223
|
lkpId?: string | null;
|
|
198
224
|
/** 语言(LocaleID). */
|
|
@@ -205,6 +231,68 @@ export declare class VarLookup {
|
|
|
205
231
|
varNam?: string | null;
|
|
206
232
|
constructor(obj?: VarLookup);
|
|
207
233
|
}
|
|
234
|
+
/**
|
|
235
|
+
* 查询条件.
|
|
236
|
+
*/
|
|
237
|
+
export declare class VarProfileDTO {
|
|
238
|
+
/** 查询条件列表. */
|
|
239
|
+
varProfileMasters?: Array<VarProfileMasterDTO> | null;
|
|
240
|
+
constructor(obj?: VarProfileDTO);
|
|
241
|
+
}
|
|
242
|
+
/**
|
|
243
|
+
* 查询条件明细.
|
|
244
|
+
*/
|
|
245
|
+
export declare class VarProfileDetail {
|
|
246
|
+
/** 默认的高级查询方式(DefaultDynamicQueryOperator). */
|
|
247
|
+
dftDynOp?: string | null;
|
|
248
|
+
/** 默认的值(DefaultValue). */
|
|
249
|
+
dftVal?: string | null;
|
|
250
|
+
/** 是否启用高级查询(DynamicQueryFlag). */
|
|
251
|
+
dynFlg?: number | null;
|
|
252
|
+
/** 是否启用(EnableFlag). */
|
|
253
|
+
enaFlg?: number | null;
|
|
254
|
+
/** 界面标识(FormID). */
|
|
255
|
+
frmId?: string | null;
|
|
256
|
+
/** 分组(GroupName). */
|
|
257
|
+
grpNam?: string | null;
|
|
258
|
+
/** 主键. */
|
|
259
|
+
id?: string | null;
|
|
260
|
+
/** 查询条件变量名称(ProfileVariableName). */
|
|
261
|
+
prfVarNam?: string | null;
|
|
262
|
+
/** 是否必填(RequireFlag). */
|
|
263
|
+
rqrFlg?: number | null;
|
|
264
|
+
/** 显示顺序(SortSequence). */
|
|
265
|
+
srtseq?: number | null;
|
|
266
|
+
/** 变量名称(VariableName). */
|
|
267
|
+
varNam?: string | null;
|
|
268
|
+
/** 是否可见(VisibleFlag). */
|
|
269
|
+
visFlg?: number | null;
|
|
270
|
+
constructor(obj?: VarProfileDetail);
|
|
271
|
+
}
|
|
272
|
+
/**
|
|
273
|
+
* 查询条件.
|
|
274
|
+
*/
|
|
275
|
+
export declare class VarProfileMasterDTO {
|
|
276
|
+
/** 定制级别(CustomLevel). */
|
|
277
|
+
custLvl?: number | null;
|
|
278
|
+
/** 是否默认(DefaultFlag). */
|
|
279
|
+
defFlg?: number | null;
|
|
280
|
+
/** 是否启用高级查询(DynamicQueryFlag). */
|
|
281
|
+
dynFlg?: number | null;
|
|
282
|
+
/** 界面标识(FormID). */
|
|
283
|
+
frmId?: string | null;
|
|
284
|
+
/** 分组(GroupName). */
|
|
285
|
+
grpNam?: string | null;
|
|
286
|
+
/** 主键 */
|
|
287
|
+
id?: string | null;
|
|
288
|
+
/** 查询条件变量名称(ProfileVariableName). */
|
|
289
|
+
prfVarNam?: string | null;
|
|
290
|
+
/** 用户(UserID). */
|
|
291
|
+
usrId?: string | null;
|
|
292
|
+
/** 查询条件明细列表. */
|
|
293
|
+
varProfileDetails?: Array<VarProfileDetail> | null;
|
|
294
|
+
constructor(obj?: VarProfileMasterDTO);
|
|
295
|
+
}
|
|
208
296
|
/**
|
|
209
297
|
* 获取对象的属性名数组.
|
|
210
298
|
* @param obj 对象.
|
|
@@ -5,6 +5,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5
5
|
type: import("vue").PropType<string>;
|
|
6
6
|
required: boolean;
|
|
7
7
|
};
|
|
8
|
+
kgDisabled: import("vue").PropType<boolean>;
|
|
8
9
|
kgGutter: {
|
|
9
10
|
type: import("vue").PropType<number>;
|
|
10
11
|
default: number;
|
|
@@ -49,6 +50,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
49
50
|
type: import("vue").PropType<string>;
|
|
50
51
|
required: boolean;
|
|
51
52
|
};
|
|
53
|
+
kgDisabled: import("vue").PropType<boolean>;
|
|
52
54
|
kgGutter: {
|
|
53
55
|
type: import("vue").PropType<number>;
|
|
54
56
|
default: number;
|
|
@@ -4,6 +4,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4
4
|
type: import("vue").PropType<string>;
|
|
5
5
|
required: boolean;
|
|
6
6
|
};
|
|
7
|
+
kgDisabled: import("vue").PropType<boolean>;
|
|
7
8
|
kgGutter: {
|
|
8
9
|
type: import("vue").PropType<number>;
|
|
9
10
|
default: number;
|
|
@@ -48,6 +49,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
48
49
|
type: import("vue").PropType<string>;
|
|
49
50
|
required: boolean;
|
|
50
51
|
};
|
|
52
|
+
kgDisabled: import("vue").PropType<boolean>;
|
|
51
53
|
kgGutter: {
|
|
52
54
|
type: import("vue").PropType<number>;
|
|
53
55
|
default: number;
|
|
@@ -4,6 +4,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4
4
|
type: import("vue").PropType<string>;
|
|
5
5
|
required: boolean;
|
|
6
6
|
};
|
|
7
|
+
kgDisabled: import("vue").PropType<boolean>;
|
|
7
8
|
kgGutter: {
|
|
8
9
|
type: import("vue").PropType<number>;
|
|
9
10
|
default: number;
|
|
@@ -48,6 +49,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
48
49
|
type: import("vue").PropType<string>;
|
|
49
50
|
required: boolean;
|
|
50
51
|
};
|
|
52
|
+
kgDisabled: import("vue").PropType<boolean>;
|
|
51
53
|
kgGutter: {
|
|
52
54
|
type: import("vue").PropType<number>;
|
|
53
55
|
default: number;
|
|
@@ -4,6 +4,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4
4
|
type: import("vue").PropType<string>;
|
|
5
5
|
required: boolean;
|
|
6
6
|
};
|
|
7
|
+
kgDisabled: import("vue").PropType<boolean>;
|
|
7
8
|
kgGutter: {
|
|
8
9
|
type: import("vue").PropType<number>;
|
|
9
10
|
default: number;
|
|
@@ -48,6 +49,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
48
49
|
type: import("vue").PropType<string>;
|
|
49
50
|
required: boolean;
|
|
50
51
|
};
|
|
52
|
+
kgDisabled: import("vue").PropType<boolean>;
|
|
51
53
|
kgGutter: {
|
|
52
54
|
type: import("vue").PropType<number>;
|
|
53
55
|
default: number;
|
|
@@ -5,6 +5,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5
5
|
type: import("vue").PropType<string>;
|
|
6
6
|
required: boolean;
|
|
7
7
|
};
|
|
8
|
+
kgDisabled: import("vue").PropType<boolean>;
|
|
8
9
|
kgGutter: {
|
|
9
10
|
type: import("vue").PropType<number>;
|
|
10
11
|
default: number;
|
|
@@ -49,6 +50,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
49
50
|
type: import("vue").PropType<string>;
|
|
50
51
|
required: boolean;
|
|
51
52
|
};
|
|
53
|
+
kgDisabled: import("vue").PropType<boolean>;
|
|
52
54
|
kgGutter: {
|
|
53
55
|
type: import("vue").PropType<number>;
|
|
54
56
|
default: number;
|
|
@@ -1,16 +1,13 @@
|
|
|
1
1
|
import { ExtractPropTypes, PropType } from 'vue';
|
|
2
2
|
import './KgSearch.less';
|
|
3
3
|
export declare const getProps: () => {
|
|
4
|
-
|
|
5
|
-
kgModel: PropType<Record<string, any>>;
|
|
4
|
+
onKgSearch: PropType<(model: Record<string, any> | null) => void>;
|
|
6
5
|
};
|
|
7
6
|
export declare type KgSearchProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
|
8
7
|
declare const _default: import("vue").DefineComponent<{
|
|
9
|
-
|
|
10
|
-
kgModel: PropType<Record<string, any>>;
|
|
8
|
+
onKgSearch: PropType<(model: Record<string, any> | null) => void>;
|
|
11
9
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("kgSearch" | "kgReset")[], "kgSearch" | "kgReset", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
12
|
-
|
|
13
|
-
kgModel: PropType<Record<string, any>>;
|
|
10
|
+
onKgSearch: PropType<(model: Record<string, any> | null) => void>;
|
|
14
11
|
}>> & {
|
|
15
12
|
onKgSearch?: ((...args: any[]) => any) | undefined;
|
|
16
13
|
onKgReset?: ((...args: any[]) => any) | undefined;
|
|
@@ -1,4 +1,10 @@
|
|
|
1
|
-
|
|
1
|
+
import { ComputedRef } from 'vue';
|
|
2
|
+
import { KgSearchStore } from './index.store';
|
|
3
|
+
export declare type IUseKgSearch = {
|
|
4
|
+
kgSearchStore: KgSearchStore;
|
|
2
5
|
onSearch: (cb: () => void) => void;
|
|
3
6
|
onReset: (cb: () => void) => void;
|
|
7
|
+
model: ComputedRef<ReturnType<KgSearchStore['getModel']>>;
|
|
8
|
+
form: ComputedRef<ReturnType<KgSearchStore['getForm']>>;
|
|
4
9
|
};
|
|
10
|
+
export declare function useKgSearch(formID?: string): IUseKgSearch;
|
|
@@ -1,14 +1,23 @@
|
|
|
1
1
|
import { StoreDefinition } from 'pinia';
|
|
2
|
+
import { Form } from 'ant-design-vue';
|
|
2
3
|
export interface KgSearchState {
|
|
4
|
+
/** 表单数据. */
|
|
5
|
+
modelMap: Map<string, Record<string, any>>;
|
|
6
|
+
/** 表单对象. */
|
|
7
|
+
formMap: Map<string, ReturnType<typeof Form.useForm>>;
|
|
3
8
|
/** '查询'事件监听函数列表. */
|
|
4
|
-
onSearchListeners: Map<string, Array<
|
|
9
|
+
onSearchListeners: Map<string, Array<(model: Record<string, any> | null) => void>>;
|
|
5
10
|
/** '重置'事件监听函数列表. */
|
|
6
11
|
onResetListeners: Map<string, Array<Function>>;
|
|
7
12
|
}
|
|
8
|
-
export declare type KgSearchStoreDefinition = StoreDefinition<'KgSearch', KgSearchState, {
|
|
13
|
+
export declare type KgSearchStoreDefinition = StoreDefinition<'KgSearch', KgSearchState, {
|
|
14
|
+
getModel(): (formID?: string | null) => Record<string, any> | null;
|
|
15
|
+
getForm(): (formID?: string | null) => ReturnType<typeof Form.useForm> | null;
|
|
16
|
+
}, {
|
|
9
17
|
addEventListener: (formID: string, event: 'search' | 'reset', cb: Function) => void;
|
|
10
18
|
removeEventListener: (formID: string, event: 'search' | 'reset', cb?: Function) => void;
|
|
11
|
-
emit: (formID: string, event: 'search' | 'reset') => void;
|
|
19
|
+
emit: (formID: string, event: 'search' | 'reset', model?: Record<string, any> | null) => void;
|
|
20
|
+
setModel: (formID: string, model: Record<string, any>) => void;
|
|
12
21
|
}>;
|
|
13
22
|
export declare type KgSearchStore = ReturnType<KgSearchStoreDefinition>;
|
|
14
23
|
export declare const useKgSearchStore: () => KgSearchStoreDefinition;
|
|
@@ -1,12 +1,15 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ComputedRef } from 'vue';
|
|
2
2
|
import { IKgVarStore } from './index.store';
|
|
3
|
-
import { VarButton, VarGridConfig } from '../../apis/WMS/models';
|
|
4
3
|
export declare type IUseKgVar = {
|
|
5
4
|
formID: string;
|
|
6
5
|
kgVarStore: IKgVarStore;
|
|
7
|
-
varButtons:
|
|
8
|
-
varGridConfig:
|
|
9
|
-
|
|
6
|
+
varButtons: ComputedRef<ReturnType<IKgVarStore['getVarButtons']>>;
|
|
7
|
+
varGridConfig: ComputedRef<ReturnType<IKgVarStore['getVarGridConfig']>>;
|
|
8
|
+
varProfileMasters: ComputedRef<ReturnType<IKgVarStore['getVarProfileMasters']>>;
|
|
9
|
+
varProfileMaster: ComputedRef<ReturnType<IKgVarStore['getVarProfileMaster']>>;
|
|
10
|
+
currentVarProfileMasterID: ComputedRef<ReturnType<IKgVarStore['getCurrentVarProfileMasterID']>>;
|
|
11
|
+
setCurrentVarProfileMasterID: IKgVarStore['setCurrentVarProfileMasterID'] | null;
|
|
12
|
+
t1: (varName?: string | null) => ComputedRef<string>;
|
|
10
13
|
t2: (varName?: string | null) => string;
|
|
11
14
|
};
|
|
12
15
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type StoreDefinition } from 'pinia';
|
|
2
|
-
import { VarButton, VarCatalog, VarGridConfig, VarGridDetail, VarGridDTO, VarGridMasterDTO, VarLookup } from '../../apis/WMS/models';
|
|
2
|
+
import { VarButton, VarCatalog, VarConfig, VarGridConfig, VarGridDetail, VarGridDTO, VarGridMasterDTO, VarLookup, VarProfileDetail, VarProfileDTO, VarProfileMasterDTO } from '../../apis/WMS/models';
|
|
3
3
|
export interface KgVarState {
|
|
4
4
|
/**
|
|
5
5
|
* 当前可能打开了多个界面, 需要按照先后顺序记录下来, 当打开变量配置弹窗时, 打开的是最近那个页面的变量配置.
|
|
@@ -9,8 +9,16 @@ export interface KgVarState {
|
|
|
9
9
|
varCatalogsMap: Map<string, Array<VarCatalog>>;
|
|
10
10
|
/** 变量查找. */
|
|
11
11
|
varLookupsMap: Map<string, Array<VarLookup>>;
|
|
12
|
+
/** 变量控件配置. */
|
|
13
|
+
varConfigsMap: Map<string, Array<VarConfig>>;
|
|
12
14
|
/** 按钮. */
|
|
13
15
|
varButtonsMap: Map<string, Array<VarButton>>;
|
|
16
|
+
/** 查询条件. */
|
|
17
|
+
varProfileMap: Map<string, {
|
|
18
|
+
varProfile: VarProfileDTO | null;
|
|
19
|
+
/** 当前查询条件. */
|
|
20
|
+
currentVarProfileMasterID: string | null;
|
|
21
|
+
}>;
|
|
14
22
|
/** 表格配置. */
|
|
15
23
|
varGridConfigMap: Map<string, VarGridConfig | null>;
|
|
16
24
|
/** 表格. */
|
|
@@ -25,7 +33,12 @@ export declare type IKgVarStoreDefinition = StoreDefinition<'KgVar', KgVarState,
|
|
|
25
33
|
getVarCatalogs(): (formID?: string | null) => Array<VarCatalog> | null;
|
|
26
34
|
getVarCatalog(): (formID?: string | null, varName?: string | null) => VarCatalog | null;
|
|
27
35
|
getVarLookup(): (formID?: string | null, varName?: string | null) => VarLookup | null;
|
|
36
|
+
getVarConfig(): (formID?: string | null, varName?: string | null) => VarConfig | null;
|
|
28
37
|
getVarButtons(): (formID?: string | null) => Array<VarButton> | null;
|
|
38
|
+
getVarProfileMasters(): (formID?: string | null) => Array<VarProfileMasterDTO> | null;
|
|
39
|
+
getVarProfileMaster(): (formID?: string | null) => VarProfileMasterDTO | null;
|
|
40
|
+
getCurrentVarProfileMasterID(): (formID?: string | null) => string | null;
|
|
41
|
+
getVarProfileDetails(): (formID?: string | null) => Array<VarProfileDetail> | null;
|
|
29
42
|
getVarGridConfig(): (formID?: string | null) => VarGridConfig | null;
|
|
30
43
|
getVarGridMasters(): (formID?: string | null) => Array<VarGridMasterDTO> | null;
|
|
31
44
|
getVarGridMaster(): (formID?: string | null) => VarGridMasterDTO | null;
|
|
@@ -35,6 +48,7 @@ export declare type IKgVarStoreDefinition = StoreDefinition<'KgVar', KgVarState,
|
|
|
35
48
|
deleteAll(formID: string): void;
|
|
36
49
|
retrieveAll(formID?: string | null): Promise<void>;
|
|
37
50
|
enter(formID: string): Promise<void>;
|
|
51
|
+
setCurrentVarProfileMasterID(formID: string, currentVarProfileMasterID: string): void;
|
|
38
52
|
}>;
|
|
39
53
|
export declare type IKgVarStore = ReturnType<IKgVarStoreDefinition>;
|
|
40
54
|
export declare const useKgVarStore: () => IKgVarStoreDefinition;
|
|
@@ -15,32 +15,30 @@ export declare const enum KG_APPS_PREFIX {
|
|
|
15
15
|
/** 表单控件类型. */
|
|
16
16
|
export declare const enum KG_CONTROL_TYPE {
|
|
17
17
|
/** 文本. */
|
|
18
|
-
INPUT = "
|
|
18
|
+
INPUT = "INPUT",
|
|
19
19
|
/** 密码. */
|
|
20
|
-
INPUT_PASSWORD = "
|
|
20
|
+
INPUT_PASSWORD = "INPUT_PASSWORD",
|
|
21
21
|
/** 多行文本. */
|
|
22
|
-
INPUT_AREA = "
|
|
22
|
+
INPUT_AREA = "INPUT_AREA",
|
|
23
23
|
/** 数字. */
|
|
24
|
-
INPUT_NUMBER = "
|
|
25
|
-
CHECKBOX = "
|
|
26
|
-
SWITCH = "
|
|
24
|
+
INPUT_NUMBER = "INPUT_NUMBER",
|
|
25
|
+
CHECKBOX = "CHECKBOX",
|
|
26
|
+
SWITCH = "SWITCH",
|
|
27
27
|
/** 下拉列表单选. */
|
|
28
|
-
SELECT = "
|
|
28
|
+
SELECT = "SELECT",
|
|
29
29
|
/** 下拉列表多选. */
|
|
30
|
-
SELECT_MULTIPLE = "
|
|
31
|
-
DATE_DATE = "
|
|
32
|
-
DATE_DATE_RANGE = "
|
|
33
|
-
DATE_DATETIME = "
|
|
34
|
-
DATE_DATETIME_RANGE = "
|
|
35
|
-
DATE_WEEK = "
|
|
36
|
-
DATE_MONTH = "
|
|
37
|
-
DATE_YEAR = "
|
|
30
|
+
SELECT_MULTIPLE = "SELECT_MULTIPLE",
|
|
31
|
+
DATE_DATE = "DATE_DATE",
|
|
32
|
+
DATE_DATE_RANGE = "DATE_DATE_RANGE",
|
|
33
|
+
DATE_DATETIME = "DATE_DATETIME",
|
|
34
|
+
DATE_DATETIME_RANGE = "DATE_DATETIME_RANGE",
|
|
35
|
+
DATE_WEEK = "DATE_WEEK",
|
|
36
|
+
DATE_MONTH = "DATE_MONTH",
|
|
37
|
+
DATE_YEAR = "DATE_YEAR",
|
|
38
38
|
/** 单位. */
|
|
39
|
-
UOM = "
|
|
40
|
-
/** 秒表计时. */
|
|
41
|
-
STOPWATCH = "Stopwatch",
|
|
39
|
+
UOM = "UOM",
|
|
42
40
|
/** 文件上传按钮. */
|
|
43
|
-
|
|
41
|
+
BTN_UPLOAD = "BTN_UPLOAD"
|
|
44
42
|
}
|
|
45
43
|
/** 所有模块. */
|
|
46
44
|
export declare const KG_APPS: Array<KG_APP>;
|