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

GoodsBrandLogic.php 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. namespace app\api\logic;
  3. use app\common\basics\Logic;
  4. use app\common\model\goods\GoodsBrand;
  5. class GoodsBrandLogic extends Logic
  6. {
  7. /**
  8. * 获取品牌列表
  9. */
  10. public static function getGoodsBrandList()
  11. {
  12. $where = [
  13. 'del' => 0, // 未删除
  14. 'is_show' => 1, // 显示
  15. ];
  16. $list = GoodsBrand::field('id,name,image,initial')
  17. ->where($where)
  18. ->order('sort', 'asc')
  19. ->select()
  20. ->toArray();
  21. return self::format($list);
  22. }
  23. /**
  24. * 格式化品牌数据
  25. */
  26. public static function format($list)
  27. {
  28. // 生成A-Z字母
  29. $letters = range('A', 'Z');
  30. $newList = [];
  31. foreach($letters as $key => $letter) {
  32. $newList[$key]['letter'] = $letter;
  33. $newList[$key]['list'] = [];
  34. foreach($list as $item) {
  35. if(strtoupper($item['initial']) == $letter) {
  36. $newList[$key]['list'][] = $item;
  37. }
  38. }
  39. // 去除字母下没有品牌的项
  40. if(!$newList[$key]['list']) {
  41. unset($newList[$key]);
  42. }
  43. }
  44. // 重置下标索引
  45. $newList = array_merge([], $newList);
  46. return $newList;
  47. }
  48. }