This commit is contained in:
wangjinlei
2022-03-20 17:26:46 +08:00
parent 0d7a114f43
commit c337259d25

View File

@@ -789,6 +789,10 @@ class Journal extends Controller {
->where('j_journal_stage.is_publish', 1)
->count();
if($count>50){//只显示前50片
$count = 50;
}
//获取作者
foreach ($list as $k => $v) {
$stage_info = $this->journal_stage_obj->where('journal_stage_id', $v['journal_stage_id'])->find();