提交表單傳值
阿新 • • 發佈:2018-09-25
als ast NPU gif .sh info false ons page
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)
},
提交表單傳值