diff --git a/src/api/index.js b/src/api/index.js
index a41d0d9..55b10aa 100644
--- a/src/api/index.js
+++ b/src/api/index.js
@@ -70,6 +70,7 @@ export default {
myClass: `${host}occupationlab/achievement/myClass`, // 教师端:我的班级
deleteReportById: `${host}occupationlab/achievement/deleteReportById`, // 批量删除成绩管理中的项目/批量删除成绩管理中的考核
experimentOverview: `${host}occupationlab/achievement/reportDetail`, // 查看实验报告
+ schoolCourseByAchievement: `${host}nakadai/nakadai/curriculum/schoolCourseByAchievement`, // 获取学校购买订单后的课程
// 项目管理
getSystemIdBySchool: `${host}occupationlab/projectManage/getSystemIdBySchool`, // 获取学校下拥有的系统
diff --git a/src/pages/achievement/list/index.vue b/src/pages/achievement/list/index.vue
index 6934b73..1a39b02 100644
--- a/src/pages/achievement/list/index.vue
+++ b/src/pages/achievement/list/index.vue
@@ -187,7 +187,7 @@ export default {
this.month = '6'
},
getschoolCourse() { // 获取课程下拉框数据
- this.$get(this.api.schoolCourse).then(res => {
+ this.$get(this.api.schoolCourseByAchievement).then(res => {
if (res.data && res.data.length) {
this.curriculumList = res.data;
this.getData();
diff --git a/src/pages/match/list/index.vue b/src/pages/match/list/index.vue
index b9d89aa..46a0f59 100644
--- a/src/pages/match/list/index.vue
+++ b/src/pages/match/list/index.vue
@@ -52,7 +52,11 @@
-
+
+
+ {{scope.row.founder || '系统默认管理员'}}
+
+
管理