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
| {
| "templateName":"服务",
| "templateCode":"service",
| "templateKey":"serviceId",
| "templateKeyName":"服务ID",
| "flows":[
| {
| "index": 0,
| "code":"floor",
| "cnCode":"选择楼",
| "vcName":"viewFloorInfo",
| "existsComponent": true
| },
| {
| "index": 0,
| "code":"unit",
| "cnCode":"选择单元",
| "vcName":"viewUnitInfo",
| "existsComponent": true
| },
| {
| "index": 0,
| "code":"room",
| "cnCode":"添加房屋",
| "vcName":"addRoomView",
| "existsComponent": false
| }
| ],
| "components": {
| "addRoomView": {
| "templateName":"添加房屋",
| "templateCode":"addRoom",
| "columns":[
| {
| "code":"name",
| "cnCode":"服务名称",
| "desc":"必填,请填写服务名称",
| "required":true,
| "hasDefaultValue":false,
| "inputType":"input",
| "limit":"maxLength",
| "limitParam":"50",
| "limitErrInfo":"服务名称不能超过50"
| }
| ]
| }
| }
| }
|
|