UserNotice.php 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\wap\model\user;
  12. use app\admin\model\user\UserNoticeSee;
  13. use traits\ModelTrait;
  14. use basic\ModelBasic;
  15. /**
  16. * 用户通知 model
  17. * Class UserNotice
  18. * @package app\admin\model\user
  19. */
  20. class UserNotice extends ModelBasic
  21. {
  22. use ModelTrait;
  23. public static function getNotice($uid){
  24. $count_notice = self::where('uid','like',"%,$uid,%")->where("is_send",1)->count();
  25. $see_notice = UserNoticeSee::where("uid",$uid)->count();
  26. return $count_notice-$see_notice;
  27. }
  28. /**
  29. * @return array
  30. */
  31. public static function getNoticeList($uid,$page,$limit = 8){
  32. //定义分页信息
  33. $count = self::where('uid','like',"%,$uid,%")->count();
  34. $data["lastpage"] = ceil($count/$limit) <= ($page+1) ? 1 : 0;
  35. $where['uid'] = array("like","%,$uid,%");
  36. $where['is_send'] = 1;
  37. $list = self::where($where)->field('id,user,title,content,add_time')->order("add_time desc")->limit($page*$limit,$limit)->select()->toArray();
  38. foreach ($list as $key => $value) {
  39. $list[$key]["add_time"] = date("Y-m-d H:i:s",$value["add_time"]);
  40. $list[$key]["is_see"] = UserNoticeSee::where("uid",$uid)->where("nid",$value["id"])->count() > 0 ? 1 : 0;
  41. }
  42. $data["list"] = $list;
  43. return $data;
  44. }
  45. /**
  46. * @return array
  47. */
  48. public static function seeNotice($uid,$nid){
  49. if(UserNoticeSee::where("uid",$uid)->where("nid",$nid)->count() <= 0){
  50. $data["nid"] = $nid;
  51. $data["uid"] = $uid;
  52. $data["add_time"] = time();
  53. UserNoticeSee::set($data);
  54. }
  55. }
  56. }