|
@@ -0,0 +1,92 @@
|
|
|
+<template>
|
|
|
+ <view
|
|
|
+ class="content"
|
|
|
+ style="background-image: url(/static/gr_bg.png); background-size: 100% 100%"
|
|
|
+ >
|
|
|
+ <image class="logo" src="/static/logo.png"></image>
|
|
|
+ <view>
|
|
|
+ <button
|
|
|
+ type="default"
|
|
|
+ class="btn btn_phone"
|
|
|
+ @click="phoneLogin"
|
|
|
+ style="color: #fff; background-color: #5a7bef"
|
|
|
+ >
|
|
|
+ 手机号登录
|
|
|
+ </button>
|
|
|
+ <button
|
|
|
+ open-type="getPhoneNumber"
|
|
|
+ @getphonenumber="getPhoneNumber"
|
|
|
+ class="btn btn_wechat"
|
|
|
+ type="primary"
|
|
|
+ >
|
|
|
+ 微信登录
|
|
|
+ </button>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import { login } from "../../services/https/user";
|
|
|
+
|
|
|
+export default {
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ jsCode: "",
|
|
|
+ redirect: "",
|
|
|
+ };
|
|
|
+ },
|
|
|
+ onLoad(options) {
|
|
|
+ this.redirect = options.redirect;
|
|
|
+ wx.login({
|
|
|
+ success: (res) => {
|
|
|
+ this.jsCode = res.code;
|
|
|
+ },
|
|
|
+ });
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ phoneLogin() {
|
|
|
+ uni.navigateTo({
|
|
|
+ url: `/pages/auth/phoneLogin?redirect=${this.redirect}`,
|
|
|
+ });
|
|
|
+ },
|
|
|
+ async getPhoneNumber(e) {
|
|
|
+ const res = await login({ jsCode: this.jsCode, code: e.detail.code });
|
|
|
+ if (res.errorNo !== 200) return;
|
|
|
+ const token = res.result.token;
|
|
|
+ uni.reLaunch({
|
|
|
+ url: `/pages/index/index?token=${token}&redirect=${this.redirect}`,
|
|
|
+ });
|
|
|
+ },
|
|
|
+ },
|
|
|
+};
|
|
|
+</script>
|
|
|
+
|
|
|
+<style>
|
|
|
+.content {
|
|
|
+ height: 100vh;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-position: center;
|
|
|
+ background-size: cover;
|
|
|
+}
|
|
|
+.logo {
|
|
|
+ width: 240rpx;
|
|
|
+ height: 266rpx;
|
|
|
+}
|
|
|
+.btn {
|
|
|
+ width: 600rpx;
|
|
|
+ border-radius: 48rpx;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+.btn_phone {
|
|
|
+ margin-top: 100rpx;
|
|
|
+ background-color: #5a7bef;
|
|
|
+}
|
|
|
+.btn_wechat {
|
|
|
+ margin-top: 60rpx;
|
|
|
+ margin-bottom: 100rpx;
|
|
|
+}
|
|
|
+</style>
|