<?php namespace app\models\article; use crmeb\traits\ModelTrait; use crmeb\basic\BaseModel; class ArticleModel extends BaseModel { /** * 数据表主键 * @var string */ protected $pk = 'id'; /** * 模型名称 * @var string */ protected $name = 'article'; use ModelTrait; public static function systemPage($where) { $model = new self; if (isset($where['title']) && $where['title'] !== '') $model = $model->where('title', 'LIKE', "%$where[title]%"); if (isset($where['is_show']) && $where['is_show'] !== '') $model = $model->where('is_show', $where['is_show']); $model = $model->where('is_del', 0); $model = $model->order('sort desc,id desc'); $count = $model->count(); $list = $model->page((int)$where['page'], (int)$where['limit'])->select()->each(function ($item) { $item['_add_time'] = date('Y-m-d H:i:s', $item['add_time']); })->toArray(); return compact('count', 'list'); } /** * 详情 */ public static function getOne($id) { $info = self::where('is_del', 0)->find($id); return $info; } }