12345678910111213141516171819202122232425262728293031323334353637 |
- export default [
- {
- __config__: {
- label: '单行文本',
- labelWidth: null,
- showLabel: true,
- changeTag: true,
- tag: 'el-input',
- tagIcon: 'input',
- defaultValue: undefined,
- required: true,
- layout: 'colFormItem',
- span: 24,
- document: 'https://element.eleme.cn/#/zh-CN/component/input',
- // 正则校验规则
- regList: [{
- pattern: '/^1(3|4|5|7|8|9)\\d{9}$/',
- message: '手机号格式错误'
- }]
- },
- // 组件的插槽属性
- __slot__: {
- prepend: '',
- append: ''
- },
- __vModel__: 'mobile',
- placeholder: '请输入手机号',
- style: { width: '100%' },
- clearable: true,
- 'prefix-icon': 'el-icon-mobile',
- 'suffix-icon': '',
- maxlength: 11,
- 'show-word-limit': true,
- readonly: false,
- disabled: false
- }
- ]
|