Merge remote-tracking branch 'origin/main'

This commit is contained in:
2026-08-26 10:07:11 +08:00
+5 -12
View File
@@ -63,16 +63,9 @@
</el-tabs> </el-tabs>
<div class="pagination"> <div class="pagination">
<el-pagination <el-pagination :current-page="pagination.pageNum" :page-size="pagination.pageSize" :total="pagination.total"
:current-page="pagination.pageNum" :page-sizes="[10, 20, 50, 100]" layout="total, sizes, prev, pager, next, jumper" background
:page-size="pagination.pageSize" @size-change="handleSizeChange" @current-change="handlePageChange" />
:total="pagination.total"
:page-sizes="[10, 20, 50, 100]"
layout="total, sizes, prev, pager, next, jumper"
background
@size-change="handleSizeChange"
@current-change="handlePageChange"
/>
</div> </div>
</el-card> </el-card>
</div> </div>
@@ -195,7 +188,7 @@ export default {
exportStudentGrades(xybh).then(res => { exportStudentGrades(xybh).then(res => {
this.downloadBlob(res, `课程成绩_${xybh}.xls`) this.downloadBlob(res, `课程成绩_${xybh}.xls`)
this.$message.success('课程成绩导出成功') this.$message.success('课程成绩导出成功')
}).catch(() => {}).finally(() => { }).catch(() => { }).finally(() => {
this.exportLoading = false this.exportLoading = false
}) })
}, },
@@ -208,7 +201,7 @@ export default {
exportStudentProcessGrades(xybh).then(res => { exportStudentProcessGrades(xybh).then(res => {
this.downloadBlob(res, `课程过程成绩_${xybh}.xls`) this.downloadBlob(res, `课程过程成绩_${xybh}.xls`)
this.$message.success('课程过程成绩导出成功') this.$message.success('课程过程成绩导出成功')
}).catch(() => {}).finally(() => { }).catch(() => { }).finally(() => {
this.exportLoading = false this.exportLoading = false
}) })
} }