Blame view

app-wx/modules/user/controllers/BaseController.php 486 Bytes
62d73041   xu   app-wx
1
2
<?php

ab931159   xu   app-wx(v0.1.0 bui...
3
namespace app\wx\modules\user\controllers;
62d73041   xu   app-wx
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

use Yii;
use app\wx\controllers\BaseController as AppBaseController;

/**
 * Class BaseController
 * @package app\wx\modules\toutiao\controllers
 */
class BaseController extends AppBaseController
{
    public $layout = 'main';

    /**
     * @throws yii\web\BadRequestHttpException
     */
    public function init()
    {
        parent::init(); // TODO: Change the autogenerated stub
d4851694   曹明   1. 用户登录集成
22
        //$this->handleMallAccessCtrl();
62d73041   xu   app-wx
23
24
    }
}