截流自动化的商城平台
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

ActivityAreaLogic.php 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\api\logic;
  20. use app\common\model\goods\Goods;
  21. use app\common\model\activity_area\ActivityAreaGoods;
  22. use app\common\basics\Logic;
  23. use think\Db;
  24. /**
  25. * Class ActivityAreaLogic
  26. * @package app\api\logic
  27. */
  28. class ActivityAreaLogic extends Logic
  29. {
  30. /**
  31. * @notes 活动专区商品列表
  32. * @param $id
  33. * @param $page
  34. * @param $size
  35. * @return array
  36. * @throws \think\db\exception\DataNotFoundException
  37. * @throws \think\db\exception\DbException
  38. * @throws \think\db\exception\ModelNotFoundException
  39. * @author suny
  40. * @date 2021/7/13 6:04 下午
  41. */
  42. public static function activityGoodsList($id, $page, $size)
  43. {
  44. $where[] = ['AG.del', '=', 0];
  45. $where[] = ['G.del', '=', 0];
  46. $where[] = ['G.status', '=', 1];
  47. $where[] = ['AG.audit_status', '=', 1];
  48. $where[] = ['AG.activity_area_id', '=', $id];
  49. $goods = new ActivityAreaGoods();
  50. $count = $goods->alias('AG')
  51. ->join('goods G', 'G.id = AG.goods_id')
  52. ->where($where)
  53. ->count();
  54. $list = $goods->alias('AG')
  55. ->join('goods G', 'G.id = AG.goods_id')
  56. ->where($where)
  57. ->field('AG.id as agid,G.id,G.name,G.image,G.min_price as price,
  58. (G.clicks + G.clicks_virtual) as views,G.market_price,AG.activity_area_id,(G.sales_actual + G.sales_virtual) as sales_total')
  59. ->page($page,$size)
  60. ->select();
  61. $more = is_more($count, $page, $size); //是否有下一页
  62. $data = [
  63. 'list' => $list,
  64. 'page_no' => $page,
  65. 'page_size' => $size,
  66. 'count' => $count,
  67. 'more' => $more
  68. ];
  69. return $data;
  70. }
  71. }