mypayedorders.html 4.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>黑龙江昆仑盛和安体检中心</title>
  6. <link rel="stylesheet" type="text/css" href="/style/common.css"></link>
  7. <link rel="stylesheet" type="text/css" href="/style/user.css"></link>
  8. <!--[if lt IE 9]>
  9. <script src="http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script>
  10. <![endif]--><!--窗口自适应适配低端IE-->
  11. <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
  12. </head>
  13. <body>
  14. <div th:include="/fragments :: header"></div>
  15. <div class="wp">
  16. <div class="main bgFF">
  17. <ul class="subnav l mt20">
  18. <li class="u2"><a href="/mypayedorders" class="ca">预约体检</a></li>
  19. <li class="u3"><a href="/tjorders">报告查询</a></li>
  20. <li class="u3"><a href="/family/list">家人管理</a></li>
  21. <li class="u6"><a href="/fqa">常见问题</a></li>
  22. <li class="u7"><a th:attr="href=${ucweb} + '#/resetPwd'" target="_blank">修改密码</a></li>
  23. <li class="u8"><a th:attr="href=${uccenter} + 'login/loginout?redirect=' + ${outredirect}">退出登录</a></li>
  24. </ul>
  25. <div class="l" style="width:80%; ">
  26. <div class="f12 c999 mt20">请选择已购套餐项 *</div>
  27. <div th:if="${orders.size() eq 0}">
  28. <table class="tab-1-EEE mt20">
  29. <tr>
  30. <td><div class="u-ready-none"><img src="/style/list_none.png" /><p>暂无有效订单,请选择 <a href="/">体检套餐</a></p></div></td>
  31. </tr>
  32. </table>
  33. </div>
  34. <table class="tab-1-EEE mt20" th:each="order : ${orders}">
  35. <thead>
  36. <tr>
  37. <td>购买日期:
  38. <span th:text="${order.ctime}"></span>
  39. <span class="y cOrange"><span th:text="${order.etime}"></span>前使用</span>
  40. </td>
  41. </tr>
  42. </thead>
  43. <tbody>
  44. <tr th:each="item : ${order.items}">
  45. <td>
  46. <div class="l">
  47. <strong class="f12" th:text="${item.good.name}"></strong>
  48. <div class="cBlue mt10" th:if="${item.fa == null}">适应人群:<span>*</span></div>
  49. <div class="cBlue mt10" th:if="${item.fa != null}" >体检人:<span th:text="${item.fa.name}"></span> 预约日期:<span th:text="${item.fa.atime + ' ' + item.fa.extend}"></span></div>
  50. </div>
  51. <a th:if="${item.fa == null}" th:attr="href='/appointment/goappointment/'+${item.bid}+'/'+${item.id}" class="btn-blue y" >预约体检</a>
  52. <a th:if="${item.fa != null and item.fa.tjstatus eq -3}" href="#" class="btn-blue y" >已退款</a>
  53. <a th:if="${item.fa != null and item.fa.tjstatus eq -2}" href="#" class="btn-blue y" >已取消</a>
  54. <a th:if="${item.fa != null and item.fa.tjstatus eq -1}" th:attr="href='/appointment/gochangeappointment/'+${item.fa.aid}" class="btn-blue y" >改约</a>
  55. <a th:if="${item.fa != null and item.fa.tjstatus eq 0}" href="#" class="btn-blue y" >已登记</a>
  56. <a th:if="${item.fa != null and item.fa.tjstatus eq 1}" href="#" class="btn-blue y" >报告生成中</a>
  57. <a th:if="${item.fa != null and item.fa.tjstatus eq 4}" href="#" class="btn-blue y" >报告生成中</a>
  58. <a th:if="${item.fa != null and item.fa.tjstatus eq 5}" href="#" class="btn-blue y" >报告生成中</a>
  59. <a th:if="${item.fa != null and item.fa.tjstatus eq 7}" href="#" class="btn-blue y" >报告生成中</a>
  60. <a th:if="${item.fa != null and item.fa.tjstatus eq 2}" th:attr="href=${item.fa.reportUrl}" class="btn-blue y" target="_blank" >查看报告</a>
  61. <a th:if="${item.fa != null and item.fa.tjstatus eq 6}" th:attr="href=${item.fa.reportUrl}" class="btn-blue y" target="_blank" >查看报告</a>
  62. </td>
  63. </tr>
  64. </tbody>
  65. </table>
  66. </div>
  67. </div>
  68. </div>
  69. <div th:replace="/fragments :: footer"></div>
  70. </body>
  71. </html>