| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <!DOCTYPE HTML>
- <html xmlns:th="http://www.thymeleaf.org"
- xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
- layout:decorate="~{admin/common/common}">
- <head>
- <title>诊断用户组列表</title>
- </head>
- <body layout:fragment="content">
- <nav class="breadcrumb">
- <i class="Hui-iconfont"></i>
- 首页 <span class="c-gray en">></span>
- 企业政策雷达 <a class="btn btn-success radius r" style="line-height:1.6em;margin-top:3px"
- href="javascript:location.replace(location.href);" title="刷新"><i class="Hui-iconfont"></i></a>
- </nav>
- <form id="myForm" th:action="@{/policy/list/companyRadar}" th:method="get">
- <div class="page-container">
- <div style="text-align:center">
- </div>
- <div class="cl pd-5 bg-1 bk-gray mt-20">
- <span class="l">
- </span>
- <span class="r">共有数据:<strong th:text="${pageInfo?.total}" id="total">0</strong> 条</span>
- </div>
- <table class="table table-border table-bordered table-bg table-hover" style="table-layout: fixed;width:100%;">
- <thead>
- <tr class="text-c">
- <th>单号</th>
- <th>诊断时间</th>
- <th>诊断得分</th>
- <th>评价</th>
- <th width="180">操作</th>
- </tr>
- </thead>
- <tbody>
- <tr class="text-c" th:each="m,iterStat:${pageInfo.list}">
- <td th:text="${m.diagnostic_no}"></td>
- <td th:text="${m.create_time}"></td>
- <td th:text="${m.diagnostic_score}"></td>
- <td th:text="${m.satisfaction_score_desc}"></td>
- <td class="td-manage">
- <a th:if="${m.satisfaction_score != 0}" class="ml-5"
- th:onclick="'javascript:open_dialog(\'诊断详情\',\'/policy/diagnostic/companyRadar/'+${m.id}+'\');'">诊断详情</a>
- <a th:if="${m.satisfaction_score != 0}" class="ml-5"
- th:onclick="'javascript:open_dialog(\'评价详情\',\'/policy/evaluation/companyRadar/'+${m.id}+'\');'">评价详情</a>
- <a th:if="${m.satisfaction_score == 0}" class="ml-5"
- th:onclick="'javascript:open_dialog(\'评价并下载\',\'/policy/download/companyRadar/'+${m.id}+'\');'">评价并下载</a>
- </td>
- </tr>
- </tbody>
- </table>
- <div th:replace="admin/common/page :: page"></div>
- </div>
- </form>
- <script type="text/javascript" th:src="@{/js/common/page.js}"></script>
- <script th:inline="javascript">
- function open_dialog(title, url, w, h) {
- var index = layer_show(title, pagePath + url, w, h);
- layer.full(index);
- }
- </script>
- </body>
- </html>
|