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
| {
| "templateName":"预付费用",
| "directories": "property",
| "templateCode":"prestoreFee",
| "templateKey":"prestoreFeeId",
| "templateKeyName":"预付费用ID",
| "searchCode": "prestoreFeeId",
| "searchName": "预付费用ID",
| "conditions": [
| {
| "name": "预存类型",
| "inputType": "select",
| "selectValue":"8003,8004",
| "selectValueName":"水费,电费",
| "code": "prestoreFeeType",
| "whereCondition": "equal"
| },
| {
| "name": "预存金额",
| "inputType": "input",
| "code": "prestoreFeeAmount",
| "whereCondition": "equal"
| },
| {
| "name": "状态",
| "inputType": "select",
| "selectValue":"1001,2002",
| "selectValueName":"未使用,已使用",
| "code": "state",
| "whereCondition": "equal"
| }
| ],
| "columns":[
| {
| "code": "roomId",
| "cnCode":"房屋ID",
| "desc":"必填,请填写房屋ID",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"maxLength",
| "limitParam":"100",
| "limitErrInfo":"标题太长 超过100位",
| "show": true
| },
| {
| "inputType": "select",
| "selectValue":"8003,8004",
| "selectValueName":"水费,电费",
| "code": "prestoreFeeType",
| "cnCode":"预付类型",
| "desc":"必选,请选择水费或电费",
| "required":true,
| "hasDefaultValue":false,
| "limit":"num",
| "limitParam":"",
| "limitErrInfo":"格式错误",
| "show": true
| },
| {
| "inputType": "select",
| "selectValue":"3333,6666",
| "selectValueName":"房屋,车位",
| "code": "prestoreFeeObjType",
| "cnCode":"预存对象类型",
| "desc":"必选,请选择预存对象类型",
| "required":true,
| "hasDefaultValue":false,
| "limit":"num",
| "limitParam":"",
| "limitErrInfo":"预存对象类型格式错误",
| "show": true
| },
| {
| "code": "prestoreFeeAmount",
| "cnCode":"预付金额",
| "desc":"必填,请填写预付金额",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"num",
| "limitParam":"",
| "limitErrInfo":"预付金额格式错误",
| "show": true
| },
| {
| "inputType": "select",
| "selectValue":"1001,2002",
| "selectValueName":"未使用,已使用",
| "code": "state",
| "cnCode":"状态",
| "desc":"必选,请选择状态",
| "required":true,
| "hasDefaultValue":false,
| "limit":"maxLength",
| "limitParam":"8",
| "limitErrInfo":"状态格式错误",
| "show": true
| },
| {
| "code": "reason",
| "cnCode":"原因",
| "desc":"选填,请填写原因",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"maxLength",
| "limitParam":"100",
| "limitErrInfo":"原因格式错误",
| "show": false
| },
| {
| "code": "remark",
| "cnCode":"备注",
| "desc":"必填,请填写入住时间",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"maxLength",
| "limitParam":"100",
| "limitErrInfo":"备注格式错误",
| "show": true
| }
| ]
| }
|
|