1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?php
- namespace app\admin\model\user;
- use crmeb\traits\ModelTrait;
- use crmeb\basic\BaseModel;
- class UserNotice extends BaseModel
- {
-
- protected $pk = 'id';
-
- protected $name = 'user_notice';
- use ModelTrait;
-
- public static function getList($where = [])
- {
- $model = new self;
- $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) {
- if ($item["uid"] != '') {
- $uids = explode(",", $item["uid"]);
- array_splice($uids, 0, 1);
- array_splice($uids, count($uids) - 1, 1);
- $item["uid"] = $uids;
- }
- $item['send_time'] = date('Y-m-d H:i:s', $item['send_time']);
- }
- $count = self::count();
- return compact('data', 'count');
- }
- return self::page($model, function ($item, $key) {
- if ($item["uid"] != '') {
- $uids = explode(",", $item["uid"]);
- array_splice($uids, 0, 1);
- array_splice($uids, count($uids) - 1, 1);
- $item["uid"] = $uids;
- }
- });
- }
-
- 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->order('id desc');
- return self::page($model, $where);
- }
- }
|