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

BrandLogic.php 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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\goods;
  20. use app\common\basics\Logic;
  21. use app\common\model\goods\GoodsBrand;
  22. /**
  23. * 商品品牌
  24. * Class GoodsBrandLogic
  25. * @package app\admin\logic
  26. */
  27. class BrandLogic extends Logic
  28. {
  29. /**
  30. * Notes: 列表
  31. * @param $get
  32. * @author 段誉(2021/4/15 10:53)
  33. * @return array
  34. * @throws \think\db\exception\DataNotFoundException
  35. * @throws \think\db\exception\DbException
  36. * @throws \think\db\exception\ModelNotFoundException
  37. */
  38. public static function lists($get)
  39. {
  40. $where[] = ['del', '=', 0];
  41. if(isset($get['name']) && $get['name']) {
  42. $where[] = ['name','like','%'.$get['name'].'%'];
  43. }
  44. $lists = GoodsBrand::where($where)
  45. ->order('sort')
  46. ->paginate([
  47. 'list_rows'=> $get['limit'],
  48. 'page'=> $get['page'],
  49. ]);
  50. return ['count' => $lists->total(), 'lists' => $lists->getCollection()];
  51. }
  52. /**
  53. * Notes: 添加
  54. * @param $post
  55. * @return GoodsBrand|\think\Model
  56. *@author 段誉(2021/4/15 10:54)
  57. */
  58. public static function add($post)
  59. {
  60. return GoodsBrand::create([
  61. 'name' => $post['name'],
  62. 'initial' => $post['initial'],
  63. 'image' => $post['image'] ?? '',
  64. 'sort' => $post['sort'] ?? 100,
  65. 'is_show' => $post['is_show'],
  66. 'remark' => $post['remark'] ?? '',
  67. ]);
  68. }
  69. /**
  70. * Notes: 编辑
  71. * @param $post
  72. * @return GoodsBrand
  73. *@author 段誉(2021/4/15 10:54)
  74. */
  75. public static function edit($post)
  76. {
  77. return GoodsBrand::update([
  78. 'name' => $post['name'],
  79. 'initial' => $post['initial'],
  80. 'image' => $post['image'] ?? '',
  81. 'sort' => $post['sort'] ?? 100,
  82. 'is_show' => $post['is_show'],
  83. 'remark' => $post['remark'] ?? '',
  84. ], ['id' => $post['id']]);
  85. }
  86. /**
  87. * Notes: 删除
  88. * @param $id
  89. * @return GoodsBrand
  90. *@author 段誉(2021/4/15 10:54)
  91. */
  92. public static function del($id)
  93. {
  94. return GoodsBrand::update(['del' => 1], ['id' => $id]);
  95. }
  96. }