WIN-2308041133\Administrator 8 months ago
parent
commit
3bc7b59017
1 changed files with 2 additions and 2 deletions
  1. 2 2
      application/admin/controller/platform/Videoplatform.php

+ 2 - 2
application/admin/controller/platform/Videoplatform.php

@@ -36,12 +36,12 @@ class Videoplatform extends Backend
             $total = $this->model
                 ->with('videolist')
                 ->where($where)
-                ->order($sort, $order)
+//                ->order($sort, $order)
                 ->count();
             $list = $this->model
                 ->with('videolist')
                 ->where($where)
-                ->order($sort, $order)
+//                ->order($sort, $order)
                 ->limit($offset, $limit)
                 ->select();
             $result = ["total" => $total, "rows" => $list];