export function isPhone(value) { if (!value) { uni.showToast({ icon:'none', title: '请输入手机号' }); return false; } var pattern = /^1[345789]\d{9}$/ if (!pattern.test(value)) { uni.showToast({ icon:'none', title: '手机号码格式有误' }); return false; } return true; }