data: {
localImage: app.globalData.localImage,
com_mobile: null,//电话号码
com_password: null,//密码
},
/**
* 提交表单 注册
*/
submit: function (e) {
console.log(e)
let value = e.detail.value;
/**
* 判断每个input是否为空
*/
if (value.Phone_number == ‘‘) {
wx.showToast({
title: ‘手机号码不能为空‘,
icon: ‘none‘,
})
return false;
} else if (value.Verification_Code == ‘‘) {
wx.showToast({
title: ‘验证码不能为空‘,
icon: ‘none‘,
})
return false;
} else if (value.Verification_Code !=code) {
wx.showToast({
title: ‘验证码不正确‘,
icon: ‘none‘,
})
return false;
} else if (value.Password == ‘‘) {
wx.showToast({
title: ‘密码不能为空‘,
icon: ‘none‘,
})
return false;
} else if (value.Password2 == ‘‘) {
wx.showToast({
title: ‘重复密码不能为空‘,
icon: ‘none‘,
})
return false;
} else if (value.password2 != value.password1) {
wx.showToast({
title: ‘密码和重复密码不相同‘,
icon: ‘none‘,
})
return false;
}
let data = {
com_mobile: value.Phone_number,
com_password: utilMd5.hexMD5(value.Password),
}
console.log(JSON.stringify(data))
wx.navigateTo({
url: ‘../Perfect_information/Perfect_information?data=‘ + JSON.stringify(data)
})
},
//新页面接收值
var last_page_data=null//全局
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
that = this;
last_page_data = JSON.parse(options.data)
console.log(last_page_data)
},
原文地址:https://www.cnblogs.com/xiaoruaning/p/9702970.html