From 75271baf2b4dba13087674f020afbc7b08a83482 Mon Sep 17 00:00:00 2001
From: zhouwx <1175765986@qq.com>
Date: 星期三, 31 七月 2024 16:26:20 +0800
Subject: [PATCH] 修改

---
 src/views/onlineEducation/courseSupervision/index.vue |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/views/onlineEducation/courseSupervision/index.vue b/src/views/onlineEducation/courseSupervision/index.vue
index 63d6bc2..36e2f2f 100644
--- a/src/views/onlineEducation/courseSupervision/index.vue
+++ b/src/views/onlineEducation/courseSupervision/index.vue
@@ -25,7 +25,7 @@
     </div>
     <el-table v-loading="loading" :data="expertList" style="margin-top: 10px">
       <el-table-column label="课程标识" align="center" prop="courseCode" />
-      <el-table-column label="所属机构" align="center" prop="trainOrgName" />
+      <el-table-column label="上报平台" align="center" prop="institutionName" />
       <el-table-column label="课程名称" align="center" prop="courseName" />
       <el-table-column label="课程章节数" align="center" prop="courseNum" >
         <template #default="scope">
@@ -67,7 +67,7 @@
     <pagination
       v-show="total>0"
       :total="total"
-      :page.sync="queryParams.pageIndex"
+      :page.sync="queryParams.pageNum"
       :limit.sync="queryParams.pageSize"
       @pagination="getList"
     />
@@ -97,7 +97,7 @@
       platformList: [],
       expertList: [],
       queryParams: {
-        pageIndex: 1,
+        pageNum: 1,
         pageSize: 10,
         institutionId: ''
       },
@@ -143,17 +143,17 @@
     },
     resetQuery(){
       this.queryParams = {
-        pageIndex: 1,
+        pageNum: 1,
         pageSize: 10,
         institutionId: ''
       }
       this.getList();
     },
     handleViewCourse(data){
-      this.$refs.courseDialogRef.openDialog(data);
+      this.$refs.courseDialogRef.openDialog(data,'course');
     },
     openStudent(data) {
-      // this.$refs.studentDialog.openDialog(data);
+      this.$refs.studentDialog.openDialog(data,'course');
     },
     check(val){
       this.$confirm('此操作将审核该条数据, 是否继续?', '提示', {

--
Gitblit v1.9.2