Ver Fonte

🐞 fix(validate): 添加校验

hxl há 8 meses atrás
pai
commit
9567b7587b
2 ficheiros alterados com 0 adições e 2 exclusões
  1. 0 1
      src/utils/el-validate.js
  2. 0 1
      src/utils/validate.js

+ 0 - 1
src/utils/el-validate.js

@@ -1,7 +1,6 @@
 import { isEmail, isValidPhone } from "./validate"
 
 export function elIsEmail(rule, value, callback) {
-    console.log('value',value);
     if (!value) {
         return callback(new Error('Please enter your email'))
     }

+ 0 - 1
src/utils/validate.js

@@ -5,7 +5,6 @@ export function validMobile(str) {
     return /^1[3-9][0-9]{9}$/.test(str)
 }
 export function isEmail(str) {
-    console.log(str);
     return /^([a-zA-Z0-9]+[-_\.]?)+@[a-zA-Z0-9]+\.[a-z]+$/.test(str)
 }
 export function isValidPhone(str) {