RegionController.php 437 B

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