From 708919ee2ed151563adfaef1336efd1741541dc3 Mon Sep 17 00:00:00 2001
From: e <2432808546@qq.com>
Date: Fri, 3 Dec 2021 10:10:06 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/index.js | 4 ++--
src/pages/ass/list/index.vue | 14 +++++++-------
src/pages/record/details/index.vue | 4 ++--
src/pages/record/list/index.vue | 25 +++++++++++++++++++++----
4 files changed, 32 insertions(+), 15 deletions(-)
diff --git a/src/api/index.js b/src/api/index.js
index a3c42b5..0aa8ab6 100644
--- a/src/api/index.js
+++ b/src/api/index.js
@@ -36,8 +36,8 @@ export default {
experimentOverview: `${host}occupationlab/achievement/experimentOverview`, //实验概览
queryAssessmentByStudent: `${host}occupationlab/achievement/queryAssessmentByStudent`, //学生端考核成绩
queryPracticeByStudent: `${host}occupationlab/achievement/queryPracticeByStudent`, //学生端练习成绩
- exportAssessmentInfo: `${host}occupationlab/achievement/exportAssessmentInfo`, // 批量导出考核成绩
- exportPracticeInfo: `${host}occupationlab/achievement/exportPracticeInfo`, // 批量导出练习成绩
+ exportAssessmentByStudent: `${host}occupationlab/achievement/exportAssessmentByStudent`, // 批量导出考核成绩
+ exportPracticeByStudent: `${host}occupationlab/achievement/exportPracticeByStudent`, // 批量导出练习成绩
practiceByStudentDetail: `${host}occupationlab/achievement/practiceByStudentDetail`, // 学生端练习实验情况
exportPracticeByStudentDetail: `${host}occupationlab/achievement/exportPracticeByStudentDetail`, // 导出学生端练习实验情况
reportDetail: `${host}occupationlab/achievement/reportDetail`, // 成绩报告详情
diff --git a/src/pages/ass/list/index.vue b/src/pages/ass/list/index.vue
index 56556bb..5d9fb7c 100644
--- a/src/pages/ass/list/index.vue
+++ b/src/pages/ass/list/index.vue
@@ -68,8 +68,8 @@
{{ scope.$index + (page - 1) * pageSize + 1 }}
-
-
+
+
@@ -94,12 +94,12 @@
- 未参加
- 未参加
+ 进入
- 已提交
- 已提交
+ 查看成绩
@@ -396,7 +396,7 @@ export default {
}
},
show(row) { // 查看成绩
- this.$router.push(`/record/list?id=${row.id}&recordId=${row.recordid}&reportId=${row.reportId}`);
+ this.$router.push(`/record/show?id=${row.id}&recordId=${row.recordid}&reportId=${row.reportId}`);
},
saveIc() {
if (!this.invitationCode) return util.warningMsg("请输入邀请码");
diff --git a/src/pages/record/details/index.vue b/src/pages/record/details/index.vue
index a7689e0..685ee97 100644
--- a/src/pages/record/details/index.vue
+++ b/src/pages/record/details/index.vue
@@ -102,7 +102,7 @@ export default {
},
responseType: 'blob'
}).then((res) => {
- util.downloadFileDirect(`按数据库统计使用概况导出.xls`,new Blob([res.data]))
+ util.downloadFileDirect(`学生练习实验情况.xls`,new Blob([res.data]))
}).catch(res => {})
// location.href = this.$get(`${this.api.exportPracticeByStudentDetail}?projectId=${this.projectId}&token=${this.token}&ids=${ids.toString()}`);
} else {
@@ -112,7 +112,7 @@ export default {
},
responseType: 'blob'
}).then((res) => {
- util.downloadFileDirect(`按数据库统计使用概况导出.xls`,new Blob([res.data]))
+ util.downloadFileDirect(`学生练习实验情况.xls`,new Blob([res.data]))
}).catch(res => {})
// location.href = `${this.api.exportPracticeByStudentDetail}?projectId=${this.projectId}&token=${this.token}&ids=`;
}
diff --git a/src/pages/record/list/index.vue b/src/pages/record/list/index.vue
index b642715..fb99970 100644
--- a/src/pages/record/list/index.vue
+++ b/src/pages/record/list/index.vue
@@ -62,7 +62,9 @@
import { mapState, mapActions } from "vuex";
import practice from "./practice";
import ass from "./ass";
-
+import axios from 'axios';
+import Setting from "@/setting";
+import util from "@/libs/util";
export default {
components: {
practice,
@@ -77,7 +79,8 @@ export default {
tabList: {
practice: "练习",
ass: "考核"
- }
+ },
+ token:util.local.get(Setting.tokenKey),
};
},
computed: {
@@ -113,10 +116,24 @@ export default {
exportData() { // 导出
if (this.active == "practice") {
// 练习
- location.href = `${this.api.exportPracticeInfo}?ids=`;
+ axios.get(`${this.api.exportPracticeByStudent}?curriculumId=${this.curriculumId}`,{
+ headers: {
+ token: this.token
+ },
+ responseType: 'blob'
+ }).then((res) => {
+ util.downloadFileDirect(`学生练习成绩.xls`,new Blob([res.data]))
+ }).catch(res => {})
} else {
// 考核
- location.href = `${this.api.exportAssessmentInfo}?ids=`;
+ axios.get(`${this.api.exportAssessmentByStudent}?curriculumId=${this.curriculumId}`,{
+ headers: {
+ token: this.token
+ },
+ responseType: 'blob'
+ }).then((res) => {
+ util.downloadFileDirect(`学生考核成绩.xls`,new Blob([res.data]))
+ }).catch(res => {})
}
},
tabChange(index) {