Merge branch 'master' of https://git.theluyuan.com/luyuan/gaokaobaoming
This commit is contained in:
commit
7e809ed50b
5
.idea/.gitignore
generated
vendored
Normal file
5
.idea/.gitignore
generated
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
# Editor-based HTTP Client requests
|
||||
/httpRequests/
|
12
.idea/gaokaobaoming.iml
generated
Normal file
12
.idea/gaokaobaoming.iml
generated
Normal 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
8
.idea/modules.xml
generated
Normal 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
6
.idea/vcs.xml
generated
Normal 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>
|
@ -11,6 +11,9 @@ const routes:RouteRecordRaw[] = [{
|
||||
}, {
|
||||
path: "major",
|
||||
component: () => import('./pages/major.vue')
|
||||
}, {
|
||||
path: "login",
|
||||
component: () => import('./pages/login.vue')
|
||||
}, {
|
||||
path: "university",
|
||||
component: () => import('./pages/university.vue')
|
||||
|
63
src/pages/login.vue
Normal file
63
src/pages/login.vue
Normal 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
BIN
src/static/img/logo.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 35 KiB |
Loading…
x
Reference in New Issue
Block a user