截流自动化的商城平台
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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