Browse Source

添加id用于区分

梅杰 6 years ago
parent
commit
05ece0e63f
1 changed files with 4 additions and 0 deletions
  1. 4 0
      src/main/resources/templates/task_list.html

+ 4 - 0
src/main/resources/templates/task_list.html

@@ -80,6 +80,8 @@
             <table id="task-list" class="table table-striped text-center" style="margin-top: 10px">
                 <thead><tr>
                     <!--<th></th>-->
+                    <th>考试号</th>
+                    <th>题号</th>
                     <th>应用名</th>
                     <!--<th>版本</th>-->
                     <th>审核状态</th>
@@ -93,6 +95,8 @@
 
                     <tr>
                         <!--<td><img th:src="${task.icon}" style="width: 25px; height: 25px;" /></td>-->
+                        <td><span  class="label label-info" th:text="${task.examId}"></span></td>
+                        <td><span  class="label label-info" th:text="${task.caseId}">题号</span></td>
                         <td><b><a href="#" id="task-name" th:text="${task.name}">{{ task.name }}</a></b></td>
                         <!--<td th:text="${task.version}"></td>-->
                         <td th:if="${task.numOfUndeal > 0}"><span  class="label label-info">审核中</span></td>