RegionController.php 431 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace www\controllers;
  3. use biz\saas\services\RegionService;
  4. use common\components\util;
  5. use Yii;
  6. use yii\web\Controller;
  7. class RegionController extends BaseController
  8. {
  9. //地区相关信息 shish 2020.1.14
  10. public function actionTree()
  11. {
  12. $regionTree = RegionService::tree();
  13. $mapKey = 'OFWBZ-2NTHP-EHNDD-LKWQY-GANM7-PXBJH';
  14. $out = ['tree' => $regionTree, 'txMapKey' => $mapKey];
  15. util::success($out);
  16. }
  17. }