Blogger Information
Blog 29
fans 0
comment 0
visits 19761
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
tp新闻实战笔记五(用户管理)
牡丹飞
Original
596 people have browsed it

数据库修改

  1. auth_role表 普通管理员rules去掉 15,
  2. user表 加update_time字段 int 11 可为空

    复制

  3. 复制add.html和update.html到项目app\admin\view\auth\下
  4. 按auth.php修改app\admin\contraller\auth.php,主要三个方法index add update
  5. 按index.html修改app\admin\view\index.html
  6. 复制控钮,替换里边内容,不细写了
    1. <small>
    2. <a title="新增用户" class="btn btn-success" href="{:url('/auth/add')}">
    3. <i class="fas fa-plus mr-2"></i>
    4. 新增
    5. </a>
    6. &nbsp;&nbsp;&nbsp;&nbsp;
    7. <a title="查看列表" class="btn btn-primary" href="{:url('/auth/index')}">
    8. <i class="fas fa-list-alt mr-2"></i>
    9. 列表
    10. </a>
    11. </small>
    12. <!-- 位置 -->
    13. <div class="content-header">
    14. <div class="container-fluid">
    15. <div class="row mb-2">
    16. <div class="col-sm-6">
    17. <!-- 位置结束 -->
  7. 有两处错
  8. (因为我数据库表名没有)第一是app\admin\contraller\auth.php表名带13_要去了
  9. 第二是app\admin\view\autl\index.html 里的js脚本 url改为“auth/index”
    1. ajax: {
    2. url: "/Auth/index",
    3. type: "POST",
  10. 加update_time字段 要在数据库执行sql,注意表名
    1. update users set update_time = create_time
  11. add方法内 要修改插入时数据如下:
    1. $data = [
    2. 'uname' => input('post.uname'),
    3. 'pwd' => password_hash( input('post.pwd'),PASSWORD_BCRYPT),
    4. 'status' => intval(input('post.status')),
    5. 'login_ip' => request()->ip(),
    6. 'create_time' => time(),
    7. 'update_time' => time(),
    8. ];
  12. 代码整理成自己的代码习惯,还没有完成,看自己功夫就可以了
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post