Dining_Hall/pages/login.vue

296 lines
8.8 KiB
Vue
Raw Normal View History

2024-12-17 09:13:52 +08:00
<template>
<page-meta :page-font-size="fontValue+'px'" :root-font-size="fontValue+'px'"></page-meta>
2024-12-17 09:13:52 +08:00
<view class="normal-login-container">
2025-03-24 15:46:35 +08:00
<view class="logo">
<image src="/static/images/login/logo.png" style="width: 200rpx;height: 200rpx;" mode="aspectFit"></image>
</view>
2024-12-17 09:13:52 +08:00
<view class="login-form-content">
2025-01-02 14:28:03 +08:00
<view class="input-item">
<view style="color: #777;margin-bottom: 4px;font-size: 28rpx;">账号</view>
2025-01-02 14:28:03 +08:00
<!-- <u-input
v-model="loginForm.username"
type="number"
2025-03-24 15:46:35 +08:00
placeholder="请输入账号"
2025-01-02 14:28:03 +08:00
border="none"
maxlength="11"
></u-input> -->
2025-03-24 15:46:35 +08:00
<view style="padding: 10rpx;background: #F7F9FC;border-radius: 32rpx;width: 100%;">
<uni-easyinput v-model="loginForm.username" placeholder="请输入账号" :inputBorder="false" maxlength="11" :styles="{backGround:'#F7F9FC'}"/>
</view>
<!-- <u-input v-model="loginForm.username" placeholder="请输入账号" border="none" maxlength="11"></u-input> -->
2024-12-17 09:13:52 +08:00
</view>
<view class="input-item flex align-center">
<view style="color: #777;margin-bottom: 4px;font-size: 28rpx;">密码</view>
2025-03-24 15:46:35 +08:00
<view style="padding: 10rpx;background: #F7F9FC;border-radius: 32rpx;width: 100%;">
<uni-easyinput type="password" v-model="loginForm.password" placeholder="请输入密码" :inputBorder="false" :styles="{backGround:'#F7F9FC'}"/>
</view>
2025-02-19 09:34:34 +08:00
<!-- <u-input
2025-01-02 14:28:03 +08:00
v-model="loginForm.password"
type="password"
placeholder="请输入密码"
border="none"
maxlength="99"
2025-02-19 09:34:34 +08:00
></u-input> -->
2024-12-17 09:13:52 +08:00
</view>
2024-12-18 08:56:39 +08:00
<!-- <view class="input-item flex align-center" style="width: 60%;margin: 0px;" v-if="captchaEnabled">
2024-12-17 09:13:52 +08:00
<view class="iconfont icon-code icon"></view>
<input v-model="loginForm.code" type="number" class="input" placeholder="请输入验证码" maxlength="4" />
2024-12-18 08:56:39 +08:00
<view class="login-code">
<image :src="codeUrl" @click="getCode" class="login-code-img"></image>
2024-12-17 09:13:52 +08:00
</view>
2024-12-18 08:56:39 +08:00
</view> -->
2025-01-02 14:28:03 +08:00
<!-- <u-radio-group v-model="remember" style="margin-bottom: 20px" @change="rememberPassword">
<u-radio label="记住密码" :name="rememberName"></u-radio>
</u-radio-group> -->
<u-checkbox-group v-model="remember" shape="circle" @change="rememberPassword" style="margin-bottom: 20px;margin-left: 20rpx;font-size: 28rpx">
2025-01-02 14:28:03 +08:00
<u-checkbox label="记住密码" name="remember"></u-checkbox>
</u-checkbox-group>
2025-03-24 15:46:35 +08:00
<view class="action-btn" style="margin-top: 10vh;">
<u-button shape="circle" color="#FF6F25" @click="handleLogin" style="height: 72rpx;font-weight: bold;font-size: 28rpx;">登录</u-button>
2025-03-24 15:46:35 +08:00
<view class="forget" @click="amendPassword">忘记密码?去修改</view>
2024-12-17 09:13:52 +08:00
</view>
2025-01-02 14:28:03 +08:00
<!-- <view class="reg text-center" v-if="register">
2024-12-18 08:56:39 +08:00
<text class="text-grey1">没有账号</text>
<text @click="handleUserRegister" class="text-blue">立即注册</text>
2025-01-02 14:28:03 +08:00
</view> -->
<!-- <view class="xieyi text-center">
2024-12-18 08:56:39 +08:00
<text class="text-grey1">登录即代表同意</text>
<text @click="handleUserAgrement" class="text-blue">用户协议</text>
<text @click="handlePrivacy" class="text-blue">隐私协议</text>
2025-01-02 14:28:03 +08:00
</view> -->
2024-12-18 08:56:39 +08:00
</view>
2024-12-17 09:13:52 +08:00
</view>
</template>
<script>
2025-01-02 14:28:03 +08:00
import { getCodeImg } from '@/api/login'
2025-02-19 09:34:34 +08:00
import AES from '@/utils/aes'
2025-01-02 14:28:03 +08:00
export default {
data() {
return {
fontValue:uni.getStorageSync('fontSize') || 8,
2025-01-02 14:28:03 +08:00
codeUrl: '',
captchaEnabled: true,
// 用户注册开关
register: false,
globalConfig: getApp().globalData.config,
loginForm: {
2025-03-24 15:46:35 +08:00
username: uni.getStorageSync('remember') ? uni.getStorageSync('username') : '', // 账号
password: uni.getStorageSync('remember') ? uni.getStorageSync('password') : '', // 密码 1769fb2837e10e9d22c1c25add76355a', // bns - 1769fb2837e10e9d22c1c25add76355a
loginType: '2',
2025-02-19 09:34:34 +08:00
sourceType: 7,
2025-01-02 14:28:03 +08:00
code: '',
uuid: ''
},
remember: uni.getStorageSync('remember') ? uni.getStorageSync('remember').remember : []
}
},
2025-03-24 15:46:35 +08:00
onShow() {
setTimeout(()=>{
this.remember = uni.getStorageSync('remember') || []
this.loginForm.username = uni.getStorageSync('username') || ''
if(this.remember.length>0){
this.loginForm.password = uni.getStorageSync('password')
}
},300)
if(uni.getStorageSync('token')){
this.loginForm.encryptPassword = AES.encrypt(uni.getStorageSync('password'))
this.$store.dispatch('Login', this.loginForm).then(() => {
this.$tab.reLaunch('/pages/system')
}).catch(() => { })
2025-03-24 15:46:35 +08:00
}
2025-01-02 14:28:03 +08:00
},
methods: {
// 用户注册
handleUserRegister() {
this.$tab.redirectTo(`/pages/register`)
2024-12-17 09:13:52 +08:00
},
2025-01-02 14:28:03 +08:00
// 隐私协议
handlePrivacy() {
let site = this.globalConfig.appInfo.agreements[0]
this.$tab.navigateTo(`/pages/common/webview/index?title=${site.title}&url=${site.url}`)
2024-12-17 09:13:52 +08:00
},
2025-01-02 14:28:03 +08:00
// 用户协议
handleUserAgrement() {
let site = this.globalConfig.appInfo.agreements[1]
this.$tab.navigateTo(`/pages/common/webview/index?title=${site.title}&url=${site.url}`)
},
// 获取图形验证码
getCode() {
getCodeImg().then(res => {
this.captchaEnabled = res.captchaEnabled === undefined ? true : res.captchaEnabled
if (this.captchaEnabled) {
this.codeUrl = 'data:image/gif;base64,' + res.img
this.loginForm.uuid = res.uuid
}
})
},
// 登录方法
async handleLogin() {
if (this.loginForm.username === '') {
this.$modal.msgError('请输入您的账号')
} else if (this.loginForm.password === '') {
this.$modal.msgError('请输入您的密码')
2024-12-18 08:56:39 +08:00
// } else if (this.loginForm.code === "" && this.captchaEnabled) {
// this.$modal.msgError("请输入验证码")
2025-01-02 14:28:03 +08:00
} else {
// this.$modal.loading('登录中,请耐心等待...')
2025-01-16 11:24:42 +08:00
// this.$tab.reLaunch('/pages/system')
2025-01-02 14:28:03 +08:00
this.pwdLogin()
}
},
// 密码登录
async pwdLogin() {
console.log(this.loginForm)
2025-02-19 09:34:34 +08:00
this.loginForm.encryptPassword = AES.encrypt(this.loginForm.password)
this.$store.dispatch('Login', this.loginForm).then(() => {
this.$modal.closeLoading() // 关闭加载框
2025-03-24 15:46:35 +08:00
if(this.remember.length>0){
uni.setStorageSync('username', this.loginForm.username)
uni.setStorageSync('password', this.loginForm.password)
2025-03-24 15:46:35 +08:00
}else{
uni.removeStorageSync('remember')
// uni.removeStorageSync('username')
uni.removeStorageSync('password')
}
this.loginSuccess()
2025-02-19 09:34:34 +08:00
}).catch(() => {
// if (this.captchaEnabled) {
// this.getCode()
// }
})
// this.$tab.reLaunch('/pages/system')
2025-01-02 14:28:03 +08:00
},
// 登录成功后,处理函数
loginSuccess(result) {
// 设置用户信息
2025-03-14 15:15:54 +08:00
uni.navigateTo({
url: '/pages/system'
})
// this.$tab.reLaunch('/pages/system')
2025-01-02 14:28:03 +08:00
},
// 记住密码
rememberPassword(e) {
console.log(e)
if (e.length > 0) {
2025-03-24 15:46:35 +08:00
uni.setStorageSync('remember', e)
uni.setStorageSync('username', this.loginForm.username)
uni.setStorageSync('password', this.loginForm.password)
2025-01-02 14:28:03 +08:00
} else {
uni.removeStorageSync('remember')
2025-03-24 15:46:35 +08:00
// uni.removeStorageSync('username')
uni.removeStorageSync('password')
2024-12-17 09:13:52 +08:00
}
2025-01-02 14:28:03 +08:00
},
// 忘记密码
amendPassword() {
uni.navigateTo({
url: '/pages/amendPassword'
})
2024-12-17 09:13:52 +08:00
}
}
2025-01-02 14:28:03 +08:00
}
2024-12-17 09:13:52 +08:00
</script>
2025-03-24 15:46:35 +08:00
<style lang="scss" scoped>
2025-01-02 14:28:03 +08:00
page {
2025-03-24 15:46:35 +08:00
// background-color: #ffffff;
min-height: 100vh;
background-image: url('../static/images/login/back.png');
background-size: 100% 100%;
2025-01-02 14:28:03 +08:00
}
.logo {
2025-03-24 15:46:35 +08:00
padding-top: 10vh;
width: 100%;
2025-01-02 14:28:03 +08:00
display: flex;
justify-content: center;
align-items: center;
}
.forget {
margin-top: 20px;
color: $u-primary;
}
2025-03-24 15:46:35 +08:00
2025-01-02 14:28:03 +08:00
.normal-login-container {
2025-03-24 15:46:35 +08:00
width: 100%;
height: auto;
2025-01-02 14:28:03 +08:00
2025-03-24 15:46:35 +08:00
.logo-content {
width: 100%;
font-size: 42rpx;
2025-03-24 15:46:35 +08:00
text-align: center;
padding-top: 15%;
2024-12-17 09:13:52 +08:00
2025-03-24 15:46:35 +08:00
image {
}
2025-01-02 14:28:03 +08:00
2025-03-24 15:46:35 +08:00
.title {
margin-left: 10px;
}
}
.login-form-content {
text-align: center;
background: #FFF;
margin: 0 auto;
width: 80%;
2024-12-17 09:13:52 +08:00
2025-03-24 15:46:35 +08:00
.input-item {
margin: 0 auto 20px;
padding: 8px 15px;
// background-color: #F7F9FC;
// background-color: #f5f6f7;
/* height: 45px; */
border-radius: 3px;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
2025-01-02 14:28:03 +08:00
2025-03-24 15:46:35 +08:00
.icon {
font-size: 38rpx;
margin-left: 10px;
color: #999;
}
2025-01-02 14:28:03 +08:00
2025-03-24 15:46:35 +08:00
.input {
width: 100%;
font-size: 28rpx;
2025-03-24 15:46:35 +08:00
line-height: 20px;
text-align: left;
padding-left: 15px;
}
}
2024-12-17 09:13:52 +08:00
2025-03-24 15:46:35 +08:00
.login-btn {
margin-top: 40px;
height: 45px;
}
2024-12-17 09:13:52 +08:00
2025-03-24 15:46:35 +08:00
.reg {
margin-top: 15px;
}
2024-12-17 09:13:52 +08:00
2025-03-24 15:46:35 +08:00
.xieyi {
color: #333;
margin-top: 20px;
}
2024-12-17 09:13:52 +08:00
2025-03-24 15:46:35 +08:00
.login-code {
height: 38px;
float: right;
2025-01-02 14:28:03 +08:00
2025-03-24 15:46:35 +08:00
.login-code-img {
height: 38px;
position: absolute;
margin-left: 10px;
width: 200rpx;
}
}
}
2025-01-02 14:28:03 +08:00
}
2024-12-17 09:13:52 +08:00
</style>