RegionController.php 482 B

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