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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
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
| {
| "templateName":"合同信息",
| "directories": "admin",
| "templateCode":"contract",
| "templateKey":"contractId",
| "templateKeyName":"合同ID",
| "searchCode": "contractId",
| "searchName": "合同ID",
| "conditions": [
| {
| "name": "合同名称",
| "inputType": "input",
| "code": "contractName",
| "whereCondition": "equal"
| },
| {
| "name": "合同编号",
| "inputType": "input",
| "code": "contractCode",
| "whereCondition": "equal"
| },
| {
| "name": "合同类型",
| "inputType": "input",
| "code": "contractType",
| "whereCondition": "equal"
| }
| ],
| "columns":[
| {
| "code": "contractName",
| "cnCode":"合同名称",
| "desc":"必填,请填写合同名称",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"maxLength",
| "limitParam":"200",
| "limitErrInfo":"合同名称不能超过64位",
| "show": true
| },
| {
| "code": "contractCode",
| "cnCode":"合同编号",
| "desc":"选填,请填写合同编号",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"maxLength",
| "limitParam":"30",
| "limitErrInfo":"合同编号错误",
| "show": true
| },
| {
| "code": "contractType",
| "cnCode":"合同类型",
| "desc":"必填,请选择合同类型",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "select",
| "selectValue":"10001,10002",
| "selectValueName":"小区文化,其他",
| "limit":"num",
| "limitParam":"",
| "limitErrInfo":"合同类型格式错误",
| "show": true
| },
| {
| "code": "partyA",
| "cnCode":"甲方",
| "desc":"必填,请填写甲方",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"maxLength",
| "limitParam":"200",
| "limitErrInfo":"甲方名称太长",
| "show": true
| },
| {
| "code": "partyB",
| "cnCode":"乙方",
| "desc":"必填,请填写乙方",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"maxLength",
| "limitParam":"200",
| "limitErrInfo":"乙方名称太长",
| "show": true
| },
| {
| "code": "aContacts",
| "cnCode":"甲方联系人",
| "desc":"必填,请填写甲方联系人",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"maxLength",
| "limitParam":"64",
| "limitErrInfo":"甲方联系人长度超过64位",
| "show": false
| },
| {
| "code": "bContacts",
| "cnCode":"乙方联系人",
| "desc":"必填,请填写甲方联系人",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"maxLength",
| "limitParam":"64",
| "limitErrInfo":"甲方联系人长度超过64位",
| "show": false
| },
| {
| "code": "aLink",
| "cnCode":"甲方联系电话",
| "desc":"必填,请填写甲方联系电话",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"phone",
| "limitParam":"",
| "limitErrInfo":"甲方联系电话错误",
| "show": false
| },
| {
| "code": "bLink",
| "cnCode":"乙方联系电话",
| "desc":"必填,请填写乙方联系电话",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"phone",
| "limitParam":"",
| "limitErrInfo":"乙方联系电话错误",
| "show": false
| },
| {
| "code": "operator",
| "cnCode":"经办人",
| "desc":"必填,请填写经办人",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"maxLength",
| "limitParam":"64",
| "limitErrInfo":"经办人超过64位",
| "show": true
| },
| {
| "code": "operatorLink",
| "cnCode":"联系电话",
| "desc":"必填,请填写经办人联系电话",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"phone",
| "limitParam":"",
| "limitErrInfo":"经办人联系电话格式错误",
| "show": false
| },
| {
| "code": "amount",
| "cnCode":"合同金额",
| "desc":"必填,请填写合同金额",
| "required":false,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"money",
| "limitParam":"",
| "limitErrInfo":"合同金额格式错误,如1.50",
| "show": true
| },
| {
| "code": "startTime",
| "cnCode":"开始时间",
| "desc":"必填,请填写合同开始时间",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"dateTime",
| "limitParam":"",
| "limitErrInfo":"合同开始时间格式错误",
| "show": true
| },
| {
| "code": "endTime",
| "cnCode":"结束时间",
| "desc":"必填,请填写合同结束时间",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"dateTime",
| "limitParam":"",
| "limitErrInfo":"合同结束时间格式错误",
| "show": true
| },
| {
| "code": "signingTime",
| "cnCode":"签订时间",
| "desc":"选填,请填写合同签订时间",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"dateTime",
| "limitParam":"",
| "limitErrInfo":"合同签订时间格式错误",
| "show": false
| }
| ]
| }
|
|