company_radar.html 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <!DOCTYPE HTML>
  2. <html xmlns:th="http://www.thymeleaf.org"
  3. xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
  4. layout:decorate="~{admin/common/common}">
  5. <head>
  6. <title>诊断用户组列表</title>
  7. </head>
  8. <body layout:fragment="content">
  9. <nav class="breadcrumb">
  10. <i class="Hui-iconfont">&#xe67f;</i>
  11. 首页 <span class="c-gray en">&gt;</span>
  12. 企业政策雷达 <a class="btn btn-success radius r" style="line-height:1.6em;margin-top:3px"
  13. href="javascript:location.replace(location.href);" title="刷新"><i class="Hui-iconfont">&#xe68f;</i></a>
  14. </nav>
  15. <form id="myForm" th:action="@{/policy/list/companyRadar}" th:method="get">
  16. <div class="page-container">
  17. <div style="text-align:center">
  18. </div>
  19. <div class="cl pd-5 bg-1 bk-gray mt-20">
  20. <span class="l">
  21. </span>
  22. <span class="r">共有数据:<strong th:text="${pageInfo?.total}" id="total">0</strong> 条</span>
  23. </div>
  24. <table class="table table-border table-bordered table-bg table-hover" style="table-layout: fixed;width:100%;">
  25. <thead>
  26. <tr class="text-c">
  27. <th>单号</th>
  28. <th>诊断时间</th>
  29. <th>诊断得分</th>
  30. <th>评价</th>
  31. <th width="180">操作</th>
  32. </tr>
  33. </thead>
  34. <tbody>
  35. <tr class="text-c" th:each="m,iterStat:${pageInfo.list}">
  36. <td th:text="${m.diagnostic_no}"></td>
  37. <td th:text="${m.create_time}"></td>
  38. <td th:text="${m.diagnostic_score}"></td>
  39. <td th:text="${m.satisfaction_score_desc}"></td>
  40. <td class="td-manage">
  41. <a th:if="${m.satisfaction_score != 0}" class="ml-5"
  42. th:onclick="'javascript:open_dialog(\'诊断详情\',\'/policy/diagnostic/companyRadar/'+${m.id}+'\');'">诊断详情</a>
  43. <a th:if="${m.satisfaction_score != 0}" class="ml-5"
  44. th:onclick="'javascript:open_dialog(\'评价详情\',\'/policy/evaluation/companyRadar/'+${m.id}+'\');'">评价详情</a>
  45. <a th:if="${m.satisfaction_score == 0}" class="ml-5"
  46. th:onclick="'javascript:open_dialog(\'评价并下载\',\'/policy/download/companyRadar/'+${m.id}+'\');'">评价并下载</a>
  47. </td>
  48. </tr>
  49. </tbody>
  50. </table>
  51. <div th:replace="admin/common/page :: page"></div>
  52. </div>
  53. </form>
  54. <script type="text/javascript" th:src="@{/js/common/page.js}"></script>
  55. <script th:inline="javascript">
  56. function open_dialog(title, url, w, h) {
  57. var index = layer_show(title, pagePath + url, w, h);
  58. layer.full(index);
  59. }
  60. </script>
  61. </body>
  62. </html>