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
| {
| "templateName": "供应商",
| "directories": "property",
| "templateCode": "resourceSupplier",
| "templateKey": "rs_id",
| "templateKeyName": "供应商编号",
| "searchCode": "rsId",
| "searchName": "供应商编号",
| "conditions": [
| {
| "name": "供应商名称",
| "inputType": "input",
| "code": "supplierName",
| "whereCondition": "equal"
| },
| {
| "name": "供联系方式",
| "inputType": "input",
| "code": "tel",
| "whereCondition": "equal"
| },
| {
| "name": "供应商编号",
| "inputType": "input",
| "code": "rsId",
| "whereCondition": "equal"
| }
| ],
| "columns": [
| {
| "code": "supplierName",
| "cnCode": "供应商名称",
| "desc": "必填,请填写供应商名称",
| "required": true,
| "hasDefaultValue": false,
| "inputType": "input",
| "limit": "maxLength",
| "limitParam": "255",
| "limitErrInfo": "供应商名称太长",
| "show": true
| },
| {
| "code": "address",
| "cnCode": "供应商地址",
| "desc": "必填,请填写供应商地址",
| "required": true,
| "hasDefaultValue": false,
| "inputType": "input",
| "limit": "maxLength",
| "limitParam": "255",
| "limitErrInfo": "供应商名称太长",
| "show": true
| },
| {
| "code": "tel",
| "cnCode": "供应商联系方式",
| "desc": "必填,请填写供应商联系方式",
| "required": true,
| "hasDefaultValue": false,
| "inputType": "input",
| "limit": "maxLength",
| "limitParam": "11",
| "limitErrInfo": "供应商联系方式太长",
| "show": true
| },
| {
| "code": "contactName",
| "cnCode": "联系人姓名",
| "desc": "必填,请填写联系人姓名",
| "required": true,
| "hasDefaultValue": false,
| "inputType": "input",
| "limit": "maxLength",
| "limitParam": "255",
| "limitErrInfo": "供应商联系人姓名太长",
| "show": true
| },
| {
| "code": "accountBank",
| "cnCode": "开户行",
| "desc": "选填,请填写开户行",
| "required": false,
| "hasDefaultValue": false,
| "inputType": "input",
| "limit": "maxLength",
| "limitParam": "255",
| "limitErrInfo": "供应商开户行太长",
| "show": true
| },
| {
| "code": "bankAccountNumber",
| "cnCode": "开户行账号",
| "desc": "选填,请填写开户行账号",
| "required": false,
| "hasDefaultValue": false,
| "inputType": "input",
| "limit": "maxLength",
| "limitParam": "255",
| "limitErrInfo": "供应商开户行账号太长",
| "show": true
| },
| {
| "code": "remark",
| "cnCode": "备注",
| "desc": "选填,请填写备注",
| "required": false,
| "hasDefaultValue": false,
| "inputType": "input",
| "limit": "maxLength",
| "limitParam": "512",
| "limitErrInfo": "备注太长",
| "show": true
| }
| ]
| }
|
|