fix:项目管理功能需求
This commit is contained in:
@@ -297,6 +297,15 @@ class Project extends Common
|
||||
$ret = db('project_info')->where('project_id',$param['project_id'])->update($update);
|
||||
return $this->sendSuccess('更新成功');
|
||||
}
|
||||
|
||||
public function UpdateSaleManager()
|
||||
{
|
||||
$param = request()->post();
|
||||
|
||||
$update['sale_manager'] = $param['sale_manager']; //数组转字符串
|
||||
$ret = db('project_info')->where('project_id',$param['project_id'])->update($update);
|
||||
return $this->sendSuccess('更新成功');
|
||||
}
|
||||
|
||||
//添加项目外部成员
|
||||
public function AddProjectExternalMember()
|
||||
|
||||
Reference in New Issue
Block a user