DistrictController.php 640 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * 重庆赤晓店信息科技有限公司
  4. * https://www.chixiaodian.com
  5. * Copyright (c) 2023 赤店商城 All rights reserved.
  6. */
  7. namespace app\modules\admin\controllers;
  8. use app\models\District;
  9. class DistrictController extends BaseController
  10. {
  11. /**
  12. * 获取格式化城市列表数据
  13. */
  14. public function actionList()
  15. {
  16. $form = new District();
  17. $type = get_params('type') ? get_params('type') : 'area';
  18. $value_type = get_params('value_type') ? get_params('value_type') : 1;
  19. return $this->asJson($form->getFormatCity($type, $value_type));
  20. }
  21. }