songxingwei 3 lat temu
rodzic
commit
4cf8c4c7a3
1 zmienionych plików z 1 dodań i 4 usunięć
  1. 1 4
      app/shop/controller/BaseShop.php

+ 1 - 4
app/shop/controller/BaseShop.php

@@ -241,10 +241,6 @@ class BaseShop extends Controller
 	private function checkAuth()
 	{
 		$user_model = new UserModel();
-//		echo $this->url."<br />";
-//		echo $this->app_module."<br />";
-//		dump($this->group_info)."<br />";
-//		die;
 		$res = $user_model->checkAuth($this->url, $this->app_module, $this->group_info);
 		return $res;
 	}
@@ -258,6 +254,7 @@ class BaseShop extends Controller
 		if ($this->group_info['is_system'] == 1) {
 			$shop_group_model = new ShopGroup();
 			$shop_group_info_result = $shop_group_model->getGroupInfo([ [ 'group_id', '=', $this->user_info['app_group'] ] ], 'addon_array');
+			dump($shop_group_info_result);die;
 			$shop_group_info = $shop_group_info_result['data'];
 			if (empty($shop_group_info)) {
 				$this->error('用户组缺失');