123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <template>
- <view class="login-container">
- <!-- 提示登录的图标 -->
- <uni-icons type="contact-filled" size="100" color="#AFAFAF"></uni-icons>
- <!-- 登录按钮 -->
- <button type="primary" class="btn-login" @click="getToken">一键登录</button>
- <!-- 登录提示 -->
- <view class="tips-text">登录后尽享更多权益</view>
- </view>
- </template>
- <script>
- // 按需导入 mapMutations 辅助函数
- import { mapMutations } from 'vuex'
-
- export default {
- name:"my-login",
- data() {
- return {
-
- };
- },
- methods: {
- // 调用 mapMutations 辅助方法,把 m_user 模块中的 updateUserInfo 映射到当前组件中使用
- ...mapMutations('m_user', ['updateUserInfo', 'updateToken']),
- // 调用登录接口,换取永久的 token
- async getToken() {
- // 调用微信登录接口
- const [err, res] = await uni.login().catch(err => err)
- // 判断是否 wx.login() 调用失败
- if (err || res.errMsg !== 'login:ok') return uni.$showError('登录失败!')
- // 准备参数对象
- const query = {
- code: res.code,
- }
-
- // 换取 token
- const { data: loginResult } = await uni.$http.get('/ucenter/mini-program-openid-uid/wxlogin', query)
- if (loginResult.code === 20000) {
- uni.$showMsg('登录成功!')
- }
-
- // console.log(loginResult)
-
- // 更新vuex中的token
- this.updateToken(loginResult.data.token)
-
- // // 将用户的基本信息存储到 vuex 中
- const userInfo = {
- alias: loginResult.data.alias,
- avatar: loginResult.data.avatar,
- city: loginResult.data.city
- }
- this.updateUserInfo(userInfo)
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .login-container {
-
- // 登录盒子的样式
- height: 750rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- background-color: #f8f8f8;
- position: relative;
- overflow: hidden;
-
- // 绘制登录盒子底部的半椭圆造型
- &::after {
- content: ' ';
- display: block;
- position: absolute;
- width: 100%;
- height: 40px;
- left: 0;
- bottom: 0;
- background-color: white;
- border-radius: 100%;
- transform: translateY(50%);
- }
-
- // 登录按钮的样式
- .btn-login {
- width: 90%;
- border-radius: 100px;
- margin: 15px 0;
- background-color: #c00000;
- }
-
- // 按钮下方提示消息的样式
- .tips-text {
- font-size: 12px;
- color: gray;
- }
- }
- </style>
|