WIN-2308041133\Administrator 1 년 전
부모
커밋
f939981304
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      application/api/controller/Platform.php

+ 2 - 2
application/api/controller/Platform.php

@@ -84,12 +84,12 @@ class Platform extends Api
         list( $offset, $limit) = $this->buildparams();
         $config = $this->config();
         $list = model('VideoPlatformRecord')
-            ->with('platform,video')
+            ->with('platform,videolist')
             ->where($map)
             ->limit($offset, $limit)
             ->select();
         $total = model('VideoPlatformRecord')
-            ->with('platform,video')
+            ->with('platform,videolist')
             ->where($map)
             ->count();
         $data = ['config' => $config, 'doctor' => $list,'total'=>$total];