Ken 1 周之前
父节点
当前提交
50a3d0e83c
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1 2
      app/Services/GameplayRuleService.php

+ 1 - 2
app/Services/GameplayRuleService.php

@@ -87,8 +87,7 @@ class GameplayRuleService extends BaseService
     {
     {
         $limit = isset($search['limit'])?$search['limit']:15;
         $limit = isset($search['limit'])?$search['limit']:15;
         $paginator = self::model()::where(self::getWhere($search))
         $paginator = self::model()::where(self::getWhere($search))
-            ->orderByDesc("groups")
-            ->orderBy("keywords")->paginate($limit);
+            ->orderByDesc("odds")->paginate($limit);
         return ['total' => $paginator->total(), 'data' => $paginator->items()];
         return ['total' => $paginator->total(), 'data' => $paginator->items()];
     }
     }