Otsuka-APP/pages/login.vue

198 lines
5.2 KiB
Vue
Raw Normal View History

2025-08-19 17:07:46 +08:00
<template>
<view class="normal-login-container">
<view class="logo-content align-center justify-center flex">
<image :src="globalConfig.appInfo.logo" mode="widthFix" style="width: 100rpx;height: 100rpx;">
</image>
<text class="title">大冢APS Ultra管理平台</text>
</view>
<view class="login-form-content">
<view class="input-item flex align-center">
<view class="iconfont icon-user icon"></view>
<input v-model="loginForm.username" class="input" maxlength="30" placeholder="请输入账号" type="text"/>
</view>
<view class="input-item flex align-center">
<view class="iconfont icon-password icon"></view>
<input v-model="loginForm.password" class="input" maxlength="20" placeholder="请输入密码"
type="password"/>
</view>
<view v-if="captchaEnabled" class="input-item flex align-center" style="width: 60%;margin: 0px;">
<view class="iconfont icon-code icon"></view>
<input v-model="loginForm.code" class="input" maxlength="4" placeholder="请输入验证码" type="number"/>
<view class="login-code">
<image :src="codeUrl" class="login-code-img" @click="getCode"></image>
</view>
</view>
<view class="action-btn">
<button class="login-btn cu-btn block bg-blue lg round" @click="handleLogin">登录</button>
</view>
<view v-if="register" class="reg text-center">
<text class="text-grey1">没有账号</text>
<text class="text-blue" @click="handleUserRegister">立即注册</text>
</view>
2025-08-19 17:07:46 +08:00
</view>
2025-08-19 17:07:46 +08:00
</view>
</template>
<script setup>
import {getCurrentInstance, ref} from "vue"
import {onLoad} from "@dcloudio/uni-app"
import {getToken} from '@/utils/auth'
import {getCodeImg} from '@/api/login'
import {useConfigStore, useUserStore} from '@/store'
const {proxy} = getCurrentInstance()
const globalConfig = useConfigStore().config
const codeUrl = ref("")
// 验证码开关
const captchaEnabled = ref(true)
// 用户注册开关
const register = ref(false)
const loginForm = ref({
2025-08-19 17:07:46 +08:00
username: "admin",
password: "admin123",
code: "",
uuid: ""
})
2025-08-19 17:07:46 +08:00
// 用户注册
function handleUserRegister() {
2025-08-19 17:07:46 +08:00
proxy.$tab.redirectTo(`/pages/register`)
}
2025-08-19 17:07:46 +08:00
// 获取图形验证码
function getCode() {
2025-08-19 17:07:46 +08:00
getCodeImg().then(res => {
captchaEnabled.value = res.captchaEnabled === undefined ? true : res.captchaEnabled
2025-08-19 17:07:46 +08:00
if (captchaEnabled.value) {
codeUrl.value = 'data:image/gif;base64,' + res.img
loginForm.value.uuid = res.uuid
2025-08-19 17:07:46 +08:00
}
})
}
2025-08-19 17:07:46 +08:00
// 登录方法
async function handleLogin() {
2025-08-19 17:07:46 +08:00
if (loginForm.value.username === "") {
proxy.$modal.msgError("请输入账号")
2025-08-19 17:07:46 +08:00
} else if (loginForm.value.password === "") {
proxy.$modal.msgError("请输入密码")
2025-08-19 17:07:46 +08:00
} else if (loginForm.value.code === "" && captchaEnabled.value) {
proxy.$modal.msgError("请输入验证码")
2025-08-19 17:07:46 +08:00
} else {
proxy.$modal.loading("登录中,请耐心等待...")
pwdLogin()
2025-08-19 17:07:46 +08:00
}
}
2025-08-19 17:07:46 +08:00
// 密码登录
async function pwdLogin() {
2025-08-19 17:07:46 +08:00
useUserStore().login(loginForm.value).then(() => {
proxy.$modal.closeLoading()
loginSuccess()
2025-08-19 17:07:46 +08:00
}).catch(() => {
if (captchaEnabled.value) {
getCode()
}
2025-08-19 17:07:46 +08:00
})
}
2025-08-19 17:07:46 +08:00
// 登录成功后,处理函数
function loginSuccess(result) {
2025-08-19 17:07:46 +08:00
// 设置用户信息
useUserStore().getInfo().then(res => {
proxy.$tab.reLaunch('/pages/index')
2025-08-19 17:07:46 +08:00
})
}
2025-08-19 17:07:46 +08:00
onLoad(() => {
2025-08-19 17:07:46 +08:00
//#ifdef H5
if (getToken()) {
proxy.$tab.reLaunch('/pages/index')
2025-08-19 17:07:46 +08:00
}
//#endif
})
2025-08-19 17:07:46 +08:00
getCode()
2025-08-19 17:07:46 +08:00
</script>
<style lang="scss" scoped>
page {
2025-08-19 17:07:46 +08:00
background-color: #ffffff;
}
2025-08-19 17:07:46 +08:00
.normal-login-container {
2025-08-19 17:07:46 +08:00
width: 100%;
.logo-content {
width: 100%;
font-size: 21px;
text-align: center;
padding-top: 15%;
image {
border-radius: 4px;
}
.title {
margin-left: 10px;
}
2025-08-19 17:07:46 +08:00
}
.login-form-content {
text-align: center;
2025-08-19 17:07:46 +08:00
margin: 20px auto;
margin-top: 15%;
width: 80%;
.input-item {
margin: 20px auto;
background-color: #f5f6f7;
height: 45px;
border-radius: 20px;
.icon {
font-size: 38rpx;
margin-left: 10px;
color: #999;
}
.input {
width: 100%;
font-size: 14px;
line-height: 20px;
text-align: left;
padding-left: 15px;
}
}
.login-btn {
margin-top: 40px;
height: 45px;
}
.reg {
margin-top: 15px;
2025-08-19 17:07:46 +08:00
}
.xieyi {
color: #333;
margin-top: 20px;
2025-08-19 17:07:46 +08:00
}
.login-code {
height: 38px;
float: right;
.login-code-img {
height: 38px;
position: absolute;
margin-left: 10px;
width: 200rpx;
}
2025-08-19 17:07:46 +08:00
}
}
}
2025-08-19 17:07:46 +08:00
</style>