ShopGoodsCate.php 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?php
  2. namespace app\data\model;
  3. use think\admin\extend\DataExtend;
  4. use think\admin\Model;
  5. /**
  6. * 商城商品分类模型
  7. * Class ShopGoodsCate
  8. * @package app\data\model
  9. */
  10. class ShopGoodsCate extends Model
  11. {
  12. /**
  13. * 获取上级可用选项
  14. * @param int $max 最大级别
  15. * @param array $data 表单数据
  16. * @param array $parent 上级分类
  17. * @return array
  18. * @throws \think\db\exception\DataNotFoundException
  19. * @throws \think\db\exception\DbException
  20. * @throws \think\db\exception\ModelNotFoundException
  21. */
  22. public static function getParentData(int $max, array &$data, array $parent = []): array
  23. {
  24. $items = static::mk()->where(['deleted' => 0])->order('sort desc,id asc')->select()->toArray();
  25. $cates = DataExtend::arr2table(empty($parent) ? $items : array_merge([$parent], $items));
  26. if (isset($data['id'])) foreach ($cates as $cate) if ($cate['id'] === $data['id']) $data = $cate;
  27. foreach ($cates as $key => $cate) {
  28. $isSelf = isset($data['spt']) && isset($data['spc']) && $data['spt'] <= $cate['spt'] && $data['spc'] > 0;
  29. if ($cate['spt'] >= $max || $isSelf) unset($cates[$key]);
  30. }
  31. return $cates;
  32. }
  33. /**
  34. * 获取数据树
  35. * @return array
  36. * @throws \think\db\exception\DataNotFoundException
  37. * @throws \think\db\exception\DbException
  38. * @throws \think\db\exception\ModelNotFoundException
  39. */
  40. public static function treeData(): array
  41. {
  42. $query = static::mk()->where(['status' => 1, 'deleted' => 0])->order('sort desc,id desc');
  43. return DataExtend::arr2tree($query->withoutField('sort,status,deleted,create_at')->select()->toArray());
  44. }
  45. /**
  46. * 获取列表数据
  47. * @param bool $simple 仅子级别
  48. * @return array
  49. */
  50. public static function treeTable(bool $simple = false): array
  51. {
  52. $query = static::mk()->where(['status' => 1, 'deleted' => 0])->order('sort desc,id asc');
  53. $cates = array_column(DataExtend::arr2table($query->column('id,pid,name', 'id')), null, 'id');
  54. foreach ($cates as $cate) isset($cates[$cate['pid']]) && $cates[$cate['id']]['parent'] =& $cates[$cate['pid']];
  55. foreach ($cates as $key => $cate) {
  56. $id = $cate['id'];
  57. $cates[$id]['ids'][] = $cate['id'];
  58. $cates[$id]['names'][] = $cate['name'];
  59. while (isset($cate['parent']) && ($cate = $cate['parent'])) {
  60. $cates[$id]['ids'][] = $cate['id'];
  61. $cates[$id]['names'][] = $cate['name'];
  62. }
  63. $cates[$id]['ids'] = array_reverse($cates[$id]['ids']);
  64. $cates[$id]['names'] = array_reverse($cates[$id]['names']);
  65. if (isset($pky) && $simple && in_array($cates[$pky]['name'], $cates[$id]['names'])) {
  66. unset($cates[$pky]);
  67. }
  68. $pky = $key;
  69. }
  70. foreach ($cates as &$cate) unset($cate['parent']);
  71. return array_values($cates);
  72. }
  73. /**
  74. * 格式化创建时间
  75. * @param string $value
  76. * @return string
  77. */
  78. public function getCreateAtAttr(string $value): string
  79. {
  80. return format_datetime($value);
  81. }
  82. }