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

CategoryLogic.php 6.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  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\model\goods\GoodsCategory as GoodsCategoryModel;
  21. use app\common\server\UrlServer;
  22. /**
  23. * 平台商品分类 逻辑层
  24. * Class CategoryLogic
  25. * @package app\admin\logic\goods
  26. */
  27. class CategoryLogic
  28. {
  29. /**
  30. * 获取分类列表(所有)
  31. */
  32. public static function lists()
  33. {
  34. $lists = GoodsCategoryModel::field('id,name,pid,is_show,level,image, bg_image, sort')
  35. ->where('del', 0)
  36. ->order('sort', 'asc')
  37. ->select()
  38. ->toArray();
  39. foreach ($lists as $k => $item){
  40. $lists[$k]['image'] = $lists[$k]['image'] ? UrlServer::getFileUrl($item['image']) : '';
  41. }
  42. // 线性结构转树形结构(顶级分类树)
  43. $lists = linear_to_tree($lists);
  44. return $lists;
  45. }
  46. /**
  47. * 获取分类列表(二级)
  48. */
  49. public static function categoryTwoTree()
  50. {
  51. $cateogry_list = GoodsCategoryModel::with('sons')
  52. ->field('id,name,pid,level')
  53. ->where(['del' => 0, 'level' => 1])
  54. ->select()
  55. ->toArray();
  56. return self::categoryToSelect($cateogry_list);
  57. }
  58. /**
  59. * Desc:将树形结构数组输出
  60. * @param $items array 要输出的数组
  61. * @param $select_id int 已选中项
  62. * @return string
  63. */
  64. public static function categoryToSelect($lists, $select_id = 0)
  65. {
  66. $tree = [];
  67. foreach ($lists as $val) {
  68. $tree[$val['id']]['level'] = $val['level'];
  69. $tree[$val['id']]['name'] = '|----' . $val['name'];
  70. if ($val['sons']) {
  71. foreach ($val['sons'] as $val_sons) {
  72. $tree[$val_sons['id']]['level'] = $val_sons['level'];
  73. $tree[$val_sons['id']]['name'] = '|--------' . $val_sons['name'];
  74. }
  75. }
  76. }
  77. return $tree;
  78. }
  79. /**
  80. * 添加分类
  81. */
  82. public static function add($post)
  83. {
  84. $level = 0;
  85. if ($post['pid']) {
  86. $level = GoodsCategoryModel::where(['id' => $post['pid']], ['del' => 0])->value('level');
  87. }
  88. $data = [
  89. 'name' => trim($post['name']),
  90. 'pid' => $post['pid'],
  91. 'sort' => $post['sort'],
  92. 'is_show' => $post['is_show'],
  93. 'image' => isset($post['image']) ? clearDomain($post['image']) : '',
  94. 'bg_image' => isset($post['bg_image']) ? clearDomain($post['bg_image']) : '',
  95. 'level' => $level + 1,
  96. 'remark' => $post['remark'],
  97. 'create_time' => time(),
  98. 'update_time' => time(),
  99. ];
  100. return GoodsCategoryModel::create($data);
  101. }
  102. /**
  103. * 删除分类
  104. */
  105. public static function del($post)
  106. {
  107. return GoodsCategoryModel::update([
  108. 'id' => $post['id'],
  109. 'del' => 1,
  110. 'update_time' => time(),
  111. ]);
  112. }
  113. /**
  114. * 分类详情
  115. */
  116. public static function getCategory($id)
  117. {
  118. $detail = GoodsCategoryModel::where([
  119. 'del' => 0,
  120. 'id' => $id
  121. ])->find();
  122. $detail['image'] = UrlServer::getFileUrl($detail['image']);
  123. $detail['bg_image'] = $detail['bg_image'] ? UrlServer::getFileUrl($detail['bg_image']) : '';
  124. return $detail;
  125. }
  126. /**
  127. * 获取叶子分类的级数
  128. */
  129. public static function getCategoryLevel($category)
  130. {
  131. $level = 1;
  132. $two_ids = GoodsCategoryModel::where(['pid' => $category['id'], 'del' => 0])->column('id');
  133. if ($two_ids) {
  134. $level = 2;
  135. $three_id = GoodsCategoryModel::where([
  136. ['pid', 'in', $two_ids],
  137. ['del', '=', 0]
  138. ])->column('id');
  139. if ($three_id) $level = 3;
  140. }
  141. return $level;
  142. }
  143. /**
  144. * 编辑
  145. */
  146. public static function edit($post)
  147. {
  148. $level = 0;
  149. if ($post['pid']) {
  150. $level = GoodsCategoryModel::where(['id' => $post['pid']], ['del' => 0])->value('level');
  151. }
  152. $data = [
  153. 'name' => $post['name'],
  154. 'sort' => $post['sort'],
  155. 'is_show' => $post['is_show'],
  156. 'image' => isset($post['image']) ? clearDomain($post['image']) : '',
  157. 'bg_image' => isset($post['bg_image']) ? clearDomain($post['bg_image']) : '',
  158. 'level' => $level+1,
  159. 'pid' => $post['pid'],
  160. 'remark' => $post['remark'],
  161. 'update_time' => time(),
  162. ];
  163. return GoodsCategoryModel::where(['id'=>$post['id']])->update($data);
  164. }
  165. // 修改分类显示状态
  166. public static function switchStatus($post)
  167. {
  168. $update_data = [
  169. 'is_show' => $post['status'],
  170. 'update_time' => time(),
  171. ];
  172. return GoodsCategoryModel::where(['del' =>0,'id' =>$post['id']])->update($update_data);
  173. }
  174. /**
  175. * 平台商品分类(三级)
  176. */
  177. public static function categoryTreeeTree()
  178. {
  179. $lists = GoodsCategoryModel::where(['del' => 0])->column('id,name,pid,level', 'id');
  180. return self::cateToTree($lists, 0, '|-----', 1);
  181. }
  182. /**
  183. * 转树形结构
  184. */
  185. public static function cateToTree($lists, $pid = 0, $html = '|-----', $level = 1, $clear = true)
  186. {
  187. static $tree = [];
  188. if ($clear) $tree = [];
  189. foreach ($lists as $k => $v) {
  190. if ($v['pid'] == $pid) {
  191. $v['html'] = str_repeat($html, $level);
  192. $tree[] = $v;
  193. unset($lists[$k]);
  194. self::cateToTree($lists, $v['id'], $html, $level + 1, false);
  195. }
  196. }
  197. return $tree;
  198. }
  199. /**
  200. * 获取所有分类树形结构
  201. */
  202. public static function getAllTree()
  203. {
  204. $lists = GoodsCategoryModel::field(['name', 'id', 'pid', 'level'])
  205. ->where(['del' => 0])
  206. ->order(['sort' => 'desc'])
  207. ->select();
  208. return $lists;
  209. }
  210. }