| 12345678910111213141516171819202122232425 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- namespace app\modules\admin\controllers;
- use app\models\District;
- class DistrictController extends BaseController
- {
- /**
- * 获取格式化城市列表数据
- */
- public function actionList()
- {
- $form = new District();
- $type = get_params('type') ? get_params('type') : 'area';
- $value_type = get_params('value_type') ? get_params('value_type') : 1;
- return $this->asJson($form->getFormatCity($type, $value_type));
- }
- }
|