|
1
|
<template>
|
|
2
|
<PageWrapper title="表单基础示例" contentFullHeight>
|
|
3
4
|
<CollapseContainer title="基础示例">
<BasicForm
|
vben
authored
|
5
|
autoFocusFirstItem
|
|
6
|
:labelWidth="200"
|
|
7
8
9
|
:schemas="schemas"
:actionColOptions="{ span: 24 }"
@submit="handleSubmit"
|
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
@reset="handleReset"
>
<template #localSearch="{ model, field }">
<ApiSelect
:api="optionsListApi"
showSearch
v-model:value="model[field]"
optionFilterProp="label"
resultField="list"
labelField="name"
valueField="id"
/>
</template>
<template #remoteSearch="{ model, field }">
<ApiSelect
:api="optionsListApi"
showSearch
v-model:value="model[field]"
:filterOption="false"
resultField="list"
labelField="name"
valueField="id"
:params="searchParams"
@search="onSearch"
/>
</template>
</BasicForm>
|
|
37
|
</CollapseContainer>
|
vben
authored
|
38
|
</PageWrapper>
|
|
39
40
|
</template>
<script lang="ts">
|
|
41
42
43
|
import { computed, defineComponent, unref, ref } from 'vue';
import { BasicForm, FormSchema, ApiSelect } from '/@/components/Form/index';
import { CollapseContainer } from '/@/components/Container';
|
|
44
|
import { useMessage } from '/@/hooks/web/useMessage';
|
vben
authored
|
45
|
import { PageWrapper } from '/@/components/Page';
|
vben
authored
|
46
|
|
vben
authored
|
47
|
import { optionsListApi } from '/@/api/demo/select';
|
|
48
|
import { useDebounceFn } from '@vueuse/core';
|
M69W
authored
|
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
const provincesOptions = [
{
id: 'guangdong',
label: '广东省',
value: '1',
key: '1',
},
{
id: 'jiangsu',
label: '江苏省',
value: '2',
key: '2',
},
];
const citiesOptionsData = {
guangdong: [
{
label: '珠海市',
value: '1',
key: '1',
},
{
label: '深圳市',
value: '2',
key: '2',
},
{
label: '广州市',
value: '3',
key: '3',
},
],
jiangsu: [
{
label: '南京市',
value: '1',
key: '1',
},
{
label: '无锡市',
value: '2',
key: '2',
},
{
label: '苏州市',
value: '3',
key: '3',
},
],
};
|
|
101
102
103
104
105
|
const schemas: FormSchema[] = [
{
field: 'field1',
component: 'Input',
label: '字段1',
|
vben
authored
|
106
|
|
|
107
108
109
|
colProps: {
span: 8,
},
|
vben
authored
|
110
111
112
113
114
|
// componentProps:{},
// can func
componentProps: ({ schema, formModel }) => {
console.log('form:', schema);
console.log('formModel:', formModel);
|
vben
authored
|
115
116
117
118
119
120
|
return {
placeholder: '自定义placeholder',
onChange: (e: any) => {
console.log(e);
},
};
|
|
121
|
},
|
vben
authored
|
122
123
124
125
126
127
|
renderComponentContent: () => {
return {
prefix: () => 'pSlot',
suffix: () => 'sSlot',
};
},
|
|
128
129
130
131
|
},
{
field: 'field2',
component: 'Input',
|
vben
authored
|
132
|
label: '带后缀',
|
vben
authored
|
133
|
defaultValue: '111',
|
|
134
135
136
|
colProps: {
span: 8,
},
|
vben
authored
|
137
138
139
140
141
|
componentProps: {
onChange: (e: any) => {
console.log(e);
},
},
|
vben
authored
|
142
|
suffix: '天',
|
|
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
|
},
{
field: 'field3',
component: 'DatePicker',
label: '字段3',
colProps: {
span: 8,
},
},
{
field: 'field4',
component: 'Select',
label: '字段4',
colProps: {
span: 8,
},
componentProps: {
options: [
{
label: '选项1',
value: '1',
key: '1',
},
{
label: '选项2',
value: '2',
key: '2',
},
],
},
},
{
field: 'field5',
component: 'CheckboxGroup',
label: '字段5',
colProps: {
span: 8,
},
componentProps: {
options: [
{
label: '选项1',
value: '1',
},
{
label: '选项2',
value: '2',
},
],
},
},
{
field: 'field7',
component: 'RadioGroup',
label: '字段7',
colProps: {
span: 8,
},
componentProps: {
options: [
{
label: '选项1',
value: '1',
},
{
label: '选项2',
value: '2',
},
],
},
},
|
vben
authored
|
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
|
{
field: 'field8',
component: 'Checkbox',
label: '字段8',
colProps: {
span: 8,
},
renderComponentContent: 'Check',
},
{
field: 'field9',
component: 'Switch',
label: '字段9',
colProps: {
span: 8,
},
},
{
field: 'field10',
component: 'RadioButtonGroup',
label: '字段10',
colProps: {
span: 8,
},
componentProps: {
options: [
{
label: '选项1',
value: '1',
},
{
label: '选项2',
value: '2',
},
],
},
},
{
field: 'field11',
component: 'Cascader',
label: '字段11',
colProps: {
span: 8,
},
componentProps: {
options: [
{
value: 'zhejiang',
label: 'Zhejiang',
children: [
{
value: 'hangzhou',
label: 'Hangzhou',
children: [
{
value: 'xihu',
label: 'West Lake',
},
],
},
],
},
{
value: 'jiangsu',
label: 'Jiangsu',
children: [
{
value: 'nanjing',
label: 'Nanjing',
children: [
{
value: 'zhonghuamen',
label: 'Zhong Hua Men',
},
],
},
],
},
],
},
},
|
vben
authored
|
295
296
297
|
{
field: 'field30',
component: 'ApiSelect',
|
|
298
|
label: '懒加载远程下拉',
|
vben
authored
|
299
300
|
required: true,
componentProps: {
|
M69W
authored
|
301
|
// more details see /src/components/Form/src/components/ApiSelect.vue
|
vben
authored
|
302
|
api: optionsListApi,
|
M69W
authored
|
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
|
params: {
id: 1,
},
resultField: 'list',
// use name as label
labelField: 'name',
// use id as value
valueField: 'id',
// not request untill to select
immediate: false,
onChange: (e) => {
console.log('selected:', e);
},
// atfer request callback
onOptionsChange: (options) => {
console.log('get options', options.length, options);
},
|
vben
authored
|
320
321
322
323
|
},
colProps: {
span: 8,
},
|
|
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
|
defaultValue: '0',
},
{
field: 'field31',
component: 'Input',
label: '下拉本地搜索',
helpMessage: ['ApiSelect组件', '远程数据源本地搜索', '只发起一次请求获取所有选项'],
required: true,
slot: 'localSearch',
colProps: {
span: 8,
},
defaultValue: '0',
},
{
field: 'field32',
component: 'Input',
label: '下拉远程搜索',
helpMessage: ['ApiSelect组件', '将关键词发送到接口进行远程搜索'],
required: true,
slot: 'remoteSearch',
colProps: {
span: 8,
},
|
vben
authored
|
348
|
defaultValue: '0',
|
vben
authored
|
349
|
},
|
vben
authored
|
350
351
352
353
354
355
356
357
358
|
{
field: 'field20',
component: 'InputNumber',
label: '字段20',
required: true,
colProps: {
span: 8,
},
},
|
M69W
authored
|
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
|
{
field: 'province',
component: 'Select',
label: '省份',
colProps: {
span: 8,
},
componentProps: ({ formModel, formActionType }) => {
return {
options: provincesOptions,
placeholder: '省份与城市联动',
onChange: (e: any) => {
// console.log(e)
let citiesOptions =
e == 1
? citiesOptionsData[provincesOptions[0].id]
: citiesOptionsData[provincesOptions[1].id];
// console.log(citiesOptions)
if (e === undefined) {
citiesOptions = [];
}
formModel.city = undefined; // reset city value
const { updateSchema } = formActionType;
updateSchema({
field: 'city',
componentProps: {
options: citiesOptions,
},
});
},
};
},
},
{
field: 'city',
component: 'Select',
label: '城市',
colProps: {
span: 8,
},
componentProps: {
options: [], // defalut []
placeholder: '省份与城市联动',
},
},
|
木头锤纸
authored
|
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
|
{
field: 'field21',
component: 'Slider',
label: '字段21',
componentProps: {
min: 0,
max: 100,
range: true,
marks: {
20: '20°C',
60: '60°C',
},
},
colProps: {
span: 8,
},
},
|
|
421
422
423
424
425
426
427
428
429
430
431
432
433
|
{
field: 'field22',
component: 'Rate',
label: '字段22',
defaultValue: 3,
colProps: {
span: 8,
},
componentProps: {
disabled: false,
allowHalf: true,
},
},
|
|
434
435
436
|
];
export default defineComponent({
|
|
437
|
components: { BasicForm, CollapseContainer, PageWrapper, ApiSelect },
|
|
438
|
setup() {
|
vben
authored
|
439
|
const check = ref(null);
|
|
440
|
const { createMessage } = useMessage();
|
|
441
442
443
444
445
446
447
448
|
const keyword = ref<string>('');
const searchParams = computed<Recordable>(() => {
return { keyword: unref(keyword) };
});
function onSearch(value: string) {
keyword.value = value;
}
|
|
449
450
|
return {
schemas,
|
|
451
452
453
454
455
456
|
optionsListApi,
onSearch: useDebounceFn(onSearch, 300),
searchParams,
handleReset: () => {
keyword.value = '';
},
|
|
457
458
459
|
handleSubmit: (values: any) => {
createMessage.success('click search,values:' + JSON.stringify(values));
},
|
vben
authored
|
460
|
check,
|
|
461
462
463
464
|
};
},
});
</script>
|