Browse Source

删除了错误的wrongquestion.vue

chenzhen/feature-20251107115823-股票知识测评
chenzhen 2 months ago
parent
commit
2c4ef4ccc0
  1. 49
      src/views/WrongQuestion.vue

49
src/views/WrongQuestion.vue

@ -1,49 +0,0 @@
<!-- src/views/WrongQuestion.vue -->
<template>
<div class="wrong-question">
<!-- 搜索区域组件 -->
<WrongQuestionSearch
ref="wrongQuestionSearch"
@search="handleSearch"
/>
<!-- 错题表格组件 -->
<WrongQuestionTable
ref="wrongQuestionTable"
@view-user="viewUser"
@view-question="viewQuestion"
/>
</div>
</template>
<script>
import WrongQuestionSearch from '@/components/WrongQuestion/WrongQuestionSearch.vue'
import WrongQuestionTable from '@/components/WrongQuestion/WrongQuestionTable.vue'
export default {
name: 'WrongQuestion',
components: {
WrongQuestionSearch,
WrongQuestionTable
},
methods: {
handleSearch(filters) {
//
this.$refs.wrongQuestionTable.setData(data);
},
viewUser(item) {
console.log('查看出错用户:', item)
},
viewQuestion(item) {
console.log('查看题目:', item)
}
}
}
</script>
<style scoped>
.wrong-question {
padding: 20px;
}
</style>
Loading…
Cancel
Save