开发工具版本2.30.4,windows,模拟器是iphone5。
enterPhoneNumber(){
console.log("调用了enterPhoneNumber")
let phone = this.data.phone;
if(phone.length == 11 ){
wx.setStorageSync('phone', phone)
this.setData({
show_phone: false,
})
}else{
wx.showToast({
title: '请输入正确的手机号码',
icon:"none"
})
}
},
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。