PHP_THINKPHP_study12_后台人员的管理和分页类的使用

阅读更多

一、后台人员管理

    1、在后台Action/Admin/下新建一个UserManageAction.class.php

       代码:

       

class UserManageAction extends CommonAction
{
    public function index()
    {
        import('ORG.Util.Page');
        $count = M('user')->count();
        $page = new Page($count, 10);
        $limit = $page->firstRow . ',' . $page->listRows;

        $users = M("user")->order('logintime Desc')->limit($limit)->select();
        $this->users = $users;
        $this->page = $page->show();
        $this->display();
    }

    public function unlock()
    {
        $id = I('id', '', 'intval');
        $re = M('user')->where('id=' . $id)->setField('lock', 0);
        if ($re) {
            $this->success('修改成功', U('Admin/UserManage/index'));
        } else {
            $this->error('修改失败');
        }
    }

    public function lock()
    {
        $id = I('id', '', 'intval');
        $re = M('user')->where('id=' . $id)->setField('lock', 1);
        if ($re) {
            $this->success('修改成功', U('Admin/UserManage/index'));
        } else {
            echo '没修改';
        }
    }
}

  2、前台Tpl/Admin/新建 UserManage_index.html

  显示员工的列表

  

    
        
            {$v.id}
            {$v.username}
            {$v.password}
            {$v.logintime|date='Y--m-d H:i',###}
            {$v.loginip}
            {$v['lock']?'锁定':'未锁定'}
            解锁   锁定
        
    

  注:标签是通过thinkphp框架解析的方法

二、使用分页类

  1、后台Action中引入page类

    代码:

 public function index()
    {
        import('ORG.Util.Page');//引入分页类
        $count = M('user')->count();//统计总数
        $page = new Page($count, 10);//实例化每页显示10个
        $limit = $page->firstRow . ',' . $page->listRows;

        $users = M("user")->order('logintime Desc')->limit($limit)->select();
        $this->users = $users;
        $this->page = $page->show();
        $this->display();
    }

 2、html 展示

  

    
        {$page}
    

 代码请看附件:

  • wish5.zip (1.9 MB)
  • 下载次数: 0

你可能感兴趣的:(PHP_THINKPHP_study12_后台人员的管理和分页类的使用)