Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

4 лет назад
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: zhengmingwei
  5. * Date: 2019-07-14
  6. * Time: 22:39
  7. */
  8. namespace app\admin\model\unishop;
  9. use think\Cache;
  10. use think\Model;
  11. /**
  12. * 地区模型
  13. * Class Region
  14. * @package app\common\model
  15. */
  16. class Area extends Model
  17. {
  18. //数据库
  19. protected $connection = 'database';
  20. // 表名
  21. protected $name = 'unishop_area';
  22. /**
  23. * 根据id获取地区名称
  24. * @param $id
  25. * @return string
  26. */
  27. public static function getNameById($id)
  28. {
  29. $region = self::getCacheAll();
  30. return $region[$id]['name'];
  31. }
  32. /**
  33. * 根据名称获取地区id
  34. * @param $name
  35. * @param int $level
  36. * @param int $pid
  37. * @return unied
  38. */
  39. public static function getIdByName($name, $level = 0, $pid = 0)
  40. {
  41. return static::useGlobalScope(false)->where(compact('name', 'level', 'pid'))
  42. ->value('id') ?: static::add($name, $level, $pid);
  43. }
  44. /**
  45. * @param $name
  46. * @param int $level
  47. * @param int $pid
  48. * @return unied
  49. */
  50. private static function add($name, $level = 0, $pid = 0)
  51. {
  52. $model = new static;
  53. $model->save(compact('name', 'level', 'pid'));
  54. Cache::rm('area');
  55. return $model->getLastInsID();
  56. }
  57. /**
  58. * 获取所有地区(树状结构)
  59. * @return unied
  60. */
  61. public static function getCacheTree()
  62. {
  63. return self::regionCache()['tree'];
  64. }
  65. /**
  66. * 获取所有地区
  67. * @return unied
  68. */
  69. public static function getCacheAll()
  70. {
  71. return self::regionCache()['all'];
  72. }
  73. /**
  74. * 获取地区缓存
  75. * @return unied
  76. */
  77. private static function regionCache()
  78. {
  79. if (!Cache::get('area')) {
  80. // 所有地区
  81. $all = $allData = self::useGlobalScope(false)->column('id, pid, name, level', 'id');
  82. // 格式化
  83. $tree = [];
  84. foreach ($allData as $pKey => $province) {
  85. if ($province['level'] === 1) { // 省份
  86. $tree[$province['id']] = $province;
  87. unset($allData[$pKey]);
  88. foreach ($allData as $cKey => $city) {
  89. if ($city['level'] === 2 && $city['pid'] === $province['id']) { // 城市
  90. $tree[$province['id']]['city'][$city['id']] = $city;
  91. unset($allData[$cKey]);
  92. foreach ($allData as $rKey => $region) {
  93. if ($region['level'] === 3 && $region['pid'] === $city['id']) { // 地区
  94. $tree[$province['id']]['city'][$city['id']]['region'][$region['id']] = $region;
  95. unset($allData[$rKey]);
  96. }
  97. }
  98. }
  99. }
  100. }
  101. }
  102. Cache::set('area', compact('all', 'tree'));
  103. }
  104. return Cache::get('area');
  105. }
  106. }