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 | 5 | <div class="grid-content bg-purple"> |
| 6 | 6 | <el-tabs |
| 7 | 7 | v-model="activeTab" |
| 8 | - @tab-click="handleTabsClick" | |
| 9 | 8 | style="padding: 0 20px" |
| 10 | 9 | :stretch="true" |
| 11 | 10 | > |
| ... | ... | @@ -120,7 +119,7 @@ export default { |
| 120 | 119 | sort: "id", |
| 121 | 120 | sortOrder: 1, |
| 122 | 121 | keyword: "", |
| 123 | - QuestionClassId: 0, | |
| 122 | + QuestionClassId: 6, | |
| 124 | 123 | status: 1, |
| 125 | 124 | }, |
| 126 | 125 | contentHeight: 0, |
| ... | ... | @@ -202,7 +201,7 @@ export default { |
| 202 | 201 | methods: { |
| 203 | 202 | search() { |
| 204 | 203 | this.parameter.pageIndex = 1; |
| 205 | - this.parameter.QuestionClassId = this.activeTab; | |
| 204 | + this.parameter.QuestionClassId = Number(this.activeTab); | |
| 206 | 205 | this.GetList(); |
| 207 | 206 | }, |
| 208 | 207 | SubmitTestPaper() { | ... | ... |