load->model('Group_model'); } // 分组列表 public function get_list(){ $userId = $this->get_user_info('id'); $role = $this->get_user_info('role'); $where = array(); if ($role != SYSTEM_ADMIN) $where['userId'] = $userId; } }