@@ -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
->limit($offset, $limit)
->select();
$result = ["total" => $total, "rows" => $list];