wesmiler hace 2 meses
padre
commit
2bb6ef7b05
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      app/Services/Common/OrderService.php

+ 2 - 1
app/Services/Common/OrderService.php

@@ -81,7 +81,7 @@ class OrderService extends BaseService
         if (isset($params['status']) && $params['status'] > 0) {
             $query->where('status', $params['status']);
         }
-        
+
         // 退款状态筛选
         if (isset($params['refund_status']) && $params['refund_status'] > 0) {
             $query->where('refund_status', $params['refund_status']);
@@ -96,6 +96,7 @@ class OrderService extends BaseService
             });
         }
 
+        var_dump($params);
         // 关键词搜索(订单号、商品名称、收货人手机)
         if (isset($params['keyword']) && $params['keyword']) {
             $keyword = $params['keyword'];