首先:新建目录 check,并在该目录下创建 index.js 文件
const check = {
telphone(data) {
if(!(/^1[3456789]\d{9}$/.test(data))){
uni.showToast({
title: "手机号码不正确",
icon:'none'
});
return false;
}
return true
},
password(data) {
if(data.length<6) {
uni.showToast({
title: "密码长度不能小于6位",
icon:'none'
});
return false;
}
return true
}
}
export default check;
在main.js 中引入文件 并创建实例
import check from './check/index.js'
Vue.prototype.check=check
在组件中使用
if(this.check.telphone(this.telphone) == false){return}
if(this.check.password(this.password) == false){return}