Commit 4952fc5a94bb3e7ff54b9442c3b078e354904a81
1 parent
172a152f
王哥牛批
Showing
1 changed file
with
2 additions
and
3 deletions
src/views/TestPaper/ManualTestPaper.vue
| @@ -5,7 +5,6 @@ | @@ -5,7 +5,6 @@ | ||
| 5 | <div class="grid-content bg-purple"> | 5 | <div class="grid-content bg-purple"> |
| 6 | <el-tabs | 6 | <el-tabs |
| 7 | v-model="activeTab" | 7 | v-model="activeTab" |
| 8 | - @tab-click="handleTabsClick" | ||
| 9 | style="padding: 0 20px" | 8 | style="padding: 0 20px" |
| 10 | :stretch="true" | 9 | :stretch="true" |
| 11 | > | 10 | > |
| @@ -120,7 +119,7 @@ export default { | @@ -120,7 +119,7 @@ export default { | ||
| 120 | sort: "id", | 119 | sort: "id", |
| 121 | sortOrder: 1, | 120 | sortOrder: 1, |
| 122 | keyword: "", | 121 | keyword: "", |
| 123 | - QuestionClassId: 0, | 122 | + QuestionClassId: 6, |
| 124 | status: 1, | 123 | status: 1, |
| 125 | }, | 124 | }, |
| 126 | contentHeight: 0, | 125 | contentHeight: 0, |
| @@ -202,7 +201,7 @@ export default { | @@ -202,7 +201,7 @@ export default { | ||
| 202 | methods: { | 201 | methods: { |
| 203 | search() { | 202 | search() { |
| 204 | this.parameter.pageIndex = 1; | 203 | this.parameter.pageIndex = 1; |
| 205 | - this.parameter.QuestionClassId = this.activeTab; | 204 | + this.parameter.QuestionClassId = Number(this.activeTab); |
| 206 | this.GetList(); | 205 | this.GetList(); |
| 207 | }, | 206 | }, |
| 208 | SubmitTestPaper() { | 207 | SubmitTestPaper() { |