Commit 1bd4b018 by 朱继来

调整操作记录排序

parent 64a97395
Showing with 1 additions and 1 deletions
......@@ -1367,7 +1367,7 @@ Class OrderController extends Controller
}
// 获取操作记录
$actionLog = DB::connection('order')->table('lie_order_action_log')->where('order_id', $id)->orderBy('create_time', 'DESC')->get();
$actionLog = DB::connection('order')->table('lie_order_action_log')->where('order_id', $id)->orderBy('create_time', 'DESC')->orderBy('log_id', 'DESC')->get();
$response = [
'user_mobile' => $mobile,
......
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