48 lines
1.1 KiB
PHP
48 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace app\api\controller;
|
|
|
|
use app\api\BaseController;
|
|
use app\api\middleware\Auth;
|
|
use think\facade\Db;
|
|
|
|
|
|
/**
|
|
* 教育培训
|
|
*/
|
|
class Education extends BaseController
|
|
{
|
|
const ARTICLE_EDUCATION_LIVE = 'fa_article_education_live';
|
|
const TAG = 'fa_tag';
|
|
|
|
/**
|
|
* 控制器中间件 [不需要鉴权]
|
|
* @var array
|
|
*/
|
|
protected $middleware = [
|
|
Auth::class => ['except' => ['Index'] ]
|
|
];
|
|
|
|
protected function getData($cid){
|
|
$where = ['category_id'=>$cid];
|
|
$list = Db::table('fa_article')->withAttr('lesson',
|
|
function($value, $data){
|
|
return Db::table(self::ARTICLE_EDUCATION_LIVE)->field('lesson_period,tag_ids as series_num')->where('article_id', $data['id'])->find();
|
|
}
|
|
)
|
|
->where($where)
|
|
->page(1)
|
|
->limit(10)
|
|
->order('id desc')
|
|
->select();
|
|
|
|
return $list;
|
|
}
|
|
|
|
public function Index(){
|
|
$data = $this->getData(370);
|
|
$this->apiSuccess('ok', ['list' => $data]);
|
|
}
|
|
|
|
}
|