|
@@ -5,7 +5,7 @@
|
|
|
</index-card>
|
|
|
<index-card title="选科测评专业" class="mt20">
|
|
|
<test-result :all-test-results="testResults" :selected-majors="summary.selectedList" readonly></test-result>
|
|
|
- <elective-major-match></elective-major-match>
|
|
|
+ <major-match-evaluation></major-match-evaluation>
|
|
|
</index-card>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -14,12 +14,12 @@
|
|
|
import TestSummary from '@/views/elective/test/components/test-summary'
|
|
|
import IndexCard from '@/views/index/components/index-card'
|
|
|
import TestReport from '@/views/elective/test/components/test-report'
|
|
|
-import ElectiveMajorMatch from '@/views/elective/report/components/elective-major-match'
|
|
|
+import MajorMatchEvaluation from '@/views/elective/report/components/major-match-evaluation'
|
|
|
|
|
|
export default {
|
|
|
name: 'elective-test-reports',
|
|
|
extends: TestSummary, // NOTE: 这里直接继承了TestSummary页面的关键能力
|
|
|
- components: { ElectiveMajorMatch, TestReport, IndexCard }
|
|
|
+ components: { MajorMatchEvaluation, TestReport, IndexCard }
|
|
|
}
|
|
|
</script>
|
|
|
|