Commit 4c88497e by wdc147

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

parents c249b74b 56d1aee9
<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>
...@@ -15,7 +15,7 @@ import student from '@/pages/class3-student.vue' ...@@ -15,7 +15,7 @@ import student from '@/pages/class3-student.vue'
// 六年级菊园学子 // 六年级菊园学子
import sixthForm from '@/pages/sixthFormStudent.vue' import sixthForm from '@/pages/sixthFormStudent.vue'
// 六年级菊园个人 // 六年级菊园个人
import growth from '@/pages/growth.vue' import growthPer from '@/pages/growth.vue'
export default [ export default [
{ {
path: '/', path: '/',
...@@ -54,7 +54,7 @@ export default [ ...@@ -54,7 +54,7 @@ export default [
component: sixthForm component: sixthForm
}, },
{ {
path: '/growth', path: '/growthPer',
component: growth component: growthPer
} }
] ]
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