|
@@ -1,4 +1,6 @@
|
|
|
// pages/login/login.js
|
|
|
+const app = getApp()
|
|
|
+const util = require("../../utils/util")
|
|
|
Page({
|
|
|
|
|
|
/**
|
|
@@ -12,9 +14,78 @@ Page({
|
|
|
* 生命周期函数--监听页面加载
|
|
|
*/
|
|
|
onLoad: function (options) {
|
|
|
+ wx.showLoading({
|
|
|
+ title: '加载中',
|
|
|
+ mask: true
|
|
|
+ })
|
|
|
+ this.getOpenId()
|
|
|
+ },
|
|
|
+
|
|
|
+ // 登录
|
|
|
+ getOpenId: function () {
|
|
|
+ wx.login({
|
|
|
+ success: res => {
|
|
|
+ util.doPost(
|
|
|
+ 'getOpenId', {
|
|
|
+ appId: app.globalData.appId,
|
|
|
+ code: res.code
|
|
|
+ },
|
|
|
+ ).then(res => {
|
|
|
+ if (res.success == 1) {
|
|
|
+ wx.setStorageSync('openId', res.data.openId)
|
|
|
+ wx.hideLoading({
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ fail: res => {
|
|
|
+ wx.hideLoading({
|
|
|
+ success: (res) => {
|
|
|
+ wx.showToast({
|
|
|
+ title: '提示',
|
|
|
+ icon: 'none',
|
|
|
+ content: '连接失败,请重试'
|
|
|
+ })
|
|
|
+ },
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
|
|
|
+ //授权手机号
|
|
|
+ getPhoneNumber: function (e) {
|
|
|
+ const that = this;
|
|
|
+ if (e.detail.errMsg == "getPhoneNumber:ok") {
|
|
|
+ wx.showLoading({
|
|
|
+ title: '正在登陆',
|
|
|
+ mask: true
|
|
|
+ })
|
|
|
+ util.doPost(
|
|
|
+ 'getPhoneNumber', {
|
|
|
+ encryptedData: e.detail.encryptedData,
|
|
|
+ iv: e.detail.iv,
|
|
|
+ openId: wx.getStorageSync('openId'),
|
|
|
+ }
|
|
|
+ ).then(rs => {
|
|
|
+ if (rs.success > 0) {
|
|
|
+ wx.setStorageSync('phone', rs.data.phoneNumber)
|
|
|
+ wx.showToast({
|
|
|
+ title: '登录成功',
|
|
|
+ })
|
|
|
+ } else {
|
|
|
+ wx.showToast({
|
|
|
+ title: '手机号验证失败',
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+ that.setData({
|
|
|
+ model: false,
|
|
|
+ localtion: true
|
|
|
+ })
|
|
|
},
|
|
|
|
|
|
+
|
|
|
/**
|
|
|
* 生命周期函数--监听页面初次渲染完成
|
|
|
*/
|
|
@@ -40,9 +111,11 @@ Page({
|
|
|
* 生命周期函数--监听页面卸载
|
|
|
*/
|
|
|
onUnload: function () {
|
|
|
-
|
|
|
+
|
|
|
},
|
|
|
|
|
|
+
|
|
|
+
|
|
|
/**
|
|
|
* 页面相关事件处理函数--监听用户下拉动作
|
|
|
*/
|