mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-26 00:53:54 +08:00
* update:增加前端设计图 * 前端代码优化 * update:底部信息纠正 * 增加:flyio * update:去除org.quartz * update:登陆功能 --------- Co-authored-by: hrz <1710360675@qq.com> Co-authored-by: CGD <3030332422@qq.com>
228 lines
5.3 KiB
Vue
228 lines
5.3 KiB
Vue
<template>
|
|
<div class="welcome">
|
|
<el-container style="height: 100%;">
|
|
<el-header>
|
|
<div
|
|
style="display: flex;align-items: center;margin-top: 15px;margin-left: 10px;gap: 10px;">
|
|
<img src="@/assets/xiaozhi-logo.png" alt="" style="width: 45px;height: 45px;"/>
|
|
<img src="@/assets/xiaozhi-ai.png" alt="" style="width: 70px;height: 13px;"/>
|
|
</div>
|
|
</el-header>
|
|
<el-main style="position: relative;">
|
|
<div class="login-box">
|
|
<div
|
|
style="display: flex;align-items: center;gap: 20px;margin-bottom: 39px;padding: 0 30px;">
|
|
<img src="@/assets/login/hi.png" alt="" style="width: 34px;height: 34px;"/>
|
|
<div class="login-text">登录</div>
|
|
<div class="login-welcome">
|
|
WELCOME TO LOGIN
|
|
</div>
|
|
</div>
|
|
<div style="padding: 0 30px;">
|
|
<div class="input-box">
|
|
<img src="@/assets/login/username.png" alt="" class="input-icon"/>
|
|
<el-input v-model="form.username" placeholder="请输入用户名"/>
|
|
</div>
|
|
<div class="input-box">
|
|
<img src="@/assets/login/password.png" alt="" class="input-icon"/>
|
|
<el-input v-model="form.password" placeholder="请输入密码"/>
|
|
</div>
|
|
<div class="input-box">
|
|
<img src="@/assets/login/shield.png" alt="" class="input-icon"/>
|
|
<el-input v-model="form.captcha" placeholder="请输入验证码"/>
|
|
</div>
|
|
<div
|
|
style="font-weight: 400;font-size: 14px;text-align: left;color: #5778ff;display: flex;justify-content: space-between;margin-top: 20px;">
|
|
<div style="cursor: pointer;">新用户注册</div>
|
|
</div>
|
|
</div>
|
|
<div class="login-btn" @click="login">登陆</div>
|
|
<div style="font-size: 14px;color: #979db1;">
|
|
登录即同意
|
|
<div style="display: inline-block;color: #5778FF;cursor: pointer;">《用户协议》</div>
|
|
和
|
|
<div style="display: inline-block;color: #5778FF;cursor: pointer;">《隐私政策》</div>
|
|
</div>
|
|
</div>
|
|
</el-main>
|
|
<el-footer>
|
|
<div style="font-size: 12px;font-weight: 400;color: #979db1;">
|
|
©2025 xiaozhi-esp32-server
|
|
</div>
|
|
</el-footer>
|
|
</el-container>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Api from '@/apis/api'
|
|
import {isNull, showDanger, showSuccess, goToPage} from '@/utils'
|
|
|
|
export default {
|
|
name: 'login',
|
|
data() {
|
|
return {
|
|
activeName: "username",
|
|
form: {
|
|
username: '',
|
|
password: '',
|
|
captcha: ''
|
|
}
|
|
}
|
|
},
|
|
methods: {
|
|
login() {
|
|
if (isNull(this.form.username)) {
|
|
showDanger('用户名不能为空')
|
|
return
|
|
}
|
|
if (isNull(this.form.password)) {
|
|
showDanger('密码不能为空')
|
|
return
|
|
}
|
|
if (isNull(this.form.captcha)) {
|
|
showDanger('验证码不能为空')
|
|
return
|
|
}
|
|
Api.user.login(this.form, ({data}) => {
|
|
showSuccess('登陆成功!')
|
|
goToPage('/home')
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
<style scoped lang="scss">
|
|
.welcome {
|
|
min-width: 1200px;
|
|
min-height: 675px;
|
|
height: 100vh;
|
|
background-image: url("@/assets/login/background.png");
|
|
background-size: cover;
|
|
/* 确保背景图像覆盖整个元素 */
|
|
background-position: center;
|
|
/* 从顶部中心对齐 */
|
|
-webkit-background-size: cover;
|
|
/* 兼容老版本WebKit浏览器 */
|
|
-o-background-size: cover;
|
|
/* 兼容老版本Opera浏览器 */
|
|
}
|
|
|
|
.login-text {
|
|
font-weight: 700;
|
|
font-size: 32px;
|
|
text-align: left;
|
|
color: #3d4566;
|
|
}
|
|
|
|
.login-welcome {
|
|
font-weight: 400;
|
|
font-size: 9px;
|
|
text-align: left;
|
|
color: #818cae;
|
|
align-self: flex-end;
|
|
margin-bottom: 7px;
|
|
}
|
|
|
|
.login-box {
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
right: 18%;
|
|
background-color: #fff;
|
|
border-radius: 20px;
|
|
padding: 35px 0;
|
|
width: 450px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.el-dropdown-link {
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
text-align: left;
|
|
color: #979db1;
|
|
}
|
|
|
|
.input-icon {
|
|
width: 19px;
|
|
height: 22px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.login-btn {
|
|
height: 35px;
|
|
background: #5778ff;
|
|
border-radius: 10px;
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
color: #fff;
|
|
line-height: 35px;
|
|
margin: 35px 15px 15px;
|
|
}
|
|
|
|
.code-send {
|
|
width: 70px;
|
|
height: 32px;
|
|
border-radius: 10px;
|
|
background: #e6ebff;
|
|
line-height: 32px;
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
color: #5778ff;
|
|
flex-shrink: 0;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.input-box {
|
|
display: flex;
|
|
margin-top: 20px;
|
|
align-items: center;
|
|
border-radius: 10px;
|
|
background: #f6f8fb;
|
|
border: 1px solid #e4e6ef;
|
|
height: 40px;
|
|
padding: 0 15px;
|
|
gap: 20px;
|
|
}
|
|
|
|
::v-deep {
|
|
.el-tabs__nav-wrap::after {
|
|
height: 1px;
|
|
}
|
|
|
|
.el-tabs__nav-wrap::before {
|
|
content: "";
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 1px;
|
|
background-color: #e4e7ed;
|
|
z-index: 1;
|
|
}
|
|
|
|
.el-tabs__item {
|
|
height: 65px;
|
|
line-height: 65px;
|
|
font-weight: 700;
|
|
color: #3d4566;
|
|
}
|
|
|
|
.el-tabs__item.is-active {
|
|
color: #5778ff;
|
|
}
|
|
|
|
.el-tabs__nav-scroll {
|
|
padding: 0 30px;
|
|
}
|
|
|
|
.el-input__inner {
|
|
border: none;
|
|
background-color: transparent;
|
|
height: 56px;
|
|
padding: 0;
|
|
}
|
|
}
|
|
</style>
|