diff --git a/app/api/controller/OaApprove.php b/app/api/controller/OaApprove.php index b9471d4..49eeff2 100644 --- a/app/api/controller/OaApprove.php +++ b/app/api/controller/OaApprove.php @@ -260,13 +260,15 @@ class OaApprove extends ApiController if (empty($param['check'])) { $this->apiError("审批状态不能为空"); } - if (empty($param['content'])) { - $this->apiError("审批内容不能为空"); - } - //1审核结束 2下一审批人 - if (($param['check'] != 3) && empty($param['check_node'])) { - $this->apiError("审批节点不能为空"); - } + if ($param['check'] != 3) { + if (empty($param['content'])) { + $this->apiError("审批内容不能为空"); + } + //1审核结束 2下一审批人 + if (empty($param['check_node'])) { + $this->apiError("审批节点不能为空"); + } + } $id = $param['id']; $type = $param['type'];