This commit is contained in:
asd 2021-10-21 22:16:44 +08:00
parent 2eabae8040
commit da8a6fb63c
7 changed files with 97 additions and 0 deletions

5
.idea/.gitignore generated vendored Normal file
View File

@ -0,0 +1,5 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/

12
.idea/gaokaobaoming.iml generated Normal file
View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/temp" />
<excludeFolder url="file://$MODULE_DIR$/.tmp" />
<excludeFolder url="file://$MODULE_DIR$/tmp" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

8
.idea/modules.xml generated Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/gaokaobaoming.iml" filepath="$PROJECT_DIR$/.idea/gaokaobaoming.iml" />
</modules>
</component>
</project>

6
.idea/vcs.xml generated Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

View File

@ -11,6 +11,9 @@ const routes:RouteRecordRaw[] = [{
},{
path:"major",
component: () => import('./pages/major.vue')
},{
path:"login",
component:()=> import('./pages/login.vue')
}]
}]

63
src/pages/login.vue Normal file
View File

@ -0,0 +1,63 @@
<template>
<div class="login">
<div class="infos">
<div class="top">
<img src="../static/img/logo.jpg" class="logo">
<h1>高考志愿填报</h1>
</div>
<a-form
name="custom-validation"
ref="formRef"
:model="formState"
v-bind="layout"
@finish="handleFinish"
@finishFailed="handleFinishFailed"
>
<a-form-item has-feedback name="pass">
<a-input type="password" autocomplete="off" placeholder="请输入用户名" class="shuru"/>
</a-form-item>
<a-form-item has-feedback name="checkPass">
<a-input type="password" autocomplete="off" placeholder="请输入密码" class="shuru"/>
</a-form-item>
<a-button type="primary" class="shuru">登录</a-button>
</a-form>
</div>
</div>
</template>
<script>
export default {
name: "login"
}
</script>
<style scoped lang="scss">
.login{
height: 80vh;
display: flex;
justify-content: center;
align-items: center;
.top{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
line-height: 70px;
margin-bottom: 30px;
.logo{
width:140px;
height: 140px;
margin-right: 20px;
}
}
.infos{
margin: 0 auto;
.shuru{
width: 400px;
}
}
}
</style>

BIN
src/static/img/logo.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB