更新细节

This commit is contained in:
yaooo 2023-11-20 10:36:35 +08:00
parent b4afce7c10
commit b78ec65632

View File

@ -29,11 +29,14 @@ class AccountLogController extends BaseLikeAdminController
if(!$this->request->isPost()){
return $this->fail('请求方式错误');
}
$params = $this->request->post(['page_no','page_size', 'start_time', 'end_time', 'type','company_id']);
$params = $this->request->post(['page_no','page_size', 'start_time', 'end_time', 'user_info', 'type', 'change_type', 'company_id']);
$where = [];
if (isset($params['type']) && $params['type'] == 'um') {
$where[] = ['change_type', 'in', AccountLogEnum::getUserMoneyChangeType()];
}
if (!empty($params['change_type'])) {
$where[] = ['change_type', '=', $params['change_type']];
}
if (!empty($params['company_id'])) {
$where[] = ['company_id', '=', $params['company_id']];
}