|
@@ -337,6 +337,7 @@ Page({
|
|
|
wx.navigateBack({
|
|
|
delta: 1,
|
|
|
})
|
|
|
+
|
|
|
} else {
|
|
|
wx.showToast({
|
|
|
title: '支付失败,取消订单',
|
|
@@ -355,6 +356,17 @@ Page({
|
|
|
wx.hideLoading()
|
|
|
}
|
|
|
},
|
|
|
+
|
|
|
+ formSubmit() {
|
|
|
+ wx.request({
|
|
|
+ url: 'https://server.fmode.cn/api/apig/verifyCode',
|
|
|
+ method: "post",
|
|
|
+ data: { mobile: this.data.room.shop.mobile, company: company, },
|
|
|
+ success(res) {
|
|
|
+ console.log(res);
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
|
|
|
* 生命周期函数--监听页面初次渲染完成
|
|
|
*/
|