项目成员权限判断错误问题修复

This commit is contained in:
hdm 2022-10-25 11:03:51 +08:00
parent 21db098814
commit db26bf3f30
2 changed files with 3 additions and 3 deletions

View File

@ -526,7 +526,7 @@ class Api extends BaseController
$project_ids = Db::name('ProjectUser')->where(['uid' => $this->uid, 'delete_time' => 0])->column('project_id');
$rows = empty($param['limit']) ? get_config('app.page_size') : $param['limit'];
$auth = isAuth($this->uid,'contract_admin');
$auth = isAuth($this->uid,'project_admin');
$where = [];
$where[] = ['delete_time', '=', 0];
if(isset($param['keywords'])){

View File

@ -41,7 +41,7 @@ class Index extends BaseController
$project_ids = Db::name('ProjectUser')->where(['uid' => $this->uid, 'delete_time' => 0])->column('project_id');
$rows = empty($param['limit']) ? get_config('app.page_size') : $param['limit'];
$auth = isAuth($this->uid,'contract_admin');
$auth = isAuth($this->uid,'project_admin');
$where = [];
$where[] = ['delete_time', '=', 0];
if($auth == 0){
@ -327,7 +327,7 @@ class Index extends BaseController
if ($detail['admin_id'] == $this->uid) {
$role = 2; //创建人
}
$auth = isAuth($this->uid,'contract_admin');
$auth = isAuth($this->uid,'project_admin');
if ($auth == 1) {
$role = 3; //项目管理员
}