截流自动化的商城平台
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.

UserLogic.php 2.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?php
  2. namespace app\shop\logic\user;
  3. use app\common\basics\Logic;
  4. use app\common\model\shop\ShopFollow;
  5. use app\common\model\order\Order;
  6. use app\common\model\user\User;
  7. use app\common\server\UrlServer;
  8. use app\common\enum\ClientEnum;
  9. class UserLogic extends Logic
  10. {
  11. public static function lists($get)
  12. {
  13. $shopUserWhere = [
  14. ['shop_id', '=', $get['shop_id']],
  15. ['status', '=', 1]
  16. ];
  17. // 根据关注时间筛选
  18. if(!empty($get['start_time'])) {
  19. $shopUserWhere[] = ['update_time', '>=', strtotime($get['start_time'])];
  20. }
  21. if(!empty($get['end_time'])) {
  22. $shopUserWhere[] = ['update_time', '<=', strtotime($get['end_time'])];
  23. }
  24. // 获取关注的用户
  25. $shopUser = ShopFollow::where($shopUserWhere)->column('user_id', 'user_id');
  26. if(!empty($get['start_time']) || !empty($get['end_time'])) { // 通过关注时间筛选,将不显示下单的用户
  27. $orderUser = [];
  28. }else{
  29. // 获取下过单的用户
  30. $orderUser = Order::where([
  31. 'shop_id' => $get['shop_id']
  32. ])->column('user_id', 'user_id');
  33. }
  34. $mergeUser = array_merge($shopUser, $orderUser);
  35. $uniqueUser = array_unique($mergeUser);
  36. $where = [
  37. ['id', 'in', $uniqueUser],
  38. [ 'del', '=', 0 ],
  39. [ 'user_delete', '=', 0 ],
  40. ];
  41. if(isset($get['keyword']) && !empty($get['keyword'])) {
  42. $where[] = [$get['keyword_type'], 'like', '%'. $get['keyword'] . '%'];
  43. }
  44. if(isset($get['client']) && $get['client'] != '') {
  45. $where[] = ['client', '=', $get['client']];
  46. }
  47. $count = User::where($where)->count();
  48. $lists = User::field('id,sn,nickname,avatar as abs_avatar,level,level as levelName,client,login_time,create_time')
  49. ->append(['client_desc'])
  50. ->where($where)
  51. ->order('id desc')
  52. ->page($get['page'],$get['limit'])
  53. ->select()
  54. ->toArray();
  55. return [
  56. 'count' => $count,
  57. 'lists' => $lists
  58. ];
  59. }
  60. public static function getInfo($id)
  61. {
  62. $user = User::field('id,sn,nickname,avatar,birthday,sex,mobile,client,create_time,login_time,user_money')
  63. ->where('user_delete', 0)
  64. ->findOrEmpty($id);
  65. if($user->isEmpty()) {
  66. return [];
  67. }
  68. $user =$user->toArray();
  69. // 头像
  70. $user['avatar'] = UrlServer::getFileUrl($user['avatar']);
  71. // 客户端
  72. $user['client_desc'] = ClientEnum::getClient($user['client']);
  73. return $user;
  74. }
  75. }