123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>主页</title>
- <link rel="stylesheet" href="./styles/iconfont.css" />
- <link rel="stylesheet" href="./styles/common.css" />
- </head>
- <body>
- <div class="user-list">
- <button id="newUserBtn">新增用户</button>
- <table>
- <!-- thead标签给table定义表头 -->
- <thead>
- <tr>
- <th>头像</th>
- <th>姓名</th>
- <th>密码</th>
- <th>年龄</th>
- <th>性别</th>
- <th>操作</th>
- </tr>
- </thead>
- <tbody id="listBody">
- <!-- 动态添加数据 -->
- </tbody>
- <tfoot>
- <tr>
- <td colspan="6" align="right">
- <span
- id="prevSp"
- class="iconfont icon-prev icon"
- title="上一页"
- ></span>
- <span id="totalSp">4 条</span>
- <span
- id="nextSp"
- class="iconfont icon-next icon"
- title="下一页"
- ></span>
- </td>
- </tr>
- </tfoot>
- </table>
- </div>
- <script src="https://unpkg.com/axios/dist/axios.min.js"></script>
- <script src="./js/index.js"></script>
- </body>
- </html>
|