| 1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace addons\Community\backend\controllers;
- use addons\Community\common\service\CommunityService;
- use Yii;
- /**
- * 公共控制器
- *
- * Class CommonController
- * @package addons\Community\backend\controllers
- */
- class CommonController extends BaseController
- {
- /**
- * 获取社区小区列表
- *
- * @return mixed
- */
- public function actionRegionList()
- {
- if (Yii::$app->request->isAjax) {
- $level = Yii::$app->request->get('level', 2);
- $service = new CommunityService(['mall_id' => $this->mall_id]);
- $list = $service->getRegionList($level);
- return $this->success('ok', compact('list'));
- }
- }
- }
|