Browse Source

entry for student elective test

hare8999@163.com 2 years ago
parent
commit
12a3f271d2

+ 6 - 2
src/views/elective/test/index.vue

@@ -1,10 +1,14 @@
 <template>
-
+  <div class="app-container">
+    <test-summary></test-summary>
+  </div>
 </template>
 
 <script>
+import TestSummary from '@/views/elective/test/components/test-summary'
 export default {
-  name: 'index'
+  name: 'index',
+  components: { TestSummary }
 }
 </script>
 

+ 1 - 1
src/views/system/user/profile/components/select-subject.vue

@@ -30,7 +30,7 @@
           <div class="fx-row fx-bet-cen">
             您的测评推荐专业:
             <div>
-              <el-button type="primary" @click="$router.push('/career/testSelectSubject')">查看报告</el-button>
+              <el-button type="primary" @click="$router.push('/elective/test/index')">查看报告</el-button>
               <el-button @click="toMatch(2)">整体匹配</el-button>
             </div>
           </div>