|
@@ -1,18 +1,107 @@
|
|
|
<template>
|
|
|
- <index-card>
|
|
|
- <div>内容</div>
|
|
|
+ <index-card title="大数据选科" >
|
|
|
+ <index-card-content :list="list" :line-size="lineSize">
|
|
|
+ <template #default="{item}">
|
|
|
+ <index-image-item v-bind="item" ></index-image-item>
|
|
|
+ </template>
|
|
|
+ </index-card-content>
|
|
|
</index-card>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
import IndexCard from '@/views/index/components/index-card'
|
|
|
import loginCheckMixin from '@/views/components/blocks/index-login-interceptor-mixin'
|
|
|
+import IndexImageItem from '@/views/index/components/index-image-item'
|
|
|
+import IndexCardContent from '@/views/index/components/index-card-content'
|
|
|
|
|
|
export default {
|
|
|
+ components: { IndexImageItem, IndexCardContent, IndexCard },
|
|
|
mixins: [loginCheckMixin],
|
|
|
name: 'index-card-elective',
|
|
|
- components: { IndexCard },
|
|
|
- methods: {}
|
|
|
+ methods: {},
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ lineSize:4,
|
|
|
+ list:[
|
|
|
+ {
|
|
|
+ title: '智能选科报名',
|
|
|
+ src: require('@/assets/images/elective_apply.png'),
|
|
|
+ desc:'通过意向的院校和专业推荐选科方案',
|
|
|
+ path: '/new-gaokao/bigdataSelectCourse/round-select',
|
|
|
+ titleStyle:{
|
|
|
+ top:'37px',
|
|
|
+ left:'37px',
|
|
|
+ fontSize: '24px',
|
|
|
+ color:"#000"
|
|
|
+ },
|
|
|
+ descStyle:{
|
|
|
+ top:'70px',
|
|
|
+ left:'37px',
|
|
|
+ color:"#000"
|
|
|
+ },
|
|
|
+ titleClasses:['absolute','bold'],
|
|
|
+ descClasses:['absolute','bold','f12']
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '个人分班信息',
|
|
|
+ src: require('@/assets/images/elective_dispatch.png'),
|
|
|
+ desc:'通过意向的院校和专业推荐',
|
|
|
+ path: '/new-gaokao/bigdataSelectCourse/personalDivideClass',
|
|
|
+ titleStyle:{
|
|
|
+ top:'37px',
|
|
|
+ left:'37px',
|
|
|
+ fontSize: '24px',
|
|
|
+ color:"#000"
|
|
|
+ },
|
|
|
+ descStyle:{
|
|
|
+ top:'70px',
|
|
|
+ left:'37px',
|
|
|
+ color:"#000"
|
|
|
+ },
|
|
|
+ titleClasses:['absolute','bold'],
|
|
|
+ descClasses:['absolute','bold','f12']
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '个人选科报告',
|
|
|
+ src: require('@/assets/images/elective_report.png'),
|
|
|
+ desc:'通过大学/专业维度查询选考科目要求',
|
|
|
+ path: '/new-gaokao/bigdataSelectCourse/personalSelectCourseReport',
|
|
|
+ titleStyle:{
|
|
|
+ top:'37px',
|
|
|
+ left:'37px',
|
|
|
+ fontSize: '24px',
|
|
|
+ color:"#000"
|
|
|
+ },
|
|
|
+ descStyle:{
|
|
|
+ top:'70px',
|
|
|
+ left:'37px',
|
|
|
+ color:"#000"
|
|
|
+ },
|
|
|
+ titleClasses:['absolute','bold'],
|
|
|
+ descClasses:['absolute','bold','f12']
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '个人课程表',
|
|
|
+ src: require('@/assets/images/elective_table.png'),
|
|
|
+ desc:'通过意向的院校和专业推荐',
|
|
|
+ path: '',
|
|
|
+ titleStyle:{
|
|
|
+ top:'37px',
|
|
|
+ left:'37px',
|
|
|
+ fontSize: '24px',
|
|
|
+ color:"#000"
|
|
|
+ },
|
|
|
+ descStyle:{
|
|
|
+ top:'70px',
|
|
|
+ left:'37px',
|
|
|
+ color:"#000"
|
|
|
+ },
|
|
|
+ titleClasses:['absolute','bold'],
|
|
|
+ descClasses:['absolute','bold','f12']
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
</script>
|
|
|
|