fengmao-ui 1.3.1 → 1.3.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.
- package/lib/adaptive-page/index.d.ts +2389 -0
- package/lib/adaptive-page/src/index.vue.d.ts +774 -0
- package/lib/button/index.d.ts +176 -0
- package/lib/button/src/index.vue.d.ts +48 -0
- package/lib/components.d.ts +35 -0
- package/lib/date-picker/index.d.ts +218 -0
- package/lib/date-picker/src/index.vue.d.ts +73 -0
- package/lib/detail/index.d.ts +184 -0
- package/lib/detail/src/index.vue.d.ts +51 -0
- package/lib/detail/src/renderTooltip.vue.d.ts +8 -0
- package/lib/fengmao-ui.js +8 -7
- package/lib/fengmao-ui.js.gz +0 -0
- package/lib/fengmao-ui.umd.cjs +2 -2
- package/lib/form/index.d.ts +253 -0
- package/lib/form/src/index.vue.d.ts +94 -0
- package/lib/form/src/renderComp.vue.d.ts +8 -0
- package/lib/iconfont/iconfont.css +255 -0
- package/lib/iconfont/iconfont.js +1 -0
- package/lib/iconfont/iconfont.js.gz +0 -0
- package/lib/iconfont/iconfont.json +429 -0
- package/lib/iconfont/iconfont.json.gz +0 -0
- package/lib/iconfont/iconfont.ttf +0 -0
- package/lib/iconfont/iconfont.woff +0 -0
- package/lib/iconfont/iconfont.woff2 +0 -0
- package/lib/index.d.ts +20 -0
- package/lib/layout-page/index.d.ts +136 -0
- package/lib/layout-page/src/index.vue.d.ts +27 -0
- package/lib/layout-page-item/index.d.ts +109 -0
- package/lib/layout-page-item/src/index.vue.d.ts +14 -0
- package/lib/module-form/index.d.ts +486 -0
- package/lib/module-form/src/index.vue.d.ts +168 -0
- package/lib/module-form/src/moduleDetail.vue.d.ts +30 -0
- package/lib/module-form/src/moduleForm.vue.d.ts +36 -0
- package/lib/query-condition/index.d.ts +458 -0
- package/lib/query-condition/src/index.vue.d.ts +169 -0
- package/lib/query-condition/src/renderComp.vue.d.ts +8 -0
- package/lib/radio/index.d.ts +217 -0
- package/lib/radio/src/index.vue.d.ts +70 -0
- package/lib/radio/src/radio.d.ts +12 -0
- package/lib/select/index.d.ts +281 -0
- package/lib/select/src/index.vue.d.ts +108 -0
- package/lib/select-table/index.d.ts +1069 -0
- package/lib/select-table/src/index.vue.d.ts +402 -0
- package/lib/select-table/src/renderCol.vue.d.ts +20 -0
- package/lib/step-wizard/index.d.ts +206 -0
- package/lib/step-wizard/src/fixBtn.vue.d.ts +4 -0
- package/lib/step-wizard/src/index.vue.d.ts +64 -0
- package/lib/style.css +1 -1
- package/lib/style.css.gz +0 -0
- package/lib/table/index.d.ts +1534 -0
- package/lib/table/src/ColumnSet.vue.d.ts +137 -0
- package/lib/table/src/TTableColumn.vue.d.ts +103 -0
- package/lib/table/src/index.vue.d.ts +560 -0
- package/lib/table/src/renderCol.vue.d.ts +20 -0
- package/lib/table/src/renderHeader.vue.d.ts +16 -0
- package/lib/table/src/singleEditCell.vue.d.ts +83 -0
- package/lib/timer-btn/index.d.ts +156 -0
- package/lib/timer-btn/src/index.vue.d.ts +32 -0
- package/lib/utils/directives/click-outside/index.d.ts +3 -0
- package/lib/withInstall.d.ts +4 -0
- package/package.json +6 -1
|
@@ -0,0 +1,253 @@
|
|
|
1
|
+
declare const TForm: ({
|
|
2
|
+
new (...args: any[]): {
|
|
3
|
+
$: import("vue").ComponentInternalInstance;
|
|
4
|
+
$data: {};
|
|
5
|
+
$props: {
|
|
6
|
+
loading?: boolean | undefined;
|
|
7
|
+
formOpts?: Record<string, any> | undefined;
|
|
8
|
+
widthSize?: 1 | 2 | 3 | 4 | undefined;
|
|
9
|
+
isTrim?: boolean | undefined;
|
|
10
|
+
onHandleEvent?: ((...args: any[]) => any) | undefined;
|
|
11
|
+
key?: string | number | symbol | undefined;
|
|
12
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
13
|
+
readonly className?: string | undefined;
|
|
14
|
+
ref?: import("vue").VNodeRef | undefined;
|
|
15
|
+
ref_for?: boolean | undefined;
|
|
16
|
+
ref_key?: string | undefined;
|
|
17
|
+
onVnodeBeforeMount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
18
|
+
[key: string]: any;
|
|
19
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
20
|
+
[key: string]: any;
|
|
21
|
+
}>) => void)[] | undefined;
|
|
22
|
+
onVnodeMounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
23
|
+
[key: string]: any;
|
|
24
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
25
|
+
[key: string]: any;
|
|
26
|
+
}>) => void)[] | undefined;
|
|
27
|
+
onVnodeBeforeUpdate?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
28
|
+
[key: string]: any;
|
|
29
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
30
|
+
[key: string]: any;
|
|
31
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
32
|
+
[key: string]: any;
|
|
33
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
34
|
+
[key: string]: any;
|
|
35
|
+
}>) => void)[] | undefined;
|
|
36
|
+
onVnodeUpdated?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
37
|
+
[key: string]: any;
|
|
38
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
39
|
+
[key: string]: any;
|
|
40
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
41
|
+
[key: string]: any;
|
|
42
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
43
|
+
[key: string]: any;
|
|
44
|
+
}>) => void)[] | undefined;
|
|
45
|
+
onVnodeBeforeUnmount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
46
|
+
[key: string]: any;
|
|
47
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
48
|
+
[key: string]: any;
|
|
49
|
+
}>) => void)[] | undefined;
|
|
50
|
+
onVnodeUnmounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
51
|
+
[key: string]: any;
|
|
52
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
53
|
+
[key: string]: any;
|
|
54
|
+
}>) => void)[] | undefined;
|
|
55
|
+
class?: unknown;
|
|
56
|
+
style?: unknown;
|
|
57
|
+
};
|
|
58
|
+
$attrs: {
|
|
59
|
+
[x: string]: unknown;
|
|
60
|
+
};
|
|
61
|
+
$refs: {
|
|
62
|
+
[x: string]: unknown;
|
|
63
|
+
};
|
|
64
|
+
$slots: Readonly<{
|
|
65
|
+
[name: string]: import("vue").Slot<any> | undefined;
|
|
66
|
+
}>;
|
|
67
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
68
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
69
|
+
$emit: (event: "handleEvent" | "update:modelValue", ...args: any[]) => void;
|
|
70
|
+
$el: any;
|
|
71
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
72
|
+
className: {
|
|
73
|
+
type: StringConstructor;
|
|
74
|
+
};
|
|
75
|
+
formOpts: {
|
|
76
|
+
type: ObjectConstructor;
|
|
77
|
+
default: () => {};
|
|
78
|
+
};
|
|
79
|
+
widthSize: {
|
|
80
|
+
type: import("vue").PropType<1 | 2 | 3 | 4>;
|
|
81
|
+
validator: (value: number) => boolean;
|
|
82
|
+
default: number;
|
|
83
|
+
};
|
|
84
|
+
isTrim: {
|
|
85
|
+
type: BooleanConstructor;
|
|
86
|
+
default: boolean;
|
|
87
|
+
};
|
|
88
|
+
loading: {
|
|
89
|
+
type: BooleanConstructor;
|
|
90
|
+
default: boolean;
|
|
91
|
+
};
|
|
92
|
+
}>> & {
|
|
93
|
+
onHandleEvent?: ((...args: any[]) => any) | undefined;
|
|
94
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
95
|
+
}, {
|
|
96
|
+
props: any;
|
|
97
|
+
cEvent: any;
|
|
98
|
+
selectListType: import("vue").ComputedRef<({ list }: {
|
|
99
|
+
list: any;
|
|
100
|
+
}) => any>;
|
|
101
|
+
compChildName: any;
|
|
102
|
+
compChildLabel: import("vue").ComputedRef<(opt: any, value: any) => any>;
|
|
103
|
+
compChildValue: import("vue").ComputedRef<(opt: any, value: any, key: any) => any>;
|
|
104
|
+
compChildShowLabel: import("vue").ComputedRef<(opt: any, value: any) => any>;
|
|
105
|
+
colSize: import("vue").Ref<1 | 2 | 3 | 4>;
|
|
106
|
+
tform: any;
|
|
107
|
+
instance: any;
|
|
108
|
+
emits: (event: "handleEvent" | "update:modelValue", ...args: any[]) => void;
|
|
109
|
+
getChildWidth: (item: any) => string;
|
|
110
|
+
getPlaceholder: (row: any) => any;
|
|
111
|
+
handleEvent: (type: any, val: any, item: any) => void;
|
|
112
|
+
selfValidate: () => Promise<unknown>;
|
|
113
|
+
RenderComp: import("vue").DefineComponent<{
|
|
114
|
+
render: FunctionConstructor;
|
|
115
|
+
item: ObjectConstructor;
|
|
116
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
117
|
+
render: FunctionConstructor;
|
|
118
|
+
item: ObjectConstructor;
|
|
119
|
+
}>>, {}, {}>;
|
|
120
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("handleEvent" | "update:modelValue")[], string, {
|
|
121
|
+
loading: boolean;
|
|
122
|
+
formOpts: Record<string, any>;
|
|
123
|
+
widthSize: 1 | 2 | 3 | 4;
|
|
124
|
+
isTrim: boolean;
|
|
125
|
+
}, {}, string, {}> & {
|
|
126
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
127
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
128
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
129
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
130
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
131
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
132
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
133
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
134
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
135
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
136
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
137
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
138
|
+
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
139
|
+
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
140
|
+
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
141
|
+
};
|
|
142
|
+
$forceUpdate: () => void;
|
|
143
|
+
$nextTick: typeof import("vue").nextTick;
|
|
144
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
145
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
146
|
+
className: {
|
|
147
|
+
type: StringConstructor;
|
|
148
|
+
};
|
|
149
|
+
formOpts: {
|
|
150
|
+
type: ObjectConstructor;
|
|
151
|
+
default: () => {};
|
|
152
|
+
};
|
|
153
|
+
widthSize: {
|
|
154
|
+
type: import("vue").PropType<1 | 2 | 3 | 4>;
|
|
155
|
+
validator: (value: number) => boolean;
|
|
156
|
+
default: number;
|
|
157
|
+
};
|
|
158
|
+
isTrim: {
|
|
159
|
+
type: BooleanConstructor;
|
|
160
|
+
default: boolean;
|
|
161
|
+
};
|
|
162
|
+
loading: {
|
|
163
|
+
type: BooleanConstructor;
|
|
164
|
+
default: boolean;
|
|
165
|
+
};
|
|
166
|
+
}>> & {
|
|
167
|
+
onHandleEvent?: ((...args: any[]) => any) | undefined;
|
|
168
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
169
|
+
} & import("vue").ShallowUnwrapRef<{
|
|
170
|
+
props: any;
|
|
171
|
+
cEvent: any;
|
|
172
|
+
selectListType: import("vue").ComputedRef<({ list }: {
|
|
173
|
+
list: any;
|
|
174
|
+
}) => any>;
|
|
175
|
+
compChildName: any;
|
|
176
|
+
compChildLabel: import("vue").ComputedRef<(opt: any, value: any) => any>;
|
|
177
|
+
compChildValue: import("vue").ComputedRef<(opt: any, value: any, key: any) => any>;
|
|
178
|
+
compChildShowLabel: import("vue").ComputedRef<(opt: any, value: any) => any>;
|
|
179
|
+
colSize: import("vue").Ref<1 | 2 | 3 | 4>;
|
|
180
|
+
tform: any;
|
|
181
|
+
instance: any;
|
|
182
|
+
emits: (event: "handleEvent" | "update:modelValue", ...args: any[]) => void;
|
|
183
|
+
getChildWidth: (item: any) => string;
|
|
184
|
+
getPlaceholder: (row: any) => any;
|
|
185
|
+
handleEvent: (type: any, val: any, item: any) => void;
|
|
186
|
+
selfValidate: () => Promise<unknown>;
|
|
187
|
+
RenderComp: import("vue").DefineComponent<{
|
|
188
|
+
render: FunctionConstructor;
|
|
189
|
+
item: ObjectConstructor;
|
|
190
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
191
|
+
render: FunctionConstructor;
|
|
192
|
+
item: ObjectConstructor;
|
|
193
|
+
}>>, {}, {}>;
|
|
194
|
+
}> & {} & import("vue").ComponentCustomProperties & {};
|
|
195
|
+
__isFragment?: undefined;
|
|
196
|
+
__isTeleport?: undefined;
|
|
197
|
+
__isSuspense?: undefined;
|
|
198
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
199
|
+
className: {
|
|
200
|
+
type: StringConstructor;
|
|
201
|
+
};
|
|
202
|
+
formOpts: {
|
|
203
|
+
type: ObjectConstructor;
|
|
204
|
+
default: () => {};
|
|
205
|
+
};
|
|
206
|
+
widthSize: {
|
|
207
|
+
type: import("vue").PropType<1 | 2 | 3 | 4>;
|
|
208
|
+
validator: (value: number) => boolean;
|
|
209
|
+
default: number;
|
|
210
|
+
};
|
|
211
|
+
isTrim: {
|
|
212
|
+
type: BooleanConstructor;
|
|
213
|
+
default: boolean;
|
|
214
|
+
};
|
|
215
|
+
loading: {
|
|
216
|
+
type: BooleanConstructor;
|
|
217
|
+
default: boolean;
|
|
218
|
+
};
|
|
219
|
+
}>> & {
|
|
220
|
+
onHandleEvent?: ((...args: any[]) => any) | undefined;
|
|
221
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
222
|
+
}, {
|
|
223
|
+
props: any;
|
|
224
|
+
cEvent: any;
|
|
225
|
+
selectListType: import("vue").ComputedRef<({ list }: {
|
|
226
|
+
list: any;
|
|
227
|
+
}) => any>;
|
|
228
|
+
compChildName: any;
|
|
229
|
+
compChildLabel: import("vue").ComputedRef<(opt: any, value: any) => any>;
|
|
230
|
+
compChildValue: import("vue").ComputedRef<(opt: any, value: any, key: any) => any>;
|
|
231
|
+
compChildShowLabel: import("vue").ComputedRef<(opt: any, value: any) => any>;
|
|
232
|
+
colSize: import("vue").Ref<1 | 2 | 3 | 4>;
|
|
233
|
+
tform: any;
|
|
234
|
+
instance: any;
|
|
235
|
+
emits: (event: "handleEvent" | "update:modelValue", ...args: any[]) => void;
|
|
236
|
+
getChildWidth: (item: any) => string;
|
|
237
|
+
getPlaceholder: (row: any) => any;
|
|
238
|
+
handleEvent: (type: any, val: any, item: any) => void;
|
|
239
|
+
selfValidate: () => Promise<unknown>;
|
|
240
|
+
RenderComp: import("vue").DefineComponent<{
|
|
241
|
+
render: FunctionConstructor;
|
|
242
|
+
item: ObjectConstructor;
|
|
243
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
244
|
+
render: FunctionConstructor;
|
|
245
|
+
item: ObjectConstructor;
|
|
246
|
+
}>>, {}, {}>;
|
|
247
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("handleEvent" | "update:modelValue")[], "handleEvent" | "update:modelValue", {
|
|
248
|
+
loading: boolean;
|
|
249
|
+
formOpts: Record<string, any>;
|
|
250
|
+
widthSize: 1 | 2 | 3 | 4;
|
|
251
|
+
isTrim: boolean;
|
|
252
|
+
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("vue").Plugin<any[]>) & Record<string, any>;
|
|
253
|
+
export default TForm;
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import type { PropType } from 'vue';
|
|
2
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
3
|
+
className: {
|
|
4
|
+
type: StringConstructor;
|
|
5
|
+
};
|
|
6
|
+
/** 表单配置项说明
|
|
7
|
+
* formData object 表单提交数据
|
|
8
|
+
* rules object 验证规则
|
|
9
|
+
* fieldList Array 表单渲染数据
|
|
10
|
+
* operatorList Array 操作按钮list
|
|
11
|
+
* listTypeInfo object 下拉选项数据
|
|
12
|
+
* labelWidth String label宽度
|
|
13
|
+
*/
|
|
14
|
+
formOpts: {
|
|
15
|
+
type: ObjectConstructor;
|
|
16
|
+
default: () => {};
|
|
17
|
+
};
|
|
18
|
+
widthSize: {
|
|
19
|
+
type: PropType<1 | 2 | 3 | 4>;
|
|
20
|
+
validator: (value: number) => boolean;
|
|
21
|
+
default: number;
|
|
22
|
+
};
|
|
23
|
+
isTrim: {
|
|
24
|
+
type: BooleanConstructor;
|
|
25
|
+
default: boolean;
|
|
26
|
+
};
|
|
27
|
+
loading: {
|
|
28
|
+
type: BooleanConstructor;
|
|
29
|
+
default: boolean;
|
|
30
|
+
};
|
|
31
|
+
}, {
|
|
32
|
+
props: any;
|
|
33
|
+
cEvent: any;
|
|
34
|
+
selectListType: import("vue").ComputedRef<({ list }: {
|
|
35
|
+
list: any;
|
|
36
|
+
}) => any>;
|
|
37
|
+
compChildName: any;
|
|
38
|
+
compChildLabel: import("vue").ComputedRef<(opt: any, value: any) => any>;
|
|
39
|
+
compChildValue: import("vue").ComputedRef<(opt: any, value: any, key: any) => any>;
|
|
40
|
+
compChildShowLabel: import("vue").ComputedRef<(opt: any, value: any) => any>;
|
|
41
|
+
colSize: import("vue").Ref<1 | 2 | 3 | 4>;
|
|
42
|
+
tform: any;
|
|
43
|
+
instance: any;
|
|
44
|
+
emits: (event: "handleEvent" | "update:modelValue", ...args: any[]) => void;
|
|
45
|
+
getChildWidth: (item: any) => string;
|
|
46
|
+
getPlaceholder: (row: any) => any;
|
|
47
|
+
handleEvent: (type: any, val: any, item: any) => void;
|
|
48
|
+
selfValidate: () => Promise<unknown>;
|
|
49
|
+
RenderComp: import("vue").DefineComponent<{
|
|
50
|
+
render: FunctionConstructor;
|
|
51
|
+
item: ObjectConstructor;
|
|
52
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
53
|
+
render: FunctionConstructor;
|
|
54
|
+
item: ObjectConstructor;
|
|
55
|
+
}>>, {}, {}>;
|
|
56
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("handleEvent" | "update:modelValue")[], "handleEvent" | "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
57
|
+
className: {
|
|
58
|
+
type: StringConstructor;
|
|
59
|
+
};
|
|
60
|
+
/** 表单配置项说明
|
|
61
|
+
* formData object 表单提交数据
|
|
62
|
+
* rules object 验证规则
|
|
63
|
+
* fieldList Array 表单渲染数据
|
|
64
|
+
* operatorList Array 操作按钮list
|
|
65
|
+
* listTypeInfo object 下拉选项数据
|
|
66
|
+
* labelWidth String label宽度
|
|
67
|
+
*/
|
|
68
|
+
formOpts: {
|
|
69
|
+
type: ObjectConstructor;
|
|
70
|
+
default: () => {};
|
|
71
|
+
};
|
|
72
|
+
widthSize: {
|
|
73
|
+
type: PropType<1 | 2 | 3 | 4>;
|
|
74
|
+
validator: (value: number) => boolean;
|
|
75
|
+
default: number;
|
|
76
|
+
};
|
|
77
|
+
isTrim: {
|
|
78
|
+
type: BooleanConstructor;
|
|
79
|
+
default: boolean;
|
|
80
|
+
};
|
|
81
|
+
loading: {
|
|
82
|
+
type: BooleanConstructor;
|
|
83
|
+
default: boolean;
|
|
84
|
+
};
|
|
85
|
+
}>> & {
|
|
86
|
+
onHandleEvent?: ((...args: any[]) => any) | undefined;
|
|
87
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
88
|
+
}, {
|
|
89
|
+
loading: boolean;
|
|
90
|
+
formOpts: Record<string, any>;
|
|
91
|
+
widthSize: 1 | 2 | 3 | 4;
|
|
92
|
+
isTrim: boolean;
|
|
93
|
+
}, {}>;
|
|
94
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
render: FunctionConstructor;
|
|
3
|
+
item: ObjectConstructor;
|
|
4
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
5
|
+
render: FunctionConstructor;
|
|
6
|
+
item: ObjectConstructor;
|
|
7
|
+
}>>, {}, {}>;
|
|
8
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,255 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: "iconfont"; /* Project id 4767874 */
|
|
3
|
+
src: url('iconfont.woff2?t=1733293615277') format('woff2'),
|
|
4
|
+
url('iconfont.woff?t=1733293615277') format('woff'),
|
|
5
|
+
url('iconfont.ttf?t=1733293615277') format('truetype');
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.iconfont {
|
|
9
|
+
font-family: "iconfont" !important;
|
|
10
|
+
font-size: 16px;
|
|
11
|
+
font-style: normal;
|
|
12
|
+
-webkit-font-smoothing: antialiased;
|
|
13
|
+
-moz-osx-font-smoothing: grayscale;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.icon_icon_che:before {
|
|
17
|
+
content: "\e67b";
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.icon_icon_on:before {
|
|
21
|
+
content: "\e674";
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.icon_icon_off:before {
|
|
25
|
+
content: "\e675";
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.icon_icon_danxuan1:before {
|
|
29
|
+
content: "\e676";
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.icon_icon_dx2:before {
|
|
33
|
+
content: "\e677";
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.icon_icon_dx1:before {
|
|
37
|
+
content: "\e678";
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.icon_icon_dx0:before {
|
|
41
|
+
content: "\e679";
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.icon_icon_danxuan0:before {
|
|
45
|
+
content: "\e67a";
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.icon_icon_zhongying:before {
|
|
49
|
+
content: "\e673";
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.icon_icon_cuowu:before {
|
|
53
|
+
content: "\e640";
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.icon_icon_ai:before {
|
|
57
|
+
content: "\e641";
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.icon_icon_bianji:before {
|
|
61
|
+
content: "\e642";
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.icon_icon_daoru:before {
|
|
65
|
+
content: "\e643";
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.icon_icon_anquan:before {
|
|
69
|
+
content: "\e644";
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.icon_icon_daochu:before {
|
|
73
|
+
content: "\e645";
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.icon_icon_fahuo:before {
|
|
77
|
+
content: "\e646";
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.icon_icon_dayin:before {
|
|
81
|
+
content: "\e647";
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.icon_icon_baobiao:before {
|
|
85
|
+
content: "\e648";
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.icon_icon_feiyong:before {
|
|
89
|
+
content: "\e649";
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.icon_icon_gengduo:before {
|
|
93
|
+
content: "\e64a";
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.icon_icon_fuzhi:before {
|
|
97
|
+
content: "\e64b";
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.icon_icon_diaodu:before {
|
|
101
|
+
content: "\e64c";
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.icon_icon_jichuziliao:before {
|
|
105
|
+
content: "\e64d";
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.icon_icon_dui:before {
|
|
109
|
+
content: "\e64e";
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.icon_icon_hetong:before {
|
|
113
|
+
content: "\e64f";
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.icon_icon_jinyong:before {
|
|
117
|
+
content: "\e650";
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.icon_icon_image:before {
|
|
121
|
+
content: "\e651";
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.icon_icon_jinyong-2:before {
|
|
125
|
+
content: "\e652";
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.icon_icon_dangan-2:before {
|
|
129
|
+
content: "\e653";
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.icon_icon_jichusheshi:before {
|
|
133
|
+
content: "\e654";
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.icon_icon_gb2:before {
|
|
137
|
+
content: "\e655";
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.icon_icon_liebiao:before {
|
|
141
|
+
content: "\e656";
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.icon_icon_guanbi-2:before {
|
|
145
|
+
content: "\e657";
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.icon_icon_jinggao:before {
|
|
149
|
+
content: "\e658";
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.icon_icon_oa:before {
|
|
153
|
+
content: "\e659";
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.icon_icon_shousuo:before {
|
|
157
|
+
content: "\e65a";
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.icon_icon_renzi:before {
|
|
161
|
+
content: "\e65b";
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.icon_icon_shijian:before {
|
|
165
|
+
content: "\e65c";
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.icon_icon_sousuo:before {
|
|
169
|
+
content: "\e65d";
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.icon_icon_shuaxin:before {
|
|
173
|
+
content: "\e65e";
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.icon_icon_wenzi:before {
|
|
177
|
+
content: "\e65f";
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.icon_icon_shanchu:before {
|
|
181
|
+
content: "\e660";
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.icon_icon_dangan:before {
|
|
185
|
+
content: "\e661";
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.icon_icon_xiala:before {
|
|
189
|
+
content: "\e662";
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.icon_icon_shouye:before {
|
|
193
|
+
content: "\e663";
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.icon_icon_guanbi:before {
|
|
197
|
+
content: "\e664";
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.icon_icon_qiye:before {
|
|
201
|
+
content: "\e665";
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.icon_icon_xinzeng:before {
|
|
205
|
+
content: "\e666";
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.icon_icon_shezhi:before {
|
|
209
|
+
content: "\e667";
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.icon_icon_zhankai:before {
|
|
213
|
+
content: "\e668";
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.icon_icon_quanping:before {
|
|
217
|
+
content: "\e669";
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.icon_icon_kanban:before {
|
|
221
|
+
content: "\e66a";
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.icon_icon_xiazai:before {
|
|
225
|
+
content: "\e66b";
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.icon_icon_you:before {
|
|
229
|
+
content: "\e66c";
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.icon_icon_xiaoxi:before {
|
|
233
|
+
content: "\e66d";
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.icon_icon_xitong:before {
|
|
237
|
+
content: "\e66e";
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.icon_icon_zhixiang:before {
|
|
241
|
+
content: "\e66f";
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.icon_icon_zhengjian:before {
|
|
245
|
+
content: "\e670";
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.icon_icon_zhengjian-2:before {
|
|
249
|
+
content: "\e671";
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.icon_icon_zuo:before {
|
|
253
|
+
content: "\e672";
|
|
254
|
+
}
|
|
255
|
+
|