public function index()
{
$data['Compact'] = $this->car_type->getCompactByType(); //这里这样写好别扭
$this->load->view('all',$data);
}
//紧凑型
public function getCompact()
{
$data['Compact'] = $this->car_type->getCompactByType();
}
//小型
public function getSmall()
{
$data['Small'] = $this->car_type->getSmall();
}