vue3-curd 1.0.7 → 1.0.8
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/src/components/CURD/index.d.ts +250 -4
- package/dist/style.css +1 -1
- package/dist/vue3-curd.es.js +2739 -850
- package/dist/vue3-curd.es.js.map +1 -1
- package/dist/vue3-curd.umd.js +1 -1
- package/dist/vue3-curd.umd.js.map +1 -1
- package/package.json +4 -2
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { DataSourceConfig, ActionEvent } from './types';
|
|
2
|
-
import {
|
|
1
|
+
import { DataSourceConfig, ActionEvent, ColumnConfig } from './types';
|
|
2
|
+
import { CreateComponentPublicInstanceWithMixins, ComponentOptionsMixin, PublicProps, GlobalComponents, GlobalDirectives, ComponentProvideOptions, ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties, DefineComponent } from 'vue';
|
|
3
|
+
import { OnCleanup } from '@vue/reactivity';
|
|
3
4
|
type __VLS_Props = {
|
|
4
5
|
dataSource: DataSourceConfig;
|
|
5
6
|
showCard?: boolean;
|
|
@@ -7,7 +8,134 @@ type __VLS_Props = {
|
|
|
7
8
|
showPadding?: boolean;
|
|
8
9
|
maxHeight?: number | string;
|
|
9
10
|
};
|
|
10
|
-
declare
|
|
11
|
+
declare function __VLS_template(): {
|
|
12
|
+
attrs: Partial<{}>;
|
|
13
|
+
slots: Partial<Record<string, (_: {
|
|
14
|
+
row: any;
|
|
15
|
+
column: ColumnConfig;
|
|
16
|
+
value: any;
|
|
17
|
+
}) => any>> & Partial<Record<string, (_: {
|
|
18
|
+
row: any;
|
|
19
|
+
column: ColumnConfig;
|
|
20
|
+
value: any;
|
|
21
|
+
}) => any>>;
|
|
22
|
+
refs: {
|
|
23
|
+
curdSearchRef: CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
24
|
+
dataSource: DataSourceConfig;
|
|
25
|
+
selectedCount?: number;
|
|
26
|
+
}> & Readonly<{
|
|
27
|
+
onActionEvent?: (...args: any[]) => any;
|
|
28
|
+
}>, {
|
|
29
|
+
initData: () => Promise<void>;
|
|
30
|
+
getQueryParams: () => Record<string, any>;
|
|
31
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
32
|
+
actionEvent: (...args: any[]) => void;
|
|
33
|
+
}, PublicProps, {
|
|
34
|
+
selectedCount: number;
|
|
35
|
+
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
36
|
+
P: {};
|
|
37
|
+
B: {};
|
|
38
|
+
D: {};
|
|
39
|
+
C: {};
|
|
40
|
+
M: {};
|
|
41
|
+
Defaults: {};
|
|
42
|
+
}, Readonly<{
|
|
43
|
+
dataSource: DataSourceConfig;
|
|
44
|
+
selectedCount?: number;
|
|
45
|
+
}> & Readonly<{
|
|
46
|
+
onActionEvent?: (...args: any[]) => any;
|
|
47
|
+
}>, {
|
|
48
|
+
initData: () => Promise<void>;
|
|
49
|
+
getQueryParams: () => Record<string, any>;
|
|
50
|
+
}, {}, {}, {}, {
|
|
51
|
+
selectedCount: number;
|
|
52
|
+
}>;
|
|
53
|
+
curdTableRef: {
|
|
54
|
+
$: ComponentInternalInstance;
|
|
55
|
+
$data: {};
|
|
56
|
+
$props: {
|
|
57
|
+
readonly dataSource: DataSourceConfig;
|
|
58
|
+
readonly maxHeight?: number | string;
|
|
59
|
+
readonly onActionEvent?: (...args: any[]) => any;
|
|
60
|
+
readonly onSelectionChange?: (...args: any[]) => any;
|
|
61
|
+
readonly onRowClick?: (...args: any[]) => any;
|
|
62
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
63
|
+
$attrs: {
|
|
64
|
+
[x: string]: unknown;
|
|
65
|
+
};
|
|
66
|
+
$refs: {
|
|
67
|
+
[x: string]: unknown;
|
|
68
|
+
} & {
|
|
69
|
+
curdTableRef: unknown;
|
|
70
|
+
};
|
|
71
|
+
$slots: Readonly<{
|
|
72
|
+
[name: string]: globalThis.Slot;
|
|
73
|
+
}>;
|
|
74
|
+
$root: ComponentPublicInstance | null;
|
|
75
|
+
$parent: ComponentPublicInstance | null;
|
|
76
|
+
$host: Element | null;
|
|
77
|
+
$emit: ((event: "actionEvent", ...args: any[]) => void) & ((event: "selectionChange", ...args: any[]) => void) & ((event: "rowClick", ...args: any[]) => void);
|
|
78
|
+
$el: HTMLDivElement;
|
|
79
|
+
$options: ComponentOptionsBase<Readonly<{
|
|
80
|
+
dataSource: DataSourceConfig;
|
|
81
|
+
maxHeight?: number | string;
|
|
82
|
+
}> & Readonly<{
|
|
83
|
+
onActionEvent?: (...args: any[]) => any;
|
|
84
|
+
onSelectionChange?: (...args: any[]) => any;
|
|
85
|
+
onRowClick?: (...args: any[]) => any;
|
|
86
|
+
}>, {
|
|
87
|
+
refreshTable: (params?: any) => void;
|
|
88
|
+
getSelection: () => any[];
|
|
89
|
+
initData: () => Promise<void>;
|
|
90
|
+
getQueryParams: (params: any) => Promise<Record<string, any>>;
|
|
91
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
92
|
+
actionEvent: (...args: any[]) => void;
|
|
93
|
+
selectionChange: (...args: any[]) => void;
|
|
94
|
+
rowClick: (...args: any[]) => void;
|
|
95
|
+
}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
96
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
97
|
+
created?: (() => void) | (() => void)[];
|
|
98
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
99
|
+
mounted?: (() => void) | (() => void)[];
|
|
100
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
101
|
+
updated?: (() => void) | (() => void)[];
|
|
102
|
+
activated?: (() => void) | (() => void)[];
|
|
103
|
+
deactivated?: (() => void) | (() => void)[];
|
|
104
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
105
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
106
|
+
destroyed?: (() => void) | (() => void)[];
|
|
107
|
+
unmounted?: (() => void) | (() => void)[];
|
|
108
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
109
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
110
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
111
|
+
};
|
|
112
|
+
$forceUpdate: () => void;
|
|
113
|
+
$nextTick: nextTick;
|
|
114
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
115
|
+
} & Readonly<{}> & Omit<Readonly<{
|
|
116
|
+
dataSource: DataSourceConfig;
|
|
117
|
+
maxHeight?: number | string;
|
|
118
|
+
}> & Readonly<{
|
|
119
|
+
onActionEvent?: (...args: any[]) => any;
|
|
120
|
+
onSelectionChange?: (...args: any[]) => any;
|
|
121
|
+
onRowClick?: (...args: any[]) => any;
|
|
122
|
+
}>, "refreshTable" | "initData" | "getQueryParams" | "getSelection"> & ShallowUnwrapRef<{
|
|
123
|
+
refreshTable: (params?: any) => void;
|
|
124
|
+
getSelection: () => any[];
|
|
125
|
+
initData: () => Promise<void>;
|
|
126
|
+
getQueryParams: (params: any) => Promise<Record<string, any>>;
|
|
127
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
128
|
+
$slots: Partial<Record<string, (_: {
|
|
129
|
+
row: any;
|
|
130
|
+
column: ColumnConfig;
|
|
131
|
+
value: any;
|
|
132
|
+
}) => any>>;
|
|
133
|
+
};
|
|
134
|
+
};
|
|
135
|
+
rootEl: HTMLDivElement;
|
|
136
|
+
};
|
|
137
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
138
|
+
declare const __VLS_component: DefineComponent<__VLS_Props, {
|
|
11
139
|
refreshTable: () => any;
|
|
12
140
|
initSearch: () => any;
|
|
13
141
|
initTable: () => Promise<any>;
|
|
@@ -24,5 +152,123 @@ declare const _default: DefineComponent<__VLS_Props, {
|
|
|
24
152
|
showCard: boolean;
|
|
25
153
|
showToolbar: boolean;
|
|
26
154
|
showPadding: boolean;
|
|
27
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
155
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
156
|
+
curdSearchRef: CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
157
|
+
dataSource: DataSourceConfig;
|
|
158
|
+
selectedCount?: number;
|
|
159
|
+
}> & Readonly<{
|
|
160
|
+
onActionEvent?: (...args: any[]) => any;
|
|
161
|
+
}>, {
|
|
162
|
+
initData: () => Promise<void>;
|
|
163
|
+
getQueryParams: () => Record<string, any>;
|
|
164
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
165
|
+
actionEvent: (...args: any[]) => void;
|
|
166
|
+
}, PublicProps, {
|
|
167
|
+
selectedCount: number;
|
|
168
|
+
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
169
|
+
P: {};
|
|
170
|
+
B: {};
|
|
171
|
+
D: {};
|
|
172
|
+
C: {};
|
|
173
|
+
M: {};
|
|
174
|
+
Defaults: {};
|
|
175
|
+
}, Readonly<{
|
|
176
|
+
dataSource: DataSourceConfig;
|
|
177
|
+
selectedCount?: number;
|
|
178
|
+
}> & Readonly<{
|
|
179
|
+
onActionEvent?: (...args: any[]) => any;
|
|
180
|
+
}>, {
|
|
181
|
+
initData: () => Promise<void>;
|
|
182
|
+
getQueryParams: () => Record<string, any>;
|
|
183
|
+
}, {}, {}, {}, {
|
|
184
|
+
selectedCount: number;
|
|
185
|
+
}>;
|
|
186
|
+
curdTableRef: {
|
|
187
|
+
$: ComponentInternalInstance;
|
|
188
|
+
$data: {};
|
|
189
|
+
$props: {
|
|
190
|
+
readonly dataSource: DataSourceConfig;
|
|
191
|
+
readonly maxHeight?: number | string;
|
|
192
|
+
readonly onActionEvent?: (...args: any[]) => any;
|
|
193
|
+
readonly onSelectionChange?: (...args: any[]) => any;
|
|
194
|
+
readonly onRowClick?: (...args: any[]) => any;
|
|
195
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
196
|
+
$attrs: {
|
|
197
|
+
[x: string]: unknown;
|
|
198
|
+
};
|
|
199
|
+
$refs: {
|
|
200
|
+
[x: string]: unknown;
|
|
201
|
+
} & {
|
|
202
|
+
curdTableRef: unknown;
|
|
203
|
+
};
|
|
204
|
+
$slots: Readonly<{
|
|
205
|
+
[name: string]: globalThis.Slot;
|
|
206
|
+
}>;
|
|
207
|
+
$root: ComponentPublicInstance | null;
|
|
208
|
+
$parent: ComponentPublicInstance | null;
|
|
209
|
+
$host: Element | null;
|
|
210
|
+
$emit: ((event: "actionEvent", ...args: any[]) => void) & ((event: "selectionChange", ...args: any[]) => void) & ((event: "rowClick", ...args: any[]) => void);
|
|
211
|
+
$el: HTMLDivElement;
|
|
212
|
+
$options: ComponentOptionsBase<Readonly<{
|
|
213
|
+
dataSource: DataSourceConfig;
|
|
214
|
+
maxHeight?: number | string;
|
|
215
|
+
}> & Readonly<{
|
|
216
|
+
onActionEvent?: (...args: any[]) => any;
|
|
217
|
+
onSelectionChange?: (...args: any[]) => any;
|
|
218
|
+
onRowClick?: (...args: any[]) => any;
|
|
219
|
+
}>, {
|
|
220
|
+
refreshTable: (params?: any) => void;
|
|
221
|
+
getSelection: () => any[];
|
|
222
|
+
initData: () => Promise<void>;
|
|
223
|
+
getQueryParams: (params: any) => Promise<Record<string, any>>;
|
|
224
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
225
|
+
actionEvent: (...args: any[]) => void;
|
|
226
|
+
selectionChange: (...args: any[]) => void;
|
|
227
|
+
rowClick: (...args: any[]) => void;
|
|
228
|
+
}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
229
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
230
|
+
created?: (() => void) | (() => void)[];
|
|
231
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
232
|
+
mounted?: (() => void) | (() => void)[];
|
|
233
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
234
|
+
updated?: (() => void) | (() => void)[];
|
|
235
|
+
activated?: (() => void) | (() => void)[];
|
|
236
|
+
deactivated?: (() => void) | (() => void)[];
|
|
237
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
238
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
239
|
+
destroyed?: (() => void) | (() => void)[];
|
|
240
|
+
unmounted?: (() => void) | (() => void)[];
|
|
241
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
242
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
243
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
244
|
+
};
|
|
245
|
+
$forceUpdate: () => void;
|
|
246
|
+
$nextTick: nextTick;
|
|
247
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
248
|
+
} & Readonly<{}> & Omit<Readonly<{
|
|
249
|
+
dataSource: DataSourceConfig;
|
|
250
|
+
maxHeight?: number | string;
|
|
251
|
+
}> & Readonly<{
|
|
252
|
+
onActionEvent?: (...args: any[]) => any;
|
|
253
|
+
onSelectionChange?: (...args: any[]) => any;
|
|
254
|
+
onRowClick?: (...args: any[]) => any;
|
|
255
|
+
}>, "refreshTable" | "initData" | "getQueryParams" | "getSelection"> & ShallowUnwrapRef<{
|
|
256
|
+
refreshTable: (params?: any) => void;
|
|
257
|
+
getSelection: () => any[];
|
|
258
|
+
initData: () => Promise<void>;
|
|
259
|
+
getQueryParams: (params: any) => Promise<Record<string, any>>;
|
|
260
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
261
|
+
$slots: Partial<Record<string, (_: {
|
|
262
|
+
row: any;
|
|
263
|
+
column: ColumnConfig;
|
|
264
|
+
value: any;
|
|
265
|
+
}) => any>>;
|
|
266
|
+
};
|
|
267
|
+
}, HTMLDivElement>;
|
|
268
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
28
269
|
export default _default;
|
|
270
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
271
|
+
new (): {
|
|
272
|
+
$slots: S;
|
|
273
|
+
};
|
|
274
|
+
};
|
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
@charset "UTF-8";.sub-el-icon[data-v-ed552a8d],.nav-icon[data-v-ed552a8d]{display:inline-block;font-size:15px;margin-right:12px;position:relative}.svg-icon[data-v-ed552a8d]{width:1em;height:1em;position:relative;fill:currentColor;vertical-align:-2px}.el-tag+.el-tag[data-v-9a5060d2]{margin-left:5px;margin-bottom:3px;margin-top:3px}.el-image[data-v-dc163acb]{border-radius:2px}.el-image[data-v-dc163acb] .el-image__inner{transition:all .3s;cursor:pointer}.el-image[data-v-dc163acb] .image-slot{display:flex;justify-content:center;align-items:center;width:100%;height:100%;color:#909399;font-size:30px}.image-slot[data-v-dc163acb]{display:flex;justify-content:center;align-items:center;width:110px;height:100px;color:#909399;font-size:30px;border-radius:5px}.el-image[data-v-a3763021]{border-radius:4px}.el-image[data-v-a3763021] .el-image__inner{transition:all .3s;cursor:pointer}.el-image[data-v-a3763021] .el-image__inner:hover{transform:scale(1.2)}.el-image[data-v-a3763021] .image-slot{display:flex;justify-content:center;align-items:center;width:100%;height:100%;color:#909399;font-size:30px}.paging[data-v-5f05b778]{padding:12px 15px 15px;font-size:14px}.image-preview[data-v-5f05b778]{display:flex;justify-content:center}.el-switch .is-disabled[data-v-5f05b778]{opacity:1}.image-style[data-v-5f05b778]{display:flex;justify-content:center}.tc-text[data-v-5f05b778]{display:flex;text-overflow:ellipsis;line-clamp:2;-webkit-line-clamp:2;overflow:hidden;-webkit-box-orient:vertical}.el-column-tag[data-v-5f05b778]{margin-right:2px}.color-cell[data-v-5f05b778]{display:flex;justify-content:center}.color-cell-item[data-v-5f05b778]{width:24px;height:24px;border-radius:2px}.upload-file-uploader[data-v-027e6121]{margin-bottom:5px}.upload-file-list .el-upload-list__item[data-v-027e6121]{border:1px solid #e4e7ed;line-height:2;margin-bottom:10px;position:relative;padding-left:10px}.upload-file-list .ele-upload-list__item-content[data-v-027e6121]{display:flex;justify-content:space-between;align-items:center;color:inherit}.ele-upload-list__item-content-action .el-link[data-v-027e6121]{margin-right:10px}[data-v-c17cf859] .hide .el-upload--picture-card{display:none}[data-v-c17cf859] .el-upload--picture-card{width:var(--9d14746a);height:var(--9d14746a);line-height:var(--9d14746a)}[data-v-c17cf859] .el-upload-list__item{width:var(--9d14746a);height:var(--9d14746a)}.editor-img-uploader{display:none}.editor,.ql-toolbar{white-space:pre-wrap!important;line-height:normal!important}.quill-img{display:none}.ql-snow .ql-tooltip[data-mode=link]:before{content:"请输入链接地址:"}.ql-snow .ql-tooltip.ql-editing a.ql-action:after{border-right:0;content:"保存";padding-right:0}.ql-snow .ql-tooltip[data-mode=video]:before{content:"请输入视频地址:"}.ql-snow .ql-picker.ql-size .ql-picker-label:before,.ql-snow .ql-picker.ql-size .ql-picker-item:before{content:"14px"}.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]:before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]:before{content:"10px"}.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]:before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]:before{content:"18px"}.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]:before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]:before{content:"32px"}.ql-snow .ql-picker.ql-header .ql-picker-label:before,.ql-snow .ql-picker.ql-header .ql-picker-item:before{content:"文本"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]:before{content:"标题1"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]:before{content:"标题2"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]:before{content:"标题3"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]:before{content:"标题4"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]:before{content:"标题5"}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]:before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]:before{content:"标题6"}.ql-snow .ql-picker.ql-font .ql-picker-label:before,.ql-snow .ql-picker.ql-font .ql-picker-item:before{content:"标准字体"}.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]:before,.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]:before{content:"衬线字体"}.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]:before,.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]:before{content:"等宽字体"}.color-picker-tips[data-v-aa73b22b]{margin-left:10px;color:#666}[data-v-aa73b22b] .el-p .el-input__wrapper{width:100%!important}.curdEditDialog .el-dialog__footer{padding-top:0!important;padding-right:12px}.curd-search-card[data-v-88290712]{margin-bottom:12px!important}.curd-search-card[data-v-88290712] .el-form-item__label{font-weight:400;font-size:14px;color:var(--el-text-color-regular)}.search[data-v-88290712]{cursor:pointer;padding:12px 14px 0;border-radius:4px}
|