Commit cc4c54b7 by zsh

Merge remote-tracking branch 'origin/1a86cad6' into xiaxs

parents b628b848 56d1aee9
...@@ -58,7 +58,7 @@ export default { ...@@ -58,7 +58,7 @@ export default {
top: 0px; top: 0px;
right: 0px; right: 0px;
bottom: 0px; bottom: 0px;
background-color: rgba(0, 0, 0, 0.3); background-color: rgba(0, 0, 0, 0.6);
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
...@@ -68,16 +68,16 @@ export default { ...@@ -68,16 +68,16 @@ export default {
// padding: 90px 30px 30px 30px; // padding: 90px 30px 30px 30px;
position: relative; position: relative;
background: radial-gradient(circle, #0D375F, #091F33); background: radial-gradient(circle, #0D375F, #091F33);
border: 3px solid; // border: 3px solid;
border-image: linear-gradient(0deg, #71BEF9, #1E5D92, #002D52, #1F5E93, #71BEF8) 3 3; // border-image: linear-gradient(0deg, #71BEF9, #1E5D92, #002D52, #1F5E93, #71BEF8) 3 3;
.close { .close {
cursor: pointer; cursor: pointer;
position: fixed; position: fixed;
top: 155px; top: 145px;
right: 315px; right: 395px;
width: 40px; width: 80px;
height: 40px; height: 80px;
z-index: 1; z-index: 1;
// background: url('../../../static/images/close.png') no-repeat left top; // background: url('../../../static/images/close.png') no-repeat left top;
} }
...@@ -88,7 +88,7 @@ export default { ...@@ -88,7 +88,7 @@ export default {
width: 1352px; width: 1352px;
height: 792px; height: 792px;
z-index: 0; z-index: 0;
overflow: hidden; // overflow: hidden;
} }
} }
} }
......
...@@ -148,11 +148,11 @@ export default { ...@@ -148,11 +148,11 @@ export default {
* @method Search 查询更多 * @method Search 查询更多
*/ */
Search () { Search () {
// if (this.studentName === '小王') { if (this.studentName === '顾雨辰' && this.gradeRes.name === '三年级' && this.classRes.name === '四班' && this.sexRes.name === '女') {
// this.$router.push({path: '/student'})
// }
this.$router.push({path: '/student'}) this.$router.push({path: '/student'})
} }
this.$message('暂无数据')
}
} }
} }
......
<template> <template>
<div class="grow"></div> <div class="grow">
<div class="edit" @click="edit1"></div>
</div>
</template> </template>
<script> <script>
export default { export default {
data () {
return {
}
},
methods: {
/**
* @method edit1 返回
*/
edit1 () {
this.$router.back('/sixthForm')
}
}
} }
</script> </script>
<style lang="less" scoped> <style lang="less" scoped>
...@@ -12,5 +26,14 @@ export default { ...@@ -12,5 +26,14 @@ export default {
height: 1080px; height: 1080px;
background: url('../../static/images/sixthForm/grow.png') no-repeat center; background: url('../../static/images/sixthForm/grow.png') no-repeat center;
margin: 0 auto; margin: 0 auto;
overflow: hidden;
.edit{
width: 83px;
height: 35px;
background: url('../../static/images/sixthForm/return.png') no-repeat;
position: absolute;
top: 39px;
left: 1822px;
}
} }
</style> </style>
...@@ -39,7 +39,7 @@ export default { ...@@ -39,7 +39,7 @@ export default {
height: 35px; height: 35px;
width: 83px; width: 83px;
margin: 15px; margin: 15px;
margin-top: 63px; margin-top: 45px;
background: url('../../static/images/back.png') no-repeat left top; background: url('../../static/images/back.png') no-repeat left top;
} }
} }
......
...@@ -39,7 +39,7 @@ export default { ...@@ -39,7 +39,7 @@ export default {
height: 35px; height: 35px;
width: 83px; width: 83px;
margin: 15px; margin: 15px;
margin-top: 63px; margin-top: 45px;
background: url('../../static/images/back.png') no-repeat left top; background: url('../../static/images/back.png') no-repeat left top;
} }
} }
......
...@@ -45,9 +45,47 @@ ...@@ -45,9 +45,47 @@
> >
搜索 搜索
</div> </div>
<!-- 身心健康 -->
<img class="left-top" @click="healthy" src="../../static/images/sixthForm/btn.png" alt="">
<!-- 学业分析 -->
<img class="left-bottom" @click="study" src="../../static/images/sixthForm/btn.png" alt="">
<!-- 搜索 -->
<div class="research">
<div class="select-item">
<select-list
title="年级"
:list="gradeList"
v-model="gradeRes"
/>
</div>
<div class="select-item">
<select-list
title="班级"
:list="classList"
v-model="classRes"
/>
</div>
<div class="select-item">
<select-list
title="性别"
:list="sexList"
v-model="sexRes"
/>
</div>
<div class="select-item student-name">
<input
placeholder="学生姓名"
v-model="studentName"
@keyup.enter="Search"
/>
</div>
<div
class="search"
@click="Search"
>
搜索
</div> </div>
</div> </div>
<div class="right">
<div class="right-top" @click="integration"></div> <div class="right-top" @click="integration"></div>
<div class="right-bottom"> <div class="right-bottom">
<div class="title"></div> <div class="title"></div>
...@@ -61,7 +99,6 @@ ...@@ -61,7 +99,6 @@
</div> </div>
</div> </div>
<div class="edit" @click="edit"></div> <div class="edit" @click="edit"></div>
</div>
<bullet-frame <bullet-frame
:visible="visible" :visible="visible"
@beforeClose="closePopup" @beforeClose="closePopup"
...@@ -109,7 +146,10 @@ export default { ...@@ -109,7 +146,10 @@ export default {
classList: [ classList: [
{name: '一班'}, {name: '一班'},
{name: '二班'}, {name: '二班'},
{name: '三班'} {name: '三班'},
{name: '四班'},
{name: '五班'},
{name: '六班'}
], ],
// 选择性别 // 选择性别
sexRes: { sexRes: {
...@@ -206,7 +246,11 @@ export default { ...@@ -206,7 +246,11 @@ export default {
* @method Search 搜索 * @method Search 搜索
*/ */
Search () { Search () {
this.$router.push({path: '/growth'}) if (this.gradeRes.name === '六年级' && this.classRes.name === '六班' && this.sexRes.name === '女' && this.studentName === '沈凡婷') {
this.$router.push({path: '/growthPer'})
} else {
this.$message('暂无数据')
}
} }
} }
} }
...@@ -220,7 +264,6 @@ export default { ...@@ -220,7 +264,6 @@ export default {
padding-top: 20px; padding-top: 20px;
width: 100%; width: 100%;
height: 100%; height: 100%;
.swiper-slide { .swiper-slide {
width: 393px !important; width: 393px !important;
height: 208px; height: 208px;
...@@ -250,15 +293,12 @@ export default { ...@@ -250,15 +293,12 @@ export default {
.sixth-page{ .sixth-page{
width: 1920px; width: 1920px;
height: 1080px; height: 1080px;
overflow: hidden; background: url('@{imagePath}bg.png') no-repeat left top;
background: url('@{imagePath}bg.png') no-repeat center;
margin: 0 auto; margin: 0 auto;
overflow: hidden; overflow: hidden;
.left{
.left-top{ .left-top{
width: 96px; width: 96px;
height: 22px; height: 22px;
background: url('@{imagePath}btn.png') no-repeat;
position: absolute; position: absolute;
top: 111px; top: 111px;
left: 408px; left: 408px;
...@@ -271,8 +311,6 @@ export default { ...@@ -271,8 +311,6 @@ export default {
bottom: 271px; bottom: 271px;
left: 408px; left: 408px;
} }
}
.center{
.research{ .research{
width: 828px; width: 828px;
height: 70px; height: 70px;
...@@ -323,8 +361,6 @@ export default { ...@@ -323,8 +361,6 @@ export default {
margin-top: 20px; margin-top: 20px;
} }
} }
}
.right{
.right-top{ .right-top{
width: 96px; width: 96px;
height: 22px; height: 22px;
...@@ -351,7 +387,6 @@ export default { ...@@ -351,7 +387,6 @@ export default {
top: 39px; top: 39px;
left: 1822px; left: 1822px;
} }
}
} }
.bulletImg{ .bulletImg{
width: 1428px; width: 1428px;
......
...@@ -21,6 +21,7 @@ import situation from '@/pages/situation.vue' ...@@ -21,6 +21,7 @@ import situation from '@/pages/situation.vue'
// 教师发展 // 教师发展
import progress from '@/pages/progress.vue' import progress from '@/pages/progress.vue'
import growthPer from '@/pages/growth.vue'
export default [ export default [
{ {
path: '/', path: '/',
...@@ -69,5 +70,9 @@ export default [ ...@@ -69,5 +70,9 @@ export default [
{ {
path: '/progress', path: '/progress',
component: progress component: progress
},
{
path: '/growthPer',
component: growthPer
} }
] ]
static/images/junior.png

535 KB | W: | H:

static/images/junior.png

211 KB | W: | H:

static/images/junior.png
static/images/junior.png
static/images/junior.png
static/images/junior.png
  • 2-up
  • Swipe
  • Onion skin
static/images/safety/backurl.png

763 KB | W: | H:

static/images/safety/backurl.png

219 KB | W: | H:

static/images/safety/backurl.png
static/images/safety/backurl.png
static/images/safety/backurl.png
static/images/safety/backurl.png
  • 2-up
  • Swipe
  • Onion skin
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment