🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
``` export const isMobile = (s) => { return /^1[0-9]{10}$/.test(s) } ``` #### 电话 ``` export const isPhone = (s) => { return /^([0-9]{3,4}-)?[0-9]{7,8}$/.test(s) } ```