yukangzhe 4 years ago
parent
commit
da5fd90c4c
5 changed files with 131 additions and 7 deletions
  1. 3 0
      pages/index/index.json
  2. 74 1
      pages/login/login.js
  3. 8 2
      pages/login/login.wxml
  4. 45 1
      pages/login/login.wxss
  5. 1 3
      project.config.json

+ 3 - 0
pages/index/index.json

@@ -0,0 +1,3 @@
+{
+  "usingComponents": {}
+}

+ 74 - 1
pages/login/login.js

@@ -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 () {
-
+    
   },
 
+ 
+
   /**
    * 页面相关事件处理函数--监听用户下拉动作
    */

+ 8 - 2
pages/login/login.wxml

@@ -1,2 +1,8 @@
-<!--pages/login/login.wxml-->
-<text>pages/login/login.wxml</text>
+<!--pages/Components/campusBinding/campusBinding.wxml-->
+<view class="main">
+	<image lazy-load class="logo" mode="aspectFill" src="/images/logo.png"></image>
+	<text class="name">艾克斯朗学生端</text>
+	<button class="button" open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber" hidden="{{btnShow}}">
+		登陆
+	</button>
+</view>

+ 45 - 1
pages/login/login.wxss

@@ -1 +1,45 @@
-/* pages/login/login.wxss */
+/* pages/Components/campusBinding/campusBinding.wxss */
+.main {
+  position: fixed;
+  top: 0;
+  left: 0;
+  width: 100%;
+  height: 100%;
+  background: #fff;
+  display: flex;
+  flex-direction: column;
+  align-items: center;
+  z-index: 2;
+}
+.background {
+  position: fixed;
+  top: 0;
+  left: 0;
+  width: 750rpx;
+  height: 1125rpx;
+}
+.logo{
+  margin-top: 208rpx;
+  margin-bottom: 20rpx;
+  width: 290rpx;
+  height: 290rpx;
+  z-index: 3;
+}
+.button {
+  /* margin: 0; */
+  padding: 0;
+  position: fixed;
+  left: 50%;
+  transform: translateX(-50%);
+  bottom: 120rpx;
+  width: 400rpx;
+  height: 82rpx;
+  line-height: 82rpx;
+  text-align: center;
+  background: rgba(255, 255, 255, 1);
+  border: 2rpx solid #cc6031;
+  box-shadow: 0rpx 4rpx 12rpx #cc6031;
+  border-radius: 42rpx;
+  font-size: 32rpx;
+  color: #cc6031;
+}

+ 1 - 3
project.config.json

@@ -58,9 +58,7 @@
       "list": []
     },
     "miniprogram": {
-      "list": [
-        
-      ]
+      "list": []
     }
   }
 }