From 6d387471fc28a99cc39062c93eb38d5bf76b7e94 Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Thu, 23 Nov 2023 13:34:40 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=8B=BC=E9=9F=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controller/api/Common.php | 16 +++++++++++++++- app/controller/api/Demo.php | 32 ++++++++++++++++++++++++++++++++ route/api.php | 1 + 3 files changed, 48 insertions(+), 1 deletion(-) create mode 100644 app/controller/api/Demo.php diff --git a/app/controller/api/Common.php b/app/controller/api/Common.php index 74237ba3..01098dcc 100644 --- a/app/controller/api/Common.php +++ b/app/controller/api/Common.php @@ -42,6 +42,7 @@ use crmeb\services\WechatService; use Exception; use Joypack\Tencent\Map\Bundle\Location; use Joypack\Tencent\Map\Bundle\LocationOption; +use Overtrue\Pinyin\Pinyin; use think\exception\ValidateException; use think\facade\Cache; use think\facade\Db; @@ -485,7 +486,20 @@ class Common extends BaseController //街道 乡镇数据 public function get_street($area_code){ $select=Db::name('geo_street')->where('area_code',$area_code)->field('street_id id,street_code code,street_name name')->select(); - return app('json')->success($select); + $arr=$select?$select->toArray():[]; + foreach ($arr as $k=>$item){ + $first_char = mb_str_split($item['name']); + if($first_char[0]){ + $pinyin=new Pinyin(); + $string=$first_char[0]; + $pinyin = $pinyin->abbr($string); + $arr[$k]['pinyin']=$pinyin; + }else{ + $arr[$k]['pinyin']=''; + } + + } + return app('json')->success($arr); } //村数据 public function get_village($street_code){ diff --git a/app/controller/api/Demo.php b/app/controller/api/Demo.php new file mode 100644 index 00000000..96924763 --- /dev/null +++ b/app/controller/api/Demo.php @@ -0,0 +1,32 @@ + +// +---------------------------------------------------------------------- + + +namespace app\controller\api; + + +use crmeb\basic\BaseController; + + +/** + * Class Auth + * @package app\controller\api + * @author xaboy + * @day 2020-05-06 + */ +class Demo extends BaseController +{ + public function index(){ + halt(1); + } + +} diff --git a/route/api.php b/route/api.php index bde68483..d3454654 100644 --- a/route/api.php +++ b/route/api.php @@ -21,6 +21,7 @@ use think\facade\Route; Route::group('api/', function () { Route::any('test', 'api.Auth/test'); + Route::any('demo_ceshi', 'api.Demo/index'); Route::any('dotest', 'api.Auth/dotest'); Route::any('caiji', 'api.Auth/caiji'); Route::any('parse/token', 'api.Auth/parseToken');