RegionController.php 399 B

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