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
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
| import { BasicColumn, FormSchema } from '/@/components/Table';
|
| //列表显示
| export const dtlColumns: BasicColumn[] = [
| {
| title: '字段名',
| dataIndex: 'FieldName',
| ifShow: false,
| width: 180,
| },
| ];
|
| export const newFormSchema: FormSchema[] = [
| {
| field: 'ASSEMBLY_NAME',
| label: '实体类名',
| component: 'Input',
| colProps: { span: 8 },
| },
| {
| field: '00',
| component: 'Input',
| label: '1',
| colSlot: 'add',
| colProps: {
| span: 2,
| },
| },
| {
| field: '0',
| component: 'Input',
| label: '1',
| colSlot: 'condAdd',
| colProps: {
| span: 10,
| },
| },
| ];
|
| export const crudSchemas: FormSchema[] = [
| {
| field: 'crudAssemblyName',
| label: '实体类名',
| component: 'Input',
| colProps: { span: 8 },
| },
| {
| field: '00',
| component: 'Input',
| label: '1',
| colSlot: 'add',
| colProps: {
| span: 2,
| },
| },
| {
| field: '0',
| component: 'Input',
| label: '1',
| colSlot: 'crudCondAdd',
| colProps: {
| span: 10,
| },
| },
| ];
|
| export const mainSchemas: FormSchema[] = [
| {
| field: 'MainAssemblyName',
| label: '实体类名',
| component: 'Input',
| colProps: { span: 8 },
| },
| {
| field: '00',
| component: 'Input',
| label: '1',
| colSlot: 'add',
| colProps: {
| span: 2,
| },
| },
| {
| field: '0',
| component: 'Input',
| label: '1',
| colSlot: 'mainCondAdd',
| colProps: {
| span: 10,
| },
| },
| ];
|
|