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

AreaLogic.php 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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\shop\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. class AreaLogic extends Logic {
  27. /**
  28. * Notes:活动专区列表
  29. * @param $get
  30. * @return array
  31. * @author: cjhao 2021/4/15 16:25
  32. */
  33. public static function lists($get){
  34. $where[] = ['del','=',0];
  35. $lists = ActivityArea::where($where)
  36. ->page($get['page'],$get['limit'])
  37. ->select();
  38. $count = ActivityArea::where($where)
  39. ->page($get['page'],$get['limit'])
  40. ->count();
  41. return ['count'=>$count,'lists'=>$lists];
  42. }
  43. /**
  44. * Notes:添加活动专区
  45. * @param $post
  46. * @return int|string
  47. * @author: cjhao 2021/4/15 17:25
  48. */
  49. public static function add($post){
  50. $post['create_time'] = time();
  51. if($post['status'] == 'on'){
  52. $post['status'] = 1; //专区显示
  53. }else{
  54. $post['status'] = 0; //专区隐藏
  55. }
  56. $post['image'] = UrlServer::setFileUrl($post['image']);
  57. return ActivityArea::insert($post);
  58. }
  59. /**
  60. * Notes:获取活动专区
  61. * @param $id
  62. * @return array|\think\Model|null
  63. * @author: cjhao 2021/4/15 17:29
  64. */
  65. public static function getActivityArea($id){
  66. return ActivityArea::where(['id'=>$id,'del'=>0])->find();
  67. }
  68. /***
  69. * 获取所有活动专区
  70. * @return \think\Collection
  71. * @throws \think\db\exception\DataNotFoundException
  72. * @throws \think\db\exception\DbException
  73. * @throws \think\db\exception\ModelNotFoundException
  74. */
  75. public static function getActivityAreaAll(){
  76. return ActivityArea::where(['del'=>0])
  77. ->select();
  78. }
  79. /***
  80. * @param $post
  81. * @return ActivityArea
  82. */
  83. public static function edit($post){
  84. $post['image'] = UrlServer::setFileUrl($post['image']);
  85. return ActivityArea::update($post);
  86. }
  87. /***
  88. * @param $id
  89. * @return ActivityArea
  90. */
  91. public static function del($id){
  92. return ActivityArea::update(['del'=>1,'id'=>$id]);
  93. }
  94. }