作者 王晓刚
1 个管道 的构建 通过 耗费 0 秒

调试授权

@@ -14,9 +14,16 @@ use think\Db; @@ -14,9 +14,16 @@ use think\Db;
14 14
15 class Index extends WechatBase 15 class Index extends WechatBase
16 { 16 {
  17 + protected $user_id;
17 function _initialize() 18 function _initialize()
18 { 19 {
19 parent::_initialize(); 20 parent::_initialize();
  21 + //判断是否授权
  22 + $user_id = get_current_user_id();
  23 + if(empty($user_id)){
  24 + $this->redirect('user/authorization_view');
  25 + }
  26 + $this->user_id = $user_id;
20 } 27 }
21 public function index(){ 28 public function index(){
22 $domain_name = $this->request->domain();//域名 29 $domain_name = $this->request->domain();//域名