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
| {
| "templateName":"租赁预约",
| "directories": "admin",
| "templateCode":"rentingAppointment",
| "templateKey":"appointmentId",
| "templateKeyName":"预约ID",
| "searchCode": "appointmentId",
| "searchName": "预约ID",
| "conditions": [
| {
| "name": "租客名称",
| "inputType": "input",
| "code": "tenantName",
| "whereCondition": "equal"
| },
| {
| "name": "租客手机号",
| "inputType": "input",
| "code": "tenantTel",
| "whereCondition": "equal"
| },
| {
| "name": "预约房屋编号",
| "inputType": "input",
| "code": "appointmentRoomId",
| "whereCondition": "equal"
| }
| ],
| "columns":[
| {
| "code": "tenantName",
| "cnCode":"租客名称",
| "desc":"必填,请填写租客名称",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"maxLength",
| "limitParam":"64",
| "limitErrInfo":"租客名称不能超过64位",
| "show": true
| },
| {
| "code": "tenantSex",
| "cnCode":"租客性别",
| "desc":"选填,请选择租客性别",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "select",
| "selectValue":"0,1",
| "selectValueName":"男,女",
| "limit":"num",
| "limitParam":"",
| "limitErrInfo":"年龄格式错误",
| "show": true
| },
| {
| "code": "tenantTel",
| "cnCode":"租客电话",
| "desc":"必填,请填写租客电话",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"phone",
| "limitParam":"",
| "limitErrInfo":"手机号格式错误",
| "show": true
| },
| {
| "code": "appointmentTime",
| "cnCode":"预约时间",
| "desc":"必填,请填写预约时间",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"datetime",
| "limitParam":"",
| "limitErrInfo":"预约时间格式错误",
| "show": true
| },
| {
| "code": "appointmentRoomId",
| "cnCode":"预约房屋",
| "desc":"选填,请填写预约房屋",
| "required":false,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"num",
| "limitParam":"",
| "limitErrInfo":"预约房屋格式错误",
| "show": true
| },
| {
| "code": "remark",
| "cnCode":"备注",
| "desc":"选填,请填写备注",
| "required":false,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"maxLength",
| "limitParam":"500",
| "limitErrInfo":"备注不能超过500字",
| "show": true
| }
|
| ]
| }
|
|