public function index() {
import ( ‘ORG.Util.Page‘ );
$m = D ( "Tx_record" );
$count = $m->count (); // 查询满足要求的总记录数
$Page = new Page ( $count, 10 ); // 实例化分页类 传入总记录数和每页显示的记录数
$Page -> setConfig(‘header‘, ‘条记录‘);
$Page -> setConfig(‘theme‘, ‘
%totalRow% %header% %upPage% %downPage% %first% %prePage% %linkPage% %nextPage% %end% ‘);//(对thinkphp自带分页的格式进行自定义)
$show = $Page->show (); // 分页显示输出
$result = $m->limit ( $Page->firstRow . ‘,‘ . $Page->listRows )->order("id desc")->relation(true)->select ();
$this->assign ( "result", $result );
$this->assign ( "page", $show ); // 赋值分页输出
$this->display ();
}