截流自动化的商城平台
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

ShopFollowLogic.php 2.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <?php
  2. namespace app\api\logic;
  3. use app\common\basics\Logic;
  4. use app\common\model\shop\ShopFollow;
  5. use app\common\model\shop\ShopCategory;
  6. use app\common\server\UrlServer;
  7. class ShopFollowLogic extends Logic
  8. {
  9. /**
  10. * 店铺: 关注/取消关注
  11. */
  12. public static function changeStatus($shopId, $userId)
  13. {
  14. $data = ShopFollow::where(['shop_id'=>$shopId,'user_id'=>$userId])->findOrEmpty();
  15. if($data->isEmpty()) { // 没数据,首次关注
  16. $insertData = [
  17. 'shop_id' => $shopId,
  18. 'user_id' => $userId,
  19. 'status' => 1,
  20. 'create_time' => time()
  21. ];
  22. $result = ShopFollow::create($insertData);
  23. return [
  24. 'result' => $result,
  25. 'msg' => '关注成功'
  26. ];
  27. }else{ // 关注过,修改关注状态
  28. $newStatus = $data['status'] ? 0 : 1;
  29. $msg = $newStatus ? '关注成功' : '取消关注';
  30. $updateData = [
  31. 'id' => $data['id'],
  32. 'status' => $newStatus,
  33. 'update_time' => time()
  34. ];
  35. $result = ShopFollow::update($updateData);
  36. return [
  37. 'result' => $result,
  38. 'msg' => $msg
  39. ];
  40. }
  41. }
  42. public static function lists($get)
  43. {
  44. $where = [
  45. 'sf.user_id' => $get['user_id'],
  46. 'sf.status' => 1
  47. ];
  48. $lists = ShopFollow::alias('sf')
  49. ->field('s.id,s.name,s.cid,s.type,s.logo,s.score')
  50. ->leftJoin('shop s', 's.id=sf.shop_id')
  51. ->where($where)
  52. ->order('sf.update_time', 'desc')
  53. ->page($get['page_no'], $get['page_size'])
  54. ->select()
  55. ->toArray();
  56. $count = ShopFollow::alias('sf')->where($where)->count();
  57. $typeDesc = [1=>'官方自营', 2=>'入驻商家'];
  58. foreach($lists as &$item) {
  59. // 商家类型
  60. $item['type_desc'] = $typeDesc[$item['type']];
  61. // 主营类目
  62. $item['cid_desc'] = ShopCategory::where('id', $item['cid'])->value('name');
  63. // logo
  64. $item['logo'] = UrlServer::getFileUrl($item['logo']);
  65. }
  66. $data = [
  67. 'lists' => $lists,
  68. 'count' => $count,
  69. 'more' => is_more($count, $get['page_no'], $get['page_size']),
  70. 'page_no' => $get['page_no'],
  71. 'page_size' => $get['page_size'],
  72. ];
  73. return $data;
  74. }
  75. }