修改异常

This commit is contained in:
yaooo 2023-11-21 17:15:33 +08:00
parent cebe169a85
commit 45d9e9df3b
1 changed files with 4 additions and 2 deletions

View File

@ -236,8 +236,10 @@ class Common extends ApiController
if (!in_array($param['check'], [1, 2, 3])) { if (!in_array($param['check'], [1, 2, 3])) {
$this->apiError("审批状态参数错误"); $this->apiError("审批状态参数错误");
} }
if (empty($param['content'])) { if (in_array($param['check'], [1, 2])) {
$this->apiError("审批意见不能为空"); if (empty($param['content'])) {
$this->apiError("审批意见不能为空");
}
} }
$id = $param['id']; $id = $param['id'];
$type = $param['type']; $type = $param['type'];