This commit is contained in:
gaofeng
2026-08-12 14:59:01 +08:00
parent 1f0ec3fca9
commit fd35f78fa7
2 changed files with 1 additions and 2 deletions

View File

@@ -49,7 +49,7 @@ final class CustomerCenter extends Base
}
$payStatus = strtolower(trim((string)$this->request->param('pay_status', 'pay')));
if (!in_array($payStatus, ['pay', 'nopay', 'all'], true)) {
if (!in_array($payStatus, ['pay', 'nopay'], true)) {
return $this->fail('支付状态参数错误');
}

View File

@@ -27,7 +27,6 @@ final class CustomerCenterService
'pay_status' => $payStatus,
'page' => max(1, $page),
'page_size' => max(1, min(50, $pageSize)),
'business_types' => 'evus,esta',
]);
}