$Dao = M("User");
    // 计算总数
    $count = $Dao->count();
    // 导入分页类
    import("ORG.Util.Page");
  
    
    
    // 实例化分页类
    $p = new Page($count, 10);
    // 分页显示输出
    $page = $p->show();

    // 当前页数据查询
    $list = $Dao->order('id desc')->limit($p->firstRow.','.$p->listRows)->select();

    // 赋值赋值
    $this->assign('page', $page);
    $this->assign('data', $list);

    $this->display("index");