|
@@ -20,12 +20,10 @@ class OrderService extends BaseService
|
|
|
|
|
|
|
|
public static function getOrderList($where)
|
|
public static function getOrderList($where)
|
|
|
{
|
|
{
|
|
|
- $list = OrderService::getList('*', $where, 'addTime DESC');
|
|
|
|
|
-
|
|
|
|
|
|
|
+ $list = self::getList('*', $where, 'addTime DESC');
|
|
|
$userIdList = array_column($list, 'user_id');
|
|
$userIdList = array_column($list, 'user_id');
|
|
|
UserService::getByIds($userIdList);
|
|
UserService::getByIds($userIdList);
|
|
|
- //....
|
|
|
|
|
return $list;
|
|
return $list;
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
}
|
|
}
|