7 changed files with 103 additions and 94 deletions
-
73src/App.vue
-
22src/components/Tabs/TabNavigation.vue
-
3src/main.js
-
19src/views/QuestionManage.vue
-
18src/views/UserStatistics.vue
-
18src/views/WrongQuestion.vue
@ -1,8 +1,9 @@ |
|||||
import Vue from 'vue' |
import Vue from 'vue' |
||||
import App from './App.vue' |
import App from './App.vue' |
||||
|
|
||||
|
import router from "@/router"; |
||||
Vue.config.productionTip = false |
Vue.config.productionTip = false |
||||
|
|
||||
new Vue({ |
new Vue({ |
||||
|
router, |
||||
render: h => h(App), |
render: h => h(App), |
||||
}).$mount('#app') |
}).$mount('#app') |
||||
@ -0,0 +1,19 @@ |
|||||
|
<template> |
||||
|
<div class="question-management"> |
||||
|
<QuestionSearch /> |
||||
|
<QuestionTable /> |
||||
|
</div> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
import QuestionSearch from '@/components/Question/QuestionSearch.vue' |
||||
|
import QuestionTable from '@/components/Question/QuestionTable.vue' |
||||
|
|
||||
|
export default { |
||||
|
name: 'QuestionManage', |
||||
|
components: { |
||||
|
QuestionSearch, |
||||
|
QuestionTable |
||||
|
} |
||||
|
} |
||||
|
</script> |
||||
@ -0,0 +1,18 @@ |
|||||
|
<template> |
||||
|
<div class="user-statistics"> |
||||
|
<p>用户统计数据模块</p> |
||||
|
<p>当前模块内容暂未开发</p> |
||||
|
</div> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
export default { |
||||
|
name: 'UserStatistics' |
||||
|
} |
||||
|
</script> |
||||
|
|
||||
|
<style scoped> |
||||
|
.user-statistics { |
||||
|
padding: 20px; |
||||
|
} |
||||
|
</style> |
||||
@ -0,0 +1,18 @@ |
|||||
|
<template> |
||||
|
<div class="wrong-question"> |
||||
|
<p>错题统计模块</p> |
||||
|
<p>当前模块内容暂未开发</p> |
||||
|
</div> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
export default { |
||||
|
name: 'WrongQuestion' |
||||
|
} |
||||
|
</script> |
||||
|
|
||||
|
<style scoped> |
||||
|
.wrong-question { |
||||
|
padding: 20px; |
||||
|
} |
||||
|
</style> |
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue