1. 指标子集映射
This commit is contained in:
parent
41c6b179fa
commit
f0f305ed23
|
@ -0,0 +1,87 @@
|
||||||
|
<!-- Page body -->
|
||||||
|
<div class="page-body">
|
||||||
|
<div class="container-xl">
|
||||||
|
<!-- 面包屑导航 -->
|
||||||
|
<div th:replace="fragments/dialog::navigateDialog(${chainMenuList})"></div>
|
||||||
|
<div class="row g-4 mb-4">
|
||||||
|
|
||||||
|
<div class="col-12">
|
||||||
|
<div class="card">
|
||||||
|
<div class="card-header">
|
||||||
|
<h3 class="card-title">评估模板列表</h3>
|
||||||
|
<div class="card-actions">
|
||||||
|
<a href="javascript:void(0)" class="btn btn-primary" onclick="_toAdd()">
|
||||||
|
<!-- Download SVG icon from http://tabler-icons.io/i/plus -->
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24"
|
||||||
|
viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none"
|
||||||
|
stroke-linecap="round" stroke-linejoin="round">
|
||||||
|
<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
|
||||||
|
<path d="M12 5l0 14"></path>
|
||||||
|
<path d="M5 12l14 0"></path>
|
||||||
|
</svg>
|
||||||
|
新增
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div th:replace="fragments/dialog::searchConditionDialog(${condition})"></div>
|
||||||
|
<div class="table-responsive">
|
||||||
|
<table class="table card-table table-vcenter text-nowrap datatable">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
|
||||||
|
<th class="w-1">No.
|
||||||
|
<!-- Download SVG icon from http://tabler-icons.io/i/chevron-up -->
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-sm icon-thick" width="24"
|
||||||
|
height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor"
|
||||||
|
fill="none" stroke-linecap="round" stroke-linejoin="round">
|
||||||
|
<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
|
||||||
|
<path d="M6 15l6 -6l6 6"></path>
|
||||||
|
</svg>
|
||||||
|
</th>
|
||||||
|
<th>模板名称</th>
|
||||||
|
<th>对应指标</th>
|
||||||
|
<th>模板状态</th>
|
||||||
|
<th>模板描述</th>
|
||||||
|
<th>创建时间</th>
|
||||||
|
|
||||||
|
<th></th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr th:if="${result.list!=null}" th:each="project : ${result.list}">
|
||||||
|
<td th:text="${project.seq}"></td>
|
||||||
|
<td th:text="${project.templateName}"></td>
|
||||||
|
<td th:text="${project.indicatorTopName}"></td>
|
||||||
|
<td th:text="${project.templateStatusName}"></td>
|
||||||
|
<td th:text="${project.templateMemo}"></td>
|
||||||
|
<td th:text="${#temporals.format(project.createDate, 'yyyy-MM-dd HH:mm:ss')}"></td>
|
||||||
|
|
||||||
|
<td>
|
||||||
|
<div class="btn-list flex-nowrap">
|
||||||
|
<a href="javascript:void(0)" class="btn btn-primary"
|
||||||
|
th:onclick="|_startEvaluation('${project.id}')|">
|
||||||
|
编辑
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<a href="javascript:void(0)" class=" btn btn-danger"
|
||||||
|
th:onclick="|_projectDelete('${project.id}')|">
|
||||||
|
删除
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div th:replace="fragments/dialog::paginationDialog(${result})"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div th:replace="fragments/dialog::confirmationDialog"></div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
|
||||||
|
|
||||||
|
</script>
|
Loading…
Reference in New Issue
Block a user