截流自动化的商城平台
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

AreaLogic.php 4.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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\admin\logic\activity_area;
  20. use app\common\basics\Logic;
  21. use app\common\server\JsonServer;
  22. use think\facade\Db;
  23. use app\common\model\activity_area\ActivityArea;
  24. use app\common\model\activity_area\ActivityAreaGoods;
  25. use app\common\server\UrlServer;
  26. /**
  27. * Class AreaLogic
  28. * @package app\admin\logic\activity_area
  29. */
  30. class AreaLogic extends Logic
  31. {
  32. /**
  33. * @notes 活动专区列表
  34. * @param $get
  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/14 9:53 上午
  41. */
  42. public static function lists($get)
  43. {
  44. $where[] = ['del', '=', 0];
  45. $lists = ActivityArea::where($where)
  46. ->page($get['page'], $get['limit'])
  47. ->select();
  48. $count = ActivityArea::where($where)
  49. ->count();
  50. return ['count' => $count, 'lists' => $lists];
  51. }
  52. /**
  53. * @notes 添加活动专区
  54. * @param $post
  55. * @return int|string
  56. * @author suny
  57. * @date 2021/7/14 9:53 上午
  58. */
  59. public static function add($post)
  60. {
  61. $post['create_time'] = time();
  62. if (isset($post['status']) && $post['status'] == 'on') {
  63. $post['status'] = 1; //专区显示
  64. } else {
  65. $post['status'] = 0; //专区隐藏
  66. }
  67. $post['image'] = UrlServer::setFileUrl($post['image']);
  68. return ActivityArea::insert($post);
  69. }
  70. /**
  71. * @notes 获取活动专区
  72. * @param $id
  73. * @return mixed
  74. * @throws \think\db\exception\DataNotFoundException
  75. * @throws \think\db\exception\DbException
  76. * @throws \think\db\exception\ModelNotFoundException
  77. * @author suny
  78. * @date 2021/7/14 9:53 上午
  79. */
  80. public static function getActivityArea($id)
  81. {
  82. $data = ActivityArea::where(['id' => $id, 'del' => 0])->find();
  83. $data = $data->getData();
  84. $data['image'] = UrlServer::getFileUrl($data['image']);
  85. return $data;
  86. }
  87. /**
  88. * @notes 获取所有活动专区
  89. * @return \think\Collection
  90. * @throws \think\db\exception\DataNotFoundException
  91. * @throws \think\db\exception\DbException
  92. * @throws \think\db\exception\ModelNotFoundException
  93. * @author suny
  94. * @date 2021/7/14 9:53 上午
  95. */
  96. public static function getActivityAreaAll()
  97. {
  98. return ActivityArea::where(['del' => 0])
  99. ->select();
  100. }
  101. /**
  102. * @notes 编辑活动专区
  103. * @param $post
  104. * @return ActivityArea
  105. * @author suny
  106. * @date 2021/7/14 9:53 上午
  107. */
  108. public static function edit($post)
  109. {
  110. $post['image'] = UrlServer::setFileUrl($post['image']);
  111. return ActivityArea::update($post);
  112. }
  113. /**
  114. * @notes 删除活动专区
  115. * @param $id
  116. * @return bool
  117. * @author suny
  118. * @date 2021/7/14 9:54 上午
  119. */
  120. public static function del($id)
  121. {
  122. $AreaResult = ActivityArea::update(['del' => 1, 'id' => $id]);
  123. $AreaGoodsResult = ActivityAreaGoods::where('activity_area_id', $id)->update(['del' => 1]);
  124. return $AreaResult;
  125. }
  126. }