修改教师端我的授课记录查询和导出

This commit is contained in:
sunhonglai
2025-04-29 11:46:40 +08:00
parent 9a6727e52f
commit a3c85cbd19

View File

@@ -202,9 +202,9 @@ export default {
apiCourse.getListByToken(req).then(res => {
if (res.status == 200) {
this.pageData = res.data.records;
this.pageInfo.pageSize = res.data.size;
this.pageInfo.total = res.data.pages;
this.pageInfo.page = res.data.current;
this.pageInfo.pageSize = Number(res.data.size);
this.pageInfo.total = Number(res.data.pages);
this.pageInfo.page = Number(res.data.current);
} else {
this.$message({
type: 'error',