Browse Source

Merge branch 'liuzj-weixin-tishen-dev' into test

liuzejian 1 year ago
parent
commit
d3e92bab78

+ 6 - 0
modules/Video/Http/Controllers/VideoSeriesWechatCheckController.php

@@ -88,6 +88,12 @@ class VideoSeriesWechatCheckController extends CatchController
         return $link;
     }
 
+    /**
+     * 获取审核证据
+     * todo:fix
+     * @param Request $request
+     * @throws \Illuminate\Validation\ValidationException
+     */
     public function listEvidence(Request $request) {
         $this->validate($request, [
             'series_id' => 'required'

+ 1 - 1
modules/Video/Http/Controllers/WechatCheckController.php

@@ -106,7 +106,7 @@ class WechatCheckController extends CatchController
             })->select('check.id', 'videos.name', 'videos.note', 'videos.total_episode_num',
                 'videos.cover_image','check.status','check.producer',
             'check.playwright', 'check.production_license_img', 'check.authorized_img', 'check.apply_at',
-            'check.check_at', 'check.check_reason', 'check.registration_number')
+            'check.check_at', 'check.check_reason', 'check.registration_number', 'check.video_id')
             ->orderBy('check.id','desc')
             ->paginate($request->input('limit', 20));