|
@@ -1,12 +1,12 @@
|
|
|
<template>
|
|
|
- <div class="container">
|
|
|
+ <div class="app-back">
|
|
|
<div class="banner">
|
|
|
<el-image style="width: 100vw" :src="require('@/assets/images/daoxue_banner.png')" fit="none"></el-image>
|
|
|
</div>
|
|
|
- <div class="content">
|
|
|
+ <div class="app-content">
|
|
|
<index-card title="在线试卷" class="mb20">
|
|
|
<el-row :gutter="20">
|
|
|
- <el-col :span="8" v-for="item in onLinePaper" >
|
|
|
+ <el-col :span="8" v-for="item in onLinePaper">
|
|
|
<div class="wrap-item fx-row jc-between ai-center">
|
|
|
<div class="left mr30" >
|
|
|
<el-image :src="item.img"></el-image>
|
|
@@ -18,7 +18,7 @@
|
|
|
</div>
|
|
|
<p class="mt20 mb20" style="color:#CECECE">少儿数字内容</p>
|
|
|
<div>
|
|
|
- <el-button type="primary">立即查询</el-button>
|
|
|
+ <el-button type="primary" @click="$router.push(item.path)">立即查询</el-button>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -27,7 +27,7 @@
|
|
|
</index-card>
|
|
|
<index-card title="学情分析" class="mb20">
|
|
|
<el-row :gutter="20">
|
|
|
- <el-col :span="8" v-for="item in onLinePaper" >
|
|
|
+ <el-col :span="8" v-for="item in idc" @click="$router.push(item.path)">
|
|
|
<div class="wrap-item fx-row jc-between ai-center">
|
|
|
<div class="left mr30" >
|
|
|
<el-image :src="item.img"></el-image>
|
|
@@ -39,7 +39,7 @@
|
|
|
</div>
|
|
|
<p class="mt20 mb20" style="color:#CECECE">少儿数字内容</p>
|
|
|
<div>
|
|
|
- <el-button type="primary">立即查询</el-button>
|
|
|
+ <el-button type="primary" @click="$router.push(item.path)">立即查询</el-button>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -66,19 +66,36 @@ export default {
|
|
|
{
|
|
|
title: '个人测评',
|
|
|
img: require('@/assets/images/personal_eval.png'),
|
|
|
- path: '/personalDatabase/personalResources/index'
|
|
|
+ path: '/daoxue/evaluating/personal/index_3'
|
|
|
},
|
|
|
{
|
|
|
title: '真题测评',
|
|
|
- img: require('@/assets/images/school_eval.png'),
|
|
|
- path: '/personalDatabase/schoolResources/index'
|
|
|
+ img: require('@/assets/images/past_eval.png'),
|
|
|
+ path: '/daoxue/evaluating/past/index_5'
|
|
|
},
|
|
|
{
|
|
|
title: '学校测评',
|
|
|
- img: require('@/assets/images/past_eval.png'),
|
|
|
- path: '/personalDatabase/cloudTank/index'
|
|
|
+ img: require('@/assets/images/school_eval.png'),
|
|
|
+ path: '/daoxue/evaluating/school/index_1'
|
|
|
},
|
|
|
],
|
|
|
+ idc: [
|
|
|
+ {
|
|
|
+ title: '个人测评',
|
|
|
+ img: require('@/assets/images/personal_idc.png'),
|
|
|
+ path: '/daoxue/idc/eval/index_3'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '真题测评',
|
|
|
+ img: require('@/assets/images/past_idc.png'),
|
|
|
+ path: '/daoxue/idc/eval/index_5'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '学校测评',
|
|
|
+ img: require('@/assets/images/school_idc.png'),
|
|
|
+ path: '/daoxue/idc/eval/school/index_1'
|
|
|
+ },
|
|
|
+ ]
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
@@ -86,16 +103,7 @@ export default {
|
|
|
}
|
|
|
</script>
|
|
|
<style scoped lang="scss">
|
|
|
-.content {
|
|
|
- width: 70%;
|
|
|
- margin: 0 auto;
|
|
|
- padding-bottom: 20px;
|
|
|
- margin-top: 20px;
|
|
|
-}
|
|
|
|
|
|
-.container {
|
|
|
- background: #f5f4f9;
|
|
|
-}
|
|
|
.wrap-item{
|
|
|
background: #F7F8FD;
|
|
|
border-radius: 4px;
|