|
|
@@ -1,25 +1,23 @@
|
|
|
<template>
|
|
|
<div class="teacher-quiz-setting">
|
|
|
- <back-title>{{'软件工程与计算 I'}} - 习题设置</back-title>
|
|
|
+ <back-title>具体课件的习题设置</back-title>
|
|
|
<div class="sub-title">课前习题设置</div>
|
|
|
- <br>
|
|
|
- <br>
|
|
|
- <br>
|
|
|
<div class="sub-title">课后习题设置</div>
|
|
|
- <br>
|
|
|
- <br>
|
|
|
- <br>
|
|
|
- <div class="sub-title">题库管理</div>
|
|
|
- <br>
|
|
|
- <br>
|
|
|
- <br>
|
|
|
+ <c-button class="secondary" @click="handleToQuestions">题库管理</c-button>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
import BackTitle from '@/components/BackTitle'
|
|
|
+import CButton from '@/components/CButton'
|
|
|
+
|
|
|
export default {
|
|
|
- components: { BackTitle }
|
|
|
+ components: { CButton, BackTitle },
|
|
|
+ methods: {
|
|
|
+ handleToQuestions () {
|
|
|
+ this.$router.push({ name: 'questions' })
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
</script>
|
|
|
|