提交 | 用户 | 时间
|
fd2207
|
1 |
export default [ |
懒 |
2 |
{ |
|
3 |
layout: 'colFormItem', |
|
4 |
tagIcon: 'input', |
|
5 |
label: '手机号', |
|
6 |
vModel: 'mobile', |
|
7 |
formId: 6, |
|
8 |
tag: 'el-input', |
|
9 |
placeholder: '请输入手机号', |
|
10 |
defaultValue: '', |
|
11 |
span: 24, |
|
12 |
style: { width: '100%' }, |
|
13 |
clearable: true, |
|
14 |
prepend: '', |
|
15 |
append: '', |
|
16 |
'prefix-icon': 'el-icon-mobile', |
|
17 |
'suffix-icon': '', |
|
18 |
maxlength: 11, |
|
19 |
'show-word-limit': true, |
|
20 |
readonly: false, |
|
21 |
disabled: false, |
|
22 |
required: true, |
|
23 |
changeTag: true, |
|
24 |
regList: [{ |
|
25 |
pattern: '/^1(3|4|5|7|8|9)\\d{9}$/', |
|
26 |
message: '手机号格式错误' |
|
27 |
}] |
|
28 |
} |
|
29 |
] |