You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
2.6 KiB
74 lines
2.6 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 天诚科技 [ 刘海东 17600099397赋能开发者,助力企业发展 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2016~2020 https://www.tczxkj.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed 该系统并不是自由软件,未经许可不能去掉相关版权
|
|
// +----------------------------------------------------------------------
|
|
// | Author:甘肃天诚志信电子商务有限公司 刘海东 联系电话维系17600099397
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
|
namespace app\admin\model\user;
|
|
|
|
use app\admin\model\wechat\WechatUser;
|
|
use app\admin\model\user\UserNoticeSee;
|
|
use traits\ModelTrait;
|
|
use basic\ModelBasic;
|
|
|
|
/**
|
|
* 用户通知 model
|
|
* Class UserNotice
|
|
* @package app\admin\model\user
|
|
*/
|
|
class UserNotice extends ModelBasic
|
|
{
|
|
use ModelTrait;
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
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;
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* 获取用户通知
|
|
* @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);
|
|
}
|
|
}
|
|
|