Commit 70107b40 by 杨树贤

添加请求参数

parent 2f40c610
......@@ -86,7 +86,14 @@ class UserIntegralsController extends Controller
return Log::Info('批量修改参数不是数组');
}
$data = ['status' => (int)$request->status, 'update_time' => time()];
$data = [
'status' => (int)$request->status,
'update_time' => time(),
'audit_time' => time(),
'audit_id' => $request->get('audit_id'),
'audit_reason' => $request->get('audit_reason'),
'audit_email' => $request->get('audit_email'),
];
$res = $userIntegral->batchUpdateStatus($ids, $data);
if ($res) {
......
9913
\ No newline at end of file
3309
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment