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
| {
| "templateName":"开户行",
| "templateCode":"accountBank",
| "templateKey":"bankId",
| "templateKeyName":"银行ID",
| "searchCode": "bankId",
| "searchName": "银行ID",
| "directories": "acct",
| "conditions": [
| ],
| "columns":[
| {
| "code":"bankCode",
| "cnCode":"银行账号",
| "desc":"必填,请填写银行账号",
| "required":true,
| "hasDefaultValue":false,
| "inputType":"input",
| "limit":"maxin",
| "limitParam":"1,20",
| "limitErrInfo":"银行账号超长了",
| "show": true
| },
| {
| "code": "personName",
| "cnCode":"持卡人",
| "desc":"必填,请填写持卡人",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"maxLength",
| "limitParam":"20",
| "limitErrInfo":"持卡人名称不能超过20位",
| "show": true
| },
| {
| "code": "personTel",
| "cnCode":"手机号",
| "desc":"必填,请填写手机号",
| "required":false,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"phone",
| "limitParam":"",
| "limitErrInfo":"电话格式错误",
| "show": true
| },
| {
| "code": "bankName",
| "cnCode":"开户行",
| "desc":"必填,请填写开户行",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"maxLength",
| "limitParam":"100",
| "limitErrInfo":"开户行名称不能超过100位",
| "show": true
| }
| ]
| }
|
|