mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 06:12:44 +08:00
feat-登入/登出
This commit is contained in:
parent
c377bb9959
commit
e6881a1388
@ -16,4 +16,8 @@
|
||||
console.log('App Hide');
|
||||
});
|
||||
</script>
|
||||
<style lang="scss"></style>
|
||||
<style lang="scss">
|
||||
page {
|
||||
background-color: #f2f2f2;
|
||||
}
|
||||
</style>
|
||||
|
@ -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>
|
||||
|
@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<view>log</view>
|
||||
<view style="line-height: 88rpx; text-align: center">登录后访问log</view>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
|
@ -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 |
BIN
src/static/images/avatar.png
Normal file
BIN
src/static/images/avatar.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
Loading…
x
Reference in New Issue
Block a user