where('type', 1); $model = $model->order('id desc'); if (!empty($where)) { $data = ($data = $model->page((int)$where['page'], (int)$where['limit'])->select()) && count($data) ? $data->toArray() : []; foreach ($data as &$item) { $item['send_time'] = date('Y-m-d H:i:s', $item['send_time']); } $count = self::count(); return compact('data', 'count'); } } /** * 获取用户通知 * @param array $where * @return array */ public static function getUserList($where = array()) { $model = new self; if (isset($where['title']) && $where['title'] != '') $model = $model->where('title', 'LIKE', "%" . $where['title'] . "%"); $model = $model->where('type', 2); $model = $model->where('is_send', 0); $model = $model->order('id desc'); return self::page($model, $where); } }