sureBtn:function(){
var that = this;
var phoneVal = this.data.phoneVal;
var regPhone = /1[23578]\d{9}/ig;
var myPhone = regPhone.test(phoneVal);
if (phoneVal.length == 0) {
console.log(“手机号不能为空!”)
} else if (!myPhone) {
console.log(“手机号不能为空!”)
} else{
do something
}
},