$cid = I('cid');
$Document = M('Document');
$count = $Document->where(array('cid'=>$cid))->count();
$Page = new \Think\Page($count,3);
$show = $Page->show();
$data = $Document->where(array('cid'=>$cid))->order('create_time DESC')->limit($Page->firstRow.','.$Page->listRows)->select();
$this->show = $show;
$this->data = $data
还有其他的分页信息无法显示出来,例如总记录和其他样式
求助热心的朋友解决这一个问题,谢谢了
最佳答案