1
2
3
4
5
6
7
8
9
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
| import type { CrudSchema } from '@/hooks/web/useCrudSchemas'
|
| // 表单校验
| export const rules = reactive({
| spuId: [required],
| sort: [required]
| })
|
| // CrudSchema https://doc.iocoder.cn/vue3/crud-schema/
| const crudSchemas = reactive<CrudSchema[]>([
| {
| label: '排序',
| field: 'sort',
| form: {
| component: 'InputNumber',
| value: 0
| },
| table: {
| width: 80
| }
| },
| {
| label: '积分商城活动商品',
| field: 'spuId',
| isTable: true,
| isSearch: false,
| form: {
| colProps: {
| span: 24
| }
| },
| table: {
| width: 300
| }
| },
| {
| label: '备注',
| field: 'remark',
| isSearch: false,
| form: {
| component: 'Input',
| componentProps: {
| type: 'textarea',
| rows: 4
| },
| colProps: {
| span: 24
| }
| },
| table: {
| width: 300
| }
| }
| ])
| export const { allSchemas } = useCrudSchemas(crudSchemas)
|
|