@ -0,0 +1,41 @@
|
||||
<template>
|
||||
<div id="app">
|
||||
<Home></Home>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Home from './view/home.vue'
|
||||
|
||||
export default {
|
||||
name: 'App',
|
||||
components: {
|
||||
Home
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
@import url(./assets/font/iconfont.css);
|
||||
.iconfont {
|
||||
font-family: "iconfont" !important;
|
||||
font-style: normal;
|
||||
font-size: 25px;
|
||||
vertical-align: middle;
|
||||
color: rgb(117,120,137);
|
||||
transition: .3s;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
* {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#app {
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
background-color: rgb(255, 255, 255);
|
||||
}
|
||||
</style>
|
After Width: | Height: | Size: 27 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 21 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 21 KiB |
After Width: | Height: | Size: 89 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 6.4 KiB |
After Width: | Height: | Size: 812 KiB |
@ -0,0 +1,56 @@
|
||||
<template>
|
||||
<nav class="navbar">
|
||||
<ul class="nav-links">
|
||||
<li><router-link to="/ChatHome">首页</router-link></li>
|
||||
<li><router-link to="/ReCommend">匹配推荐</router-link></li>
|
||||
<li><router-link to="/LinVite1n">个人资料</router-link></li>
|
||||
<li><router-link to="#">设置</router-link></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
width: 100%;
|
||||
background-color: #0073e6;
|
||||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
||||
font-family: 'Open Sans', sans-serif;
|
||||
}
|
||||
|
||||
.nav-links {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
align-items: center;
|
||||
height: 50px;
|
||||
}
|
||||
|
||||
.nav-links li {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.nav-links li a {
|
||||
text-decoration: none;
|
||||
color: white;
|
||||
font-size: 25px;
|
||||
transition: color 0.3s;
|
||||
padding: 0 15px;
|
||||
}
|
||||
|
||||
.nav-links li a:hover {
|
||||
color: #d0e7ff;
|
||||
}
|
||||
</style>
|
@ -0,0 +1,23 @@
|
||||
<template>
|
||||
<div class="hello">
|
||||
<h1>mian首页</h1>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'HelloWorld',
|
||||
props: {
|
||||
msg: String
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
||||
<style scoped>
|
||||
div {
|
||||
background-color: aqua;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
</style>
|
@ -0,0 +1,169 @@
|
||||
<template>
|
||||
<div class="app-background">
|
||||
<div class="login-container">
|
||||
<div class="login-box">
|
||||
<h1>欢迎登录</h1>
|
||||
<form @submit.prevent="login">
|
||||
<div class="input-group">
|
||||
<label for="username">用户名:</label>
|
||||
<input type="text" v-model="formData.username" id="username" required />
|
||||
</div>
|
||||
<div class="input-group">
|
||||
<label for="password">密码:</label>
|
||||
<input type="password" v-model="formData.password" id="password" required />
|
||||
</div>
|
||||
<button type="submit">登录</button>
|
||||
</form>
|
||||
<button @click="register" class="register-button">注册账号</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import axios from 'axios';
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
formData:{
|
||||
username: '',
|
||||
password: ''
|
||||
}
|
||||
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
async login() {
|
||||
|
||||
const response = await axios.post('http://127.0.0.1:8000/login', this.formData);
|
||||
console.log(response.data); // 后端返回的数据
|
||||
if(response.data.code === 200){
|
||||
alert("登录成功")
|
||||
this.$router.push('/home').then(() => {
|
||||
location.reload();//刷新页面
|
||||
}).catch(() => {});
|
||||
}else if (response.data.code === 400){
|
||||
alert("密码错误")
|
||||
}else{
|
||||
alert("用户不存在")
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<style scoped>
|
||||
body {
|
||||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100vh;
|
||||
overflow: hidden; /* 防止滚动条 */
|
||||
}
|
||||
|
||||
.app-background {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: url("../assets/R.jpg") no-repeat center center;
|
||||
background-size: cover;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.login-container {
|
||||
text-align: center;
|
||||
max-width: 600px; /* 宽度 */
|
||||
margin: 0 0 0 auto;
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
background-color: hwb(207 71% 7% / 0.959);
|
||||
border-radius: 50px;
|
||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
||||
padding: 200px; /* 内边距 */
|
||||
box-sizing: border-box;
|
||||
left: 150px;
|
||||
z-index: 2; /* 确保登录框在背景图之上 */
|
||||
position: relative;
|
||||
left: -30px;
|
||||
max-height: 700px;
|
||||
top:16px;
|
||||
}
|
||||
|
||||
.login-box h1 {
|
||||
font-size: 3em;
|
||||
margin-bottom: 20px;
|
||||
color: #0b70b4c1;
|
||||
position: relative;
|
||||
bottom: 50px;
|
||||
}
|
||||
|
||||
|
||||
.input-group {
|
||||
margin-bottom: 20px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.input-group label {
|
||||
display: block;
|
||||
margin-bottom: 10px;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.input-group input {
|
||||
width: 180%;
|
||||
padding: 15px;
|
||||
margin-top: 5px;
|
||||
border: 1px solid #ddd;
|
||||
border-radius: 5px;
|
||||
box-sizing: border-box;
|
||||
font-size: 1.2em;
|
||||
margin: auto;
|
||||
position: relative;
|
||||
left: -80px;
|
||||
}
|
||||
|
||||
button {
|
||||
width: 180%;
|
||||
padding: 15px;
|
||||
background-color: #538edb;
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 5px;
|
||||
cursor: pointer;
|
||||
transition: background-color 0.3s ease;
|
||||
font-size: 1.2em;
|
||||
position: relative;
|
||||
left: -80px;
|
||||
|
||||
}
|
||||
.register-button {
|
||||
margin-top: 10px; /* 按钮与登录按钮之间的间距 */
|
||||
padding: 5px; /* 内边距 */
|
||||
background-color: transparent; /* */
|
||||
color: rgb(27, 150, 227);
|
||||
border: none;
|
||||
border-radius: 5px;
|
||||
cursor: pointer;
|
||||
transition: background-color 0.3s ease;
|
||||
font-size: 0.8em; /* 字体大小 */
|
||||
width: 50%; /* 调整按钮宽度 */
|
||||
align-self: center; /* 居中对齐按钮 */
|
||||
position: relative;
|
||||
left: 150px
|
||||
}
|
||||
|
||||
button:hover {
|
||||
background-color: #e55b54;
|
||||
}
|
||||
</style>
|