model = new ExpressModel; } /** * 获取快递公司列表 */ public function index() { $list = $this->model ->order('weigh', 'asc') ->order('id', 'asc') ->select(); if (is_array($list)) { $result = array("total" => count($list), "rows" => $list); } else { $result = array("total" => count($list), "rows" => $list->toArray()); } return $this->success("获取成功", $result); } }