2024-01-03 09:54:57 +08:00

32 lines
813 B
PHP
Executable File

<?php
namespace app\common\Model;
use service\ToolsService;
use think\facade\Cache;
class Areas extends CommonModel
{
protected $append = [];
/**
* 构建AntDesign所需的行政区划数据
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public static function createJsonForAnt()
{
$list = Cache::store('redis')->get('areadData');
if (!$list) {
$list = self::where('id > 100000')->order('id asc')->select()->toArray();
Cache::store('redis')->set('areadData', $list);
}
if ($list) {
$list = ToolsService::arr2tree($list, 'ID', 'ParentId');
}
return $list;
}
}