汇联通执法队后台管理系统
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

row.jsp 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <%@ page contentType="text/html;charset=utf-8"%>
  2. <%@ include file="/WEB-INF/jsp/include.jsp"%>
  3. <tr>
  4. <td>
  5. ${fn:escapeXml(vo.id)}
  6. </td>
  7. <td>
  8. ${fn:escapeXml(vo.serviceType.value)}
  9. </td>
  10. <td>
  11. ${fn:escapeXml(vo.vehiclePlate) }_${fn:escapeXml(vo.vehiclePlatecolor.value) }
  12. </td>
  13. <td>
  14. ${fn:escapeXml(vo.applicantName)}
  15. </td>
  16. <td>
  17. <javatime:format value="${vo.insertTime}" pattern="yyyy-MM-dd HH:mm:ss" />
  18. </td>
  19. <td>
  20. ${fn:escapeXml(vo.status.value)}
  21. </td>
  22. <td>
  23. <c:if test="${not empty vo.status}">
  24. <c:if test="${vo.status == 'REFUSED'}">
  25. <a href="${rootUrl}app/service/request/inquiry/view/${vo.id}" class="taiji_modal taiji_acl">查看详情</a>
  26. </c:if>
  27. <c:if test="${vo.status == 'SERVICE_ENDED'}">
  28. <a href="${rootUrl}app/service/request/inquiry/view/${vo.id}" class="taiji_modal taiji_acl">查看详情</a>
  29. </c:if>
  30. <c:if test="${vo.status == 'AUDITING'}">
  31. <a href="${rootUrl}app/service/request/inquiry/approval/${vo.id}" class="taiji_modal taiji_acl">审批</a>
  32. </c:if>
  33. <c:if test="${vo.status == 'PASSED'}">
  34. <a href="${rootUrl}app/service/request/inquiry/view/${vo.id}" class="taiji_modal taiji_acl">查看详情</a>
  35. <a href="${rootUrl}app/service/request/inquiry/finish/${vo.id}" class="taiji_modal taiji_operate">结束服务</a>
  36. </c:if>
  37. </c:if>
  38. </td>
  39. </tr>