浏览代码

姓名登录名排序调整

yin 7 月之前
父节点
当前提交
7e10947b2f
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      stmms-web/src/main/webapp/WEB-INF/views/modules/exam/markerSubject.jsp

+ 2 - 2
stmms-web/src/main/webapp/WEB-INF/views/modules/exam/markerSubject.jsp

@@ -31,16 +31,16 @@
 		<thead>
 			<tr>
 				<th></th>
-				<th>登录名</th>
 				<th>姓名</th>
+				<th>登录名</th>
 			</tr>
 		</thead>
 		<tbody>
 		<c:forEach items="${query.result}" var="user">
 			<tr>
 				<td><input name="userIds" type="checkbox" value="${user.id }"/></td>
-				<td>${user.loginName}</td>
 				<td>${user.name}</td>
+				<td>${user.loginName}</td>
 			</tr>
 		</c:forEach>
 		</tbody>