汇联通执法队后台管理系统
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

row.jsp 1.1KB

1234567891011121314151617181920212223242526
  1. <%@ page contentType="text/html;charset=utf-8"%>
  2. <%@ include file="/WEB-INF/jsp/include.jsp"%>
  3. <tr>
  4. <td>${fn:escapeXml(vo.name)}</td>
  5. <td >${fn:escapeXml(vo.user.loginName)}</td>
  6. <td style="width:150px"> <javatime:format value="${vo.creatTime}" pattern="yyyy-MM-dd HH:mm:ss" /></td>
  7. <td style="width:150px" >
  8. <c:if test="${vo.status eq 'NEW'}">
  9. <a class="editable" href="#" data-pk="${vo.id}" data-type="text" data-name="startTime" data-title="修改时间" >
  10. </c:if>
  11. <javatime:format value="${vo.startTime}" pattern="yyyy-MM-dd HH:mm:ss" />
  12. <c:if test="${vo.status eq 'NEW'}">
  13. </a>
  14. </c:if>
  15. </td>
  16. <td>${vo.taskType.value}(${vo.job})</td>
  17. <td style="width:120px">${vo.status.value}</td>
  18. <td style="width:130px">
  19. <c:if test="${vo.status eq 'NEW'}">
  20. <a href="${rootUrl}app/timing/task/delete/${vo.id}" class="taiji_remove {confirm_message:'删除后任务不再执行,你确定要删除吗? '} taiji_acl">取消并删除</a>
  21. </c:if>
  22. <a href="${rootUrl}app/timing/task/view/${vo.id}" class="taiji_modal">查看</a>
  23. </td>
  24. </tr>