bak.html 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <!DOCTYPE html>
  2. <html xmlns:th="http://www.thymeleaf.org">
  3. <head th:replace="/common/template :: header(~{::title},~{::link},~{::style})"></head>
  4. <body class="timo-layout-page">
  5. <div class="layui-card" th:attr="data-url=@{/sys/bak}">
  6. <div class="layui-card-header timo-card-header">
  7. <span><i class="fa fa-bars"></i> 备份还原</span>
  8. <i class="layui-icon layui-icon-refresh refresh-btn"></i>
  9. </div>
  10. <div class="layui-card-body">
  11. <div class="timo-table-wrap">
  12. <table class="layui-table timo-table">
  13. <thead>
  14. <tr>
  15. <th class="timo-table-checkbox">
  16. <label class="timo-checkbox"><input type="checkbox">
  17. <i class="layui-icon layui-icon-ok"></i></label>
  18. </th>
  19. <th class="sortable" data-field="title">角色</th>
  20. <th class="sortable" data-field="name">角色名</th>
  21. <th class="sortable" data-field="createTime">创建时间</th>
  22. <th class="sortable" data-field="updateTime">更新时间</th>
  23. <th>备份</th>
  24. <th>还原</th>
  25. </tr>
  26. </thead>
  27. <tbody>
  28. <tr th:each="item:${list}">
  29. <td><label class="timo-checkbox"><input type="checkbox" th:value="${item.id}">
  30. <i class="layui-icon layui-icon-ok"></i></label></td>
  31. <td th:text="${item.title}">角色</td>
  32. <td th:text="${item.name}">角色名</td>
  33. <td th:text="${item.createTime}">创建时间</td>
  34. <td th:text="${item.updateTime}">更新时间</td>
  35. <td>
  36. <a th:href="@{/sys/bak/export}"><i class="fa fa-download"></i></a>
  37. </td>
  38. <td>
  39. <button type="button" class="layui-btn upload-image" name="image[]"
  40. th:attr="up-url=@{/sys/bak/import}" up-field="path">
  41. <i class="fa fa-upload"></i>
  42. </button>
  43. </td>
  44. </tr>
  45. </tbody>
  46. </table>
  47. </div>
  48. </div>
  49. </div>
  50. <script th:replace="/common/template :: script"></script>
  51. <script type="text/javascript">
  52. </script>
  53. </body>
  54. </html>