| 1234567891011121314151617181920212223242526 |
- <?php
- namespace mobile\controllers;
- use common\components\util;
- use common\services\xhUserService;
- use Yii;
- use yii\web\Controller;
- use yii\filters\AccessControl;
- use yii\data\Pagination;
- use yii\helpers\Json;
- use common\models\xhOrder;
- use common\models\xhMerchant;
- use common\models\xhUserAsset;
- use common\models\xhUser;
- use common\services\xhMerchatService;
- use common\services\xhMerchantService;
- use common\components\configDict;
- class ZoneController extends MobileendController{
- public $layout;
- public $withoutLogin = [];//游客可以访问的方法
- }
|