Forráskód Böngészése

姓名登录名排序调整

yin 7 hónapja
szülő
commit
7e10947b2f

+ 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>