最方便正则验证手机号
let reg = /^((13[0-9])|(14[0-9])|(15[0-9])|(17[0-9])|(18[0-9]))\d{8}$/; if (!reg.test(this.phone)) { uni.showToast({ icon: 'none', title: '请输入正确的11位手机号' }) }
let reg = /^((13[0-9])|(14[0-9])|(15[0-9])|(17[0-9])|(18[0-9]))\d{8}$/; if (!reg.test(this.phone)) { uni.showToast({ icon: 'none', title: '请输入正确的11位手机号' }) }