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
| {
| "templateName": "仓库",
| "directories": "property",
| "templateCode": "storehouse",
| "templateKey": "shId",
| "templateKeyName": "仓库编号",
| "searchCode": "shId",
| "searchName": "仓库编号",
| "conditions": [
| {
| "name": "仓库名称",
| "inputType": "input",
| "code": "shName",
| "whereCondition": "equal"
| },
| {
| "name": "仓库类型",
| "inputType": "select",
| "selectValue": "2806,2807",
| "selectValueName": "集团仓库,小区仓库",
| "code": "shType",
| "whereCondition": "equal"
| },
| {
| "name": "仓库编号",
| "inputType": "input",
| "code": "shId",
| "whereCondition": "equal"
| }
| ],
| "columns": [
| {
| "code": "shName",
| "cnCode": "仓库名称",
| "desc": "必填,请填写仓库名称",
| "required": true,
| "hasDefaultValue": false,
| "inputType": "input",
| "limit": "maxLength",
| "limitParam": "64",
| "limitErrInfo": "仓库名称太长",
| "show": true
| },
| {
| "code": "shType",
| "cnCode": "仓库类型",
| "desc": "必填,请选择仓库类型",
| "required": true,
| "hasDefaultValue": false,
| "inputType": "select",
| "selectValue": "2806,2807",
| "selectValueName": "集团仓库,小区仓库",
| "limit": "num",
| "limitParam": "",
| "limitErrInfo": "仓库类型格式错误",
| "show": true
| },
| {
| "code": "shDesc",
| "cnCode": "描述",
| "desc": "必填,请填写描述",
| "required": true,
| "hasDefaultValue": false,
| "inputType": "input",
| "limit": "maxLength",
| "limitParam": "512",
| "limitErrInfo": "描述太长",
| "show": true
| }
| ]
| }
|
|