mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 19:41:44 +08:00
perf: 优化登录体验
This commit is contained in:
parent
8232791a58
commit
d64ee1cb80
@ -3,11 +3,11 @@
|
|||||||
* 头部导航栏
|
* 头部导航栏
|
||||||
* @description 所有尺寸都用px2rpx做适配
|
* @description 所有尺寸都用px2rpx做适配
|
||||||
*/
|
*/
|
||||||
import { useSystem } from '@/hooks/useSystem';
|
import { useSystem } from '@/hooks/app/useSystem';
|
||||||
import { px2rpx } from '@/utils/uniapi';
|
import { px2rpx } from '@/utils/uniapi';
|
||||||
import { computed, ref } from 'vue';
|
import { computed, ref } from 'vue';
|
||||||
import { useRoute, useRouter } from 'uni-mini-router';
|
import { useRoute, useRouter } from 'uni-mini-router';
|
||||||
import { useGlobalStyle } from '@/hooks/useGlobalStyle';
|
import { useGlobalStyle } from '@/hooks/app/useGlobalStyle';
|
||||||
import Iconify from '@/components/Iconify/index.vue';
|
import Iconify from '@/components/Iconify/index.vue';
|
||||||
import { HOME_PAGE } from '@/enums/routerEnum';
|
import { HOME_PAGE } from '@/enums/routerEnum';
|
||||||
|
|
||||||
|
@ -33,7 +33,7 @@ const handleLoginOut = () => {
|
|||||||
</view>
|
</view>
|
||||||
<view class="desc">{{ isLogin ? '测试' : '未登入' }}</view>
|
<view class="desc">{{ isLogin ? '测试' : '未登入' }}</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="cell"><BasicButton @click="handleJump('/pages/log/index?id=4345&title=log')">log</BasicButton></view>
|
<view class="cell"><BasicButton @click="handleJump('/pages/log/index?id=4345&title=log&word=困的顾客老师')">log</BasicButton></view>
|
||||||
<view class="cell" v-if="isLogin"><BasicButton @click="handleLoginOut">登出</BasicButton></view>
|
<view class="cell" v-if="isLogin"><BasicButton @click="handleLoginOut">登出</BasicButton></view>
|
||||||
<view class="cell" v-else>
|
<view class="cell" v-else>
|
||||||
<BasicButton @click="handleJump('/pages/login/index')"> 登入 </BasicButton>
|
<BasicButton @click="handleJump('/pages/login/index')"> 登入 </BasicButton>
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
<template>
|
|
||||||
<view style="line-height: 88rpx; text-align: center">登录后访问log</view>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { onLoad } from '@dcloudio/uni-app';
|
import { onLoad } from '@dcloudio/uni-app';
|
||||||
|
|
||||||
onLoad((query) => {
|
onLoad((query) => {
|
||||||
console.log('log onLoad', query);
|
console.log('log onLoad query', query);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<view style="line-height: 88rpx; text-align: center">登录后访问log</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
<style lang="scss" scoped></style>
|
<style lang="scss" scoped></style>
|
||||||
|
@ -1,15 +1,16 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { reactive, ref } from 'vue';
|
import { reactive, ref, unref } from 'vue';
|
||||||
import { onLoad } from '@dcloudio/uni-app';
|
import { onLoad } from '@dcloudio/uni-app';
|
||||||
import { useAuthStore } from '@/state/modules/auth';
|
import { useAuthStore } from '@/state/modules/auth';
|
||||||
import { Toast } from '@/utils/uniapi/prompt';
|
import { Toast } from '@/utils/uniapi/prompt';
|
||||||
import { useRouter } from 'uni-mini-router';
|
import { useRouter } from 'uni-mini-router';
|
||||||
import { useRequest } from 'alova';
|
import { useRequest } from 'alova';
|
||||||
import { login } from '@/services/api/auth';
|
import { login } from '@/services/api/auth';
|
||||||
|
import { omit } from 'lodash-es';
|
||||||
|
|
||||||
const redirect = ref<string | undefined>(undefined);
|
const pageQuery = ref<Record<string, any> | undefined>(undefined);
|
||||||
onLoad((query) => {
|
onLoad((query) => {
|
||||||
redirect.value = query.redirect ? decodeURIComponent(query.redirect) : undefined;
|
pageQuery.value = query;
|
||||||
});
|
});
|
||||||
|
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
@ -25,11 +26,13 @@ const submit = (e: any) => {
|
|||||||
Toast('登录成功', { duration: 1500 });
|
Toast('登录成功', { duration: 1500 });
|
||||||
authStore.setToken(res.token);
|
authStore.setToken(res.token);
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
// if (redirect.value) {
|
if (unref(pageQuery)?.redirect) {
|
||||||
// router.push(redirect.value!, { replace: true });
|
// 如果有存在redirect(重定向)参数,登录成功后直接跳转
|
||||||
// return;
|
router.replace({ name: unref(pageQuery).redirect, params: omit(unref(pageQuery), ['redirect']) });
|
||||||
// }
|
} else {
|
||||||
router.replaceAll({ name: 'Home' });
|
// 不存在则回到首页
|
||||||
|
router.replaceAll({ name: 'Home' });
|
||||||
|
}
|
||||||
}, 1500);
|
}, 1500);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
@ -15,7 +15,8 @@ function createBeforeEachGuard(router: Router) {
|
|||||||
next();
|
next();
|
||||||
} else if (!authStore.isLogin && to && to.name !== 'Login') {
|
} else if (!authStore.isLogin && to && to.name !== 'Login') {
|
||||||
// 如果没有登录且目标路由不是登录页面则跳转到登录页面
|
// 如果没有登录且目标路由不是登录页面则跳转到登录页面
|
||||||
next({ name: 'Login' });
|
// 将目标路由和参数传入登录页面,登录成功后直接跳转到目标路由,优化体验
|
||||||
|
next({ name: 'Login',params:{redirect: to.name, ...to.query} });
|
||||||
} else if (authStore.isLogin && to && to.name === 'Login') {
|
} else if (authStore.isLogin && to && to.name === 'Login') {
|
||||||
// 如果已经登录且目标页面是登录页面则跳转至首页
|
// 如果已经登录且目标页面是登录页面则跳转至首页
|
||||||
next({ name: 'Home' });
|
next({ name: 'Home' });
|
||||||
|
@ -1,9 +1,8 @@
|
|||||||
import { routerInterceptor, routerRemoveInterceptor } from '@/utils/router/interceptor';
|
|
||||||
|
|
||||||
export function setupInterceptors() {
|
export function setupInterceptors() {
|
||||||
routerInterceptor();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function removeInterceptor() {
|
export function removeInterceptor() {
|
||||||
routerRemoveInterceptor();
|
|
||||||
}
|
}
|
||||||
|
@ -44,7 +44,7 @@ export const rpx2px = (upx: number) => {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* px 换算为 rpx
|
* px 换算为 rpx
|
||||||
* @param upx
|
* @param px
|
||||||
*/
|
*/
|
||||||
export const px2rpx = (px: number) => {
|
export const px2rpx = (px: number) => {
|
||||||
return px / (uni.upx2px(100) / 100);
|
return px / (uni.upx2px(100) / 100);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user