|
@@ -8,7 +8,7 @@
|
|
|
<el-row :gutter="20">
|
|
|
<el-col :span="8" v-for="item in onLinePaper" >
|
|
|
<div class="wrap-item fx-row jc-between ai-center">
|
|
|
- <div class="left" >
|
|
|
+ <div class="left mr30" >
|
|
|
<el-image :src="item.img"></el-image>
|
|
|
</div>
|
|
|
<div>
|
|
@@ -29,7 +29,7 @@
|
|
|
<el-row :gutter="20">
|
|
|
<el-col :span="8" v-for="item in onLinePaper" >
|
|
|
<div class="wrap-item fx-row jc-between ai-center">
|
|
|
- <div class="left" >
|
|
|
+ <div class="left mr30" >
|
|
|
<el-image :src="item.img"></el-image>
|
|
|
</div>
|
|
|
<div>
|
|
@@ -55,10 +55,11 @@
|
|
|
<script>
|
|
|
import IndexCard from '@/views/index/components/index-card.vue'
|
|
|
import MxImageWrap from '@/views/questioncenter/components/main-card/mx-image-wrap.vue'
|
|
|
-import { mapGetters } from 'vuex'
|
|
|
-import store from '@/store'
|
|
|
+import RouterHelpMixin from '@/router/router-help-mixin'
|
|
|
+import loginCheckMixin from '@/views/components/blocks/index-login-check-mixin'
|
|
|
export default {
|
|
|
components: { IndexCard, MxImageWrap },
|
|
|
+ mixins: [RouterHelpMixin, loginCheckMixin],
|
|
|
data() {
|
|
|
return {
|
|
|
onLinePaper: [
|
|
@@ -69,12 +70,12 @@ export default {
|
|
|
},
|
|
|
{
|
|
|
title: '真题测评',
|
|
|
- img: require('@/assets/images/personal_eval.png'),
|
|
|
+ img: require('@/assets/images/school_eval.png'),
|
|
|
path: '/personalDatabase/schoolResources/index'
|
|
|
},
|
|
|
{
|
|
|
title: '学校测评',
|
|
|
- img: require('@/assets/images/personal_eval.png'),
|
|
|
+ img: require('@/assets/images/past_eval.png'),
|
|
|
path: '/personalDatabase/cloudTank/index'
|
|
|
},
|
|
|
],
|