index.html 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>主页</title>
  8. <link rel="stylesheet" href="./styles/iconfont.css" />
  9. <link rel="stylesheet" href="./styles/common.css" />
  10. </head>
  11. <body>
  12. <div class="user-list">
  13. <button id="newUserBtn">新增用户</button>
  14. <table>
  15. <!-- thead标签给table定义表头 -->
  16. <thead>
  17. <tr>
  18. <th>头像</th>
  19. <th>姓名</th>
  20. <th>密码</th>
  21. <th>年龄</th>
  22. <th>性别</th>
  23. <th>操作</th>
  24. </tr>
  25. </thead>
  26. <tbody id="listBody">
  27. <!-- 动态添加数据 -->
  28. </tbody>
  29. <tfoot>
  30. <tr>
  31. <td colspan="6" align="right">
  32. <span
  33. id="prevSp"
  34. class="iconfont icon-prev icon"
  35. title="上一页"
  36. ></span>
  37. <span id="totalSp">4 条</span>
  38. <span
  39. id="nextSp"
  40. class="iconfont icon-next icon"
  41. title="下一页"
  42. ></span>
  43. </td>
  44. </tr>
  45. </tfoot>
  46. </table>
  47. </div>
  48. <script src="https://unpkg.com/axios/dist/axios.min.js"></script>
  49. <script src="./js/index.js"></script>
  50. </body>
  51. </html>