CRMEB_PRO_M/app/services/other/SystemCityServices.php

152 lines
5.1 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace app\services\other;
use app\dao\other\SystemCityDao;
use app\services\BaseServices;
use crmeb\exceptions\AdminException;
use crmeb\services\CacheService;
use crmeb\services\FormBuilder as Form;
/**
* 城市数据
* Class SystemCityServices
* @package app\services\other
* @mixin SystemCityDao
*/
class SystemCityServices extends BaseServices
{
/**
* 城市数据
* @var string
*/
public $tree_city_key = 'tree_city_list';
/**
* 构造方法
* SystemCityServices constructor.
* @param SystemCityDao $dao
*/
public function __construct(SystemCityDao $dao)
{
$this->dao = $dao;
}
/**
* 获取城市数据
* @param array $where
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function getCityList(array $where)
{
return CacheService::get($this->tree_city_key, function () {
return $this->getSonCityList();
}, 86400);
}
/**
* tree形城市列表
* @param int $pid
* @param string $parent_name
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function getSonCityList($pid = 0, $parent_name = '中国')
{
$list = $this->dao->getCityList(['parent_id' => $pid], 'id,city_id,level,name');
$arr = [];
if ($list) {
foreach ($list as $item) {
$item['parent_id'] = $parent_name;
$item['children'] = $this->getSonCityList($item['city_id'], $item['name']);
$arr [] = $item;
}
}
return $arr;
}
/**
* 添加城市数据表单
* @param int $parentId
* @return array
* @throws \FormBuilder\Exception\FormBuilderException
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function createCityForm(int $parentId)
{
if ($parentId) {
$info = $this->dao->getOne(['city_id' => $parentId], 'level,city_id,name');
} else {
$info = ["level" => 0, "city_id" => 0, "name" => '中国'];
}
$field[] = Form::hidden('level', $info['level']);
$field[] = Form::hidden('parent_id', $info['city_id']);
$field[] = Form::input('parent_name', '上级名称', $info['name'])->readonly(true);
$field[] = Form::input('name', '名称')->required('请填写城市名称');
return create_form('添加城市', $field, $this->url('/setting/city/save'));
}
/**
* 添加城市数据创建
* @param int $id
* @return array
* @throws \FormBuilder\Exception\FormBuilderException
*/
public function updateCityForm(int $id)
{
$info = $this->dao->get($id);
if (!$info) {
throw new AdminException('需改的数据不存在');
}
$info = $info->toArray();
$info['parent_name'] = $this->dao->value(['city_id' => $info['parent_id']], 'name') ?: '中国';
$field[] = Form::hidden('id', $info['id']);
$field[] = Form::hidden('level', $info['level']);
$field[] = Form::hidden('parent_id', $info['parent_id']);
$field[] = Form::input('parent_name', '上级名称', $info['parent_name'])->readonly(true);
$field[] = Form::input('name', '名称', $info['name'])->required('请填写城市名称');
$field[] = Form::input('merger_name', '合并名称', $info['merger_name'])->placeholder('格式:陕西,西安,雁塔')->required('请填写合并名称');
return create_form('修改城市', $field, $this->url('/setting/city/save'));
}
/**
* 获取城市数据
* @return mixed
*/
public function cityList()
{
return CacheService::get('CITY_LIST', function () {
$allCity = $this->dao->getCityList([], 'city_id as v,name as n,parent_id');
return sort_city_tier($allCity, 0);
}, 0);
}
/**
* @return bool|mixed|null
*/
public function getCityTreeList()
{
return CacheService::get('CITY_TREE_LIST', function () {
return get_tree_children($this->dao->getCityList(['is_show' => 1], 'city_id as value,name as label,parent_id as pid'), 'children', 'value');
});
}
}