截流自动化的商城平台
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

IntegralGoodsLogic.php 2.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?php
  2. namespace app\api\logic;
  3. use app\common\basics\Logic;
  4. use app\common\enum\IntegralGoodsEnum;
  5. use app\common\model\integral\IntegralGoods;
  6. use app\common\model\user\User;
  7. use app\common\server\UrlServer;
  8. /**
  9. * 积分商品逻辑
  10. * Class IntegralGoodsLogic
  11. * @package app\api\logic
  12. */
  13. class IntegralGoodsLogic extends Logic
  14. {
  15. /**
  16. * @notes 积分商品列表
  17. * @param $user_id
  18. * @param $get
  19. * @param $page
  20. * @param $size
  21. * @return array
  22. * @throws \think\db\exception\DataNotFoundException
  23. * @throws \think\db\exception\DbException
  24. * @throws \think\db\exception\ModelNotFoundException
  25. * @author 段誉
  26. * @date 2022/2/28 11:53
  27. */
  28. public static function lists($user_id, $get, $page, $size)
  29. {
  30. $order = [];
  31. // 所需积分排序
  32. if (!empty($get['sort_by_integral'])) {
  33. $order['need_integral'] = $get['sort_by_integral'];
  34. }
  35. // 兑换量排序
  36. if (!empty($get['sort_by_sales'])) {
  37. $order['sales'] = $get['sort_by_sales'];
  38. }
  39. // 最新排序
  40. if (!empty($get['sort_by_new'])) {
  41. $order['id'] = $get['sort_by_new'];
  42. }
  43. $where = [
  44. ['del', '=', IntegralGoodsEnum::DEL_NORMAL], // 未删除
  45. ['status', '=', IntegralGoodsEnum::STATUS_SHELVES] // 上架中
  46. ];
  47. $field = ['id', 'image', 'name', 'need_integral', 'need_money', 'exchange_way'];
  48. $count = IntegralGoods::where($where)->count('id');
  49. $lists = IntegralGoods::where($where)->order(['sort' => 'desc','id'=>'desc'])->field($field)
  50. ->order($order)->page($page, $size)->select();
  51. foreach ($lists as $item) {
  52. $item['image'] = UrlServer::getFileUrl($item['image']);
  53. }
  54. // 当前积分
  55. $integral = User::field('user_integral')->findOrEmpty($user_id);
  56. return [
  57. 'integral' => $integral['user_integral'] ?? 0,
  58. 'goods' => [
  59. 'page_no' => $page,
  60. 'page_size' => $size,
  61. 'count' => $count,
  62. 'more' => is_more($count, $page, $size),
  63. 'lists' => $lists
  64. ],
  65. ];
  66. }
  67. /**
  68. * @notes 商品详情
  69. * @param $goods_id
  70. * @return array
  71. * @author 段誉
  72. * @date 2022/2/28 15:14
  73. */
  74. public static function detail($goods_id)
  75. {
  76. $detail = IntegralGoods::where(['id' => $goods_id])->findOrEmpty();
  77. $detail['image'] = UrlServer::getFileUrl($detail['image']);
  78. return $detail->toArray();
  79. }
  80. }