| 12345678910111213141516171819202122 |
- import { VxeUI } from 'vxe-pc-ui';
- // 手机号校验
- VxeUI.validators.add('ValidMobile', {
- itemValidatorMethod({ itemValue }) {
- if ( !itemValue ) return new Error(`请输入手机号码`);
- if ( !/^1[3-9]\d{9}$/.test(itemValue) ) return new Error('手机号码格式不正确');
- },
- });
- VxeUI.validators.add('ValidPassword', {
- itemValidatorMethod({ itemValue }) {
- if ( !itemValue ) return new Error(`请输入密码`);
- if ( !(
- itemValue.length > 8 &&
- /\d/.test(itemValue) &&
- /[a-zA-Z]/.test(itemValue)
- ) ) {
- return new Error('密码格式不正确(由数字、字母组成,最少8位)');
- }
- },
- });
|