|
@@ -0,0 +1,99 @@
|
|
|
|
+<template>
|
|
|
|
+ <index-card title="高考志愿">
|
|
|
|
+ <index-card-content :list="list">
|
|
|
|
+ <template #default="{item}">
|
|
|
|
+ <index-image-item v-bind="item"/>
|
|
|
|
+ </template>
|
|
|
|
+ </index-card-content>
|
|
|
|
+ </index-card>
|
|
|
|
+</template>
|
|
|
|
+
|
|
|
|
+<script>
|
|
|
|
+import IndexCard from '@/views/index/components/index-card'
|
|
|
|
+import IndexCardContent from '@/views/index/components/index-card-content'
|
|
|
|
+import IndexImageItem from '@/views/index/components/index-image-item'
|
|
|
|
+
|
|
|
|
+const titleClasses = ['absolute', 'fx-row', 'fx-cen-cen', 'f-fff', 'pf', 'f16', 'bold']
|
|
|
|
+const titleStyle = { left: '17px', bottom: '25px' }
|
|
|
|
+
|
|
|
|
+export default {
|
|
|
|
+ name: 'index-preference',
|
|
|
|
+ components: { IndexImageItem, IndexCardContent, IndexCard },
|
|
|
|
+ data() {
|
|
|
|
+ return {
|
|
|
|
+ list: [
|
|
|
|
+ {
|
|
|
|
+ span: 6,
|
|
|
|
+ src: require('@/assets/images/index/login/img_batch@2x.png'),
|
|
|
|
+ title: '批次控制线',
|
|
|
|
+ desc: 'Control Line',
|
|
|
|
+ path: '/zhiyuan/batch',
|
|
|
|
+ titleClasses: titleClasses,
|
|
|
|
+ titleStyle: titleStyle
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ span: 6,
|
|
|
|
+ src: require('@/assets/images/index/login/img_cast_off@2x.png'),
|
|
|
|
+ title: '投档线',
|
|
|
|
+ desc: 'Pitch Line',
|
|
|
|
+ path: '/zhiyuan/ShiftLine',
|
|
|
|
+ titleClasses: titleClasses,
|
|
|
|
+ titleStyle: titleStyle
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ span: 6,
|
|
|
|
+ src: require('@/assets/images/index/login/img_segment@2x.png'),
|
|
|
|
+ title: '一分一段',
|
|
|
|
+ desc: 'Piece by Piece',
|
|
|
|
+ path: '/zhiyuan/yfyd',
|
|
|
|
+ titleClasses: titleClasses,
|
|
|
|
+ titleStyle: titleStyle
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ span: 6,
|
|
|
|
+ src: require('@/assets/images/index/login/img_plan@2x.png'),
|
|
|
|
+ title: '招生计划',
|
|
|
|
+ desc: 'Enrollment Plan',
|
|
|
|
+ path: '/zhiyuan/enrollPlan',
|
|
|
|
+ titleClasses: titleClasses,
|
|
|
|
+ titleStyle: titleStyle
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ span: 8,
|
|
|
|
+ src: require('@/assets/images/index/login/img_library_college@2x.png'),
|
|
|
|
+ title: '院校库',
|
|
|
|
+ desc: 'College Library',
|
|
|
|
+ path: '/new-gaokao/three/UniversitiesColleges',
|
|
|
|
+ class: ['mt10'],
|
|
|
|
+ titleClasses: titleClasses,
|
|
|
|
+ titleStyle: titleStyle
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ span: 8,
|
|
|
|
+ src: require('@/assets/images/index/login/img_library_major@2x.png'),
|
|
|
|
+ title: '专业库',
|
|
|
|
+ desc: 'Professional library',
|
|
|
|
+ path: '/new-gaokao/three/ProfessLib',
|
|
|
|
+ class: ['mt10'],
|
|
|
|
+ titleClasses: titleClasses,
|
|
|
|
+ titleStyle: titleStyle
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ span: 8,
|
|
|
|
+ src: require('@/assets/images/index/login/img_library_job@2x.png'),
|
|
|
|
+ title: '职业库',
|
|
|
|
+ desc: 'Career Library',
|
|
|
|
+ path: '/new-gaokao/three/Vocation',
|
|
|
|
+ class: ['mt10'],
|
|
|
|
+ titleClasses: titleClasses,
|
|
|
|
+ titleStyle: titleStyle
|
|
|
|
+ }
|
|
|
|
+ ]
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+</script>
|
|
|
|
+
|
|
|
|
+<style scoped>
|
|
|
|
+
|
|
|
|
+</style>
|