中国算力平台算力登记系统2.0
yanzhaofeige
2024-09-30 3c4fee1db116c11d4f04727cfe076d7c94daeaf2
commit | author | age
43dc29 1 export default [
Y 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 ]