|
@@ -1,37 +1,9 @@
|
|
|
<template>
|
|
|
<div class="app-back">
|
|
|
- <div class="banner">
|
|
|
- <el-image style="width: 100vw" :src="`${$imgBase}index/zhiyuan/zhiyuan_banner.png`" fit="none"></el-image>
|
|
|
- </div>
|
|
|
+ <div class="index-banner" :style="bannerStyle" />
|
|
|
<div class="fx-cen-cen fx-column pb20">
|
|
|
- <index-card title="数据查询" class="mt20 index-block">
|
|
|
- <el-row :gutter="20">
|
|
|
- <el-col class="relative fx-cen-cen fx-column" :span="4" v-for="item in plan" >
|
|
|
- <div class="plan_item pointer" @click="$router.push(item.path)">
|
|
|
- <div class="img-wrap">
|
|
|
- <img :src="item.img"/>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <p class="bold text-center" >{{ item.title }}</p>
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
- </index-card>
|
|
|
- <index-card title="模拟志愿" class="mt20 index-block">
|
|
|
- <el-steps :active="0" finish-status="success">
|
|
|
- <el-step title="选择批次"></el-step>
|
|
|
- <el-step title="填报批次"></el-step>
|
|
|
- <el-step title="院校专业"></el-step>
|
|
|
- <el-step title="保存志愿"></el-step>
|
|
|
- </el-steps>
|
|
|
- <el-row :gutter="40" class="mt60">
|
|
|
- <el-col :span="12" class="text-right">
|
|
|
- <el-button type="primary" @click="$router.push('/zhiyuan/SimulatedVolunteer')">进入填报</el-button>
|
|
|
- </el-col>
|
|
|
- <el-col :span="12" class="text-left">
|
|
|
- <el-button type="primary" @click="$router.push('/zhiyuan/volunteerList')">我的志愿</el-button>
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
- </index-card>
|
|
|
+ <index-card-voluntary-f6 class="mt20 index-block" />
|
|
|
+ <index-card-voluntary-entry class="mt20 index-block" />
|
|
|
<index-card-news-single class="index-block mt20" type="填报技巧" morePath="/fuzhu/newGaokaoNews" />
|
|
|
</div>
|
|
|
</div>
|
|
@@ -39,64 +11,20 @@
|
|
|
<script>
|
|
|
import IndexCard from '@/views/index/components/index-card.vue'
|
|
|
import IndexCardNewsSingle from '@/views/index/components/index-card-news-single'
|
|
|
+import IndexCardVoluntaryF6 from "@/views/career/zhiyuan/cards/index-card-voluntary-f6.vue";
|
|
|
+import IndexCardVoluntaryEntry from "@/views/career/zhiyuan/cards/index-card-voluntary-entry.vue";
|
|
|
export default {
|
|
|
- components: { IndexCard,IndexCardNewsSingle },
|
|
|
+ name: 'VoluntaryMain',
|
|
|
+ components: {IndexCardVoluntaryEntry, IndexCardVoluntaryF6, IndexCard, IndexCardNewsSingle },
|
|
|
data() {
|
|
|
return {
|
|
|
- plan: [
|
|
|
- {
|
|
|
- title: '批次控制线',
|
|
|
- img:`${this.$imgBase}index/zhiyuan/zhiyuan_batch.png`,
|
|
|
- path: '/zhiyuan/batch'
|
|
|
- },
|
|
|
- {
|
|
|
- title: '投档线',
|
|
|
- img:`${this.$imgBase}index/zhiyuan/zhiyuan_tdx.png`,
|
|
|
- path: '/zhiyuan/ShiftLine'
|
|
|
- },
|
|
|
- {
|
|
|
- title: '一分一段',
|
|
|
- img:`${this.$imgBase}index/zhiyuan/zhiyuan_yfyd.png`,
|
|
|
- path: '/zhiyuan/yfyd'
|
|
|
- },
|
|
|
- {
|
|
|
- title: '招生计划',
|
|
|
- img:`${this.$imgBase}index/zhiyuan/zhiyuan_plan.png`,
|
|
|
- path: '/zhiyuan/enrollPlan'
|
|
|
- },
|
|
|
- {
|
|
|
- title: '高考政策',
|
|
|
- img:`${this.$imgBase}index/zhiyuan/zhiyuan_gkzc.png`,
|
|
|
- path: '/fuzhu/newGaokaoNews'
|
|
|
- },
|
|
|
- {
|
|
|
- title: '院校查询',
|
|
|
- img:`${this.$imgBase}index/zhiyuan/zhiyuan_yxcx.png`,
|
|
|
- path: '/new-gaokao/three/UniversitiesColleges'
|
|
|
- },
|
|
|
- ]
|
|
|
+ bannerStyle: {
|
|
|
+ backgroundImage: `url(${require('@/assets/images/index/banner/voluntary-banner.png')})`,
|
|
|
+ height: '300px'
|
|
|
+ }
|
|
|
}
|
|
|
- },
|
|
|
- methods: {
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
|
-<style scoped lang="scss">
|
|
|
-.plan_item{
|
|
|
- padding: 20px;
|
|
|
- border: 1px solid #C5C5C5;
|
|
|
- margin-bottom: 20px;
|
|
|
- border-radius: 4px;
|
|
|
- width: 134px;
|
|
|
- height: 134px;
|
|
|
- .img-wrap{
|
|
|
- width: 100%;
|
|
|
- height: 100%;
|
|
|
- text-align: center;
|
|
|
- }
|
|
|
- &:hover{
|
|
|
- background: #47C6A2;
|
|
|
- border: 1px solid #47C6A2;
|
|
|
- }
|
|
|
-}
|
|
|
+<style scoped>
|
|
|
</style>
|