ZxcZxc123 1 年之前
父節點
當前提交
30f6c78ed6
共有 2 個文件被更改,包括 15 次插入32 次删除
  1. 14 31
      app/api/controller/Education.php
  2. 1 1
      app/api/route/education.php

+ 14 - 31
app/api/controller/Education.php

@@ -122,41 +122,24 @@ class Education
     }
     }
 
 
 
 
-    /**
+    public function getCourseList($gr_id)
-     * 获取课程详细信息
+    {
-     * @param $gr_id
+        // 根据gr_id获取课程目录
-     * @return array
+        $courseList = EducationCourse::where('course_status', 1)
-     * @throws \think\db\exception\DataNotFoundException
+            ->where('gr_id', $gr_id)
-     * @throws \think\db\exception\DbException
-     * @throws \think\db\exception\ModelNotFoundException
-     */
-    public function getCourseInfo($gr_id) {
-        $courses = DB::table('table_education_course')
-            ->where('course_status', 1)
-            ->whereIn('gr_id', (array) $gr_id)
             ->where('course_audit', 1)
             ->where('course_audit', 1)
-            ->select()
+            ->select();
-            ->toArray();
+
-        $course_list = [];
+        // 返回课程目录给前端
-        foreach ($courses as $course) {
+        return json([
-            $course_info = [
+            'code' => 0,
-                'course_id' => $course->course_id,
+            'msg' => 'success',
-                'course_name' => $course->course_name,
+            'data' => $courseList
-                'course_cover' => $course->course_cover,
+        ]);
-                // 其他课程相关信息
-            ];
-            $course_list[] = $course_info;
-        }
-        $count_and_all = $this->getCountAndAlll($gr_id);
-        $result = [
-            'course_list' => $course_list,
-            'count' => $count_and_all[0]['count'],
-            'alll' => $count_and_all[0]['alll']
-        ];
-        return $result;
     }
     }
 
 
 
 
 
 
 
 
+
 }
 }

+ 1 - 1
app/api/route/education.php

@@ -19,7 +19,7 @@ Route::group('Education', function () {
     //获取轮播列表
     //获取轮播列表
     Route::rule('recommend','Education/recommend');
     Route::rule('recommend','Education/recommend');
     //获取课程详情
     //获取课程详情
-    Route::rule('getCourseInfo','Education/getCourseInfo');
+    Route::rule('getCourseList','Education/getCourseList');