mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-06 03:58:03 +08:00
112 lines
3.3 KiB
Vue
112 lines
3.3 KiB
Vue
<script setup lang="ts">
|
|
import { reactive, ref, unref } from 'vue';
|
|
import { onLoad } from '@dcloudio/uni-app';
|
|
import { useAuthStore } from '@/state/modules/auth';
|
|
import { Toast } from '@/utils/uniapi/prompt';
|
|
import { useRouter } from 'uni-mini-router';
|
|
import { useRequest } from 'alova';
|
|
import { login } from '@/services/api/auth';
|
|
import { omit } from 'lodash-es';
|
|
|
|
const pageQuery = ref<Record<string, any> | undefined>(undefined);
|
|
onLoad((query) => {
|
|
pageQuery.value = query;
|
|
});
|
|
|
|
const router = useRouter();
|
|
|
|
const form = reactive({
|
|
email: 'uni-app@test.com',
|
|
password: 'Vue3_Ts_Vite',
|
|
});
|
|
const authStore = useAuthStore();
|
|
const { send: sendLogin } = useRequest(login, { immediate: false });
|
|
const submit = (e: any) => {
|
|
sendLogin(e.detail.value).then((res) => {
|
|
Toast('登录成功', { duration: 1500 });
|
|
authStore.setToken(res.token);
|
|
setTimeout(() => {
|
|
if (unref(pageQuery)?.redirect) {
|
|
// 如果有存在redirect(重定向)参数,登录成功后直接跳转
|
|
const params = omit(unref(pageQuery), ['redirect', 'tabBar']);
|
|
if (unref(pageQuery)?.tabBar) {
|
|
// 这里replace方法无法跳转tabbar页面故改为replaceAll
|
|
router.replaceAll({ name: unref(pageQuery).redirect, params });
|
|
} else {
|
|
router.replace({ name: unref(pageQuery).redirect, params });
|
|
}
|
|
} else {
|
|
// 不存在则返回上一页
|
|
router.back();
|
|
}
|
|
}, 1500);
|
|
});
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<view class="container">
|
|
<view class="title">登录</view>
|
|
<view class="form-wrap">
|
|
<form class="form" @submit="submit">
|
|
<label class="form-item">
|
|
<view class="form-label">邮箱:</view>
|
|
<view class="form-element"><input name="email" :value="form.email" /></view>
|
|
</label>
|
|
<label class="form-item">
|
|
<view class="form-label">密码:</view>
|
|
<view class="form-element"><input type="password" name="password" :value="form.password" /></view>
|
|
</label>
|
|
<button form-type="submit" class="submit-btn" hover-class="none">登录</button>
|
|
</form>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.container {
|
|
margin: 0 auto;
|
|
width: 80%;
|
|
|
|
.title {
|
|
padding: 320rpx 0 32rpx 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.form-wrap {
|
|
padding: 20rpx 24rpx;
|
|
box-shadow: 16rpx 16rpx 30rpx #e5e7eb;
|
|
|
|
.form {
|
|
.form-item {
|
|
display: flex;
|
|
height: 88rpx;
|
|
border-bottom: 2rpx solid #dbeafe;
|
|
align-items: center;
|
|
|
|
.form-label {
|
|
min-width: 96rpx;
|
|
}
|
|
|
|
.form-element {
|
|
flex-grow: 1;
|
|
}
|
|
}
|
|
|
|
.submit-btn {
|
|
margin-top: 44rpx;
|
|
border: 4rpx solid #bfdbfe;
|
|
background-color: #60a5fa;
|
|
border-radius: 8rpx;
|
|
font-size: 28rpx;
|
|
color: #ffffff;
|
|
|
|
:hover {
|
|
background-color: #3b82f6;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|