feat-登入/登出

This commit is contained in:
Huang 2022-06-20 17:08:28 +08:00
parent c377bb9959
commit e6881a1388
6 changed files with 71 additions and 6 deletions

View File

@ -16,4 +16,8 @@
console.log('App Hide');
});
</script>
<style lang="scss"></style>
<style lang="scss">
page {
background-color: #f2f2f2;
}
</style>

View File

@ -1,7 +1,69 @@
<script lang="ts" setup></script>
<script lang="ts" setup>
import BasicButton from '@/components/BasicButton/index.vue';
import { router } from '@/utils/router';
import { useAuthStore } from '@/state/modules/auth';
import { ref } from 'vue';
import { onShow } from '@dcloudio/uni-app';
const authStore = useAuthStore();
const isLogin = ref(false);
onShow(() => {
isLogin.value = authStore.isLogin;
});
const handleJump = (url: string) => {
router.push(url);
};
//
const handleLoginOut = () => {
authStore.loginOut().then((res) => {
isLogin.value = false;
});
};
</script>
<template>
<view> 页面模板 </view>
<view class="container">
<view class="head-wrap">
<view class="avatar">
<image class="img" src="/static/images/avatar.png"></image>
</view>
<view class="desc">{{ isLogin ? '测试' : '未登入' }}</view>
</view>
<view class="cell"><BasicButton @click="handleJump('/pages/log/index')">log</BasicButton></view>
<view class="cell" v-if="isLogin"><BasicButton @click="handleLoginOut">登出</BasicButton></view>
<view class="cell" v-else
><BasicButton @click="handleJump('/pages/login/index')">登入</BasicButton></view
>
</view>
</template>
<style lang="scss" scoped></style>
<style lang="scss" scoped>
.container {
padding: 96rpx 24rpx;
.head-wrap {
display: flex;
flex-direction: column;
align-items: center;
.avatar {
height: 120rpx;
width: 120rpx;
border: 2rpx solid #d1d5db;
border-radius: 120rpx;
overflow: hidden;
padding: 6rpx;
.img {
height: 100%;
width: 100%;
}
}
.desc {
font-size: 28rpx;
line-height: 120rpx;
}
}
.cell {
margin-top: 60rpx;
text-align: center;
}
}
</style>

View File

@ -1,5 +1,5 @@
<template>
<view>log</view>
<view style="line-height: 88rpx; text-align: center">登录后访问log</view>
</template>
<script lang="ts" setup>

View File

@ -15,7 +15,6 @@
});
const authStore = useAuthStore();
const submit = (e: any) => {
console.log(e);
authStore.login(e.detail.value).then((res) => {
Toast('登录成功', { duration: 1500 });
setTimeout(() => {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB