123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>黑龙江昆仑盛和安体检中心</title>
- <link rel="stylesheet" type="text/css" href="../style/common.css"></link>
- <link rel="stylesheet" type="text/css" href="../style/user.css"></link>
- <!--[if lt IE 9]>
- <script src="http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script>
- <![endif]--><!--窗口自适应适配低端IE-->
- <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
- </head>
- <body>
- <div th:include="/fragments :: header"></div>
-
- <div class="wp">
- <div class="main bgFF">
- <ul class="subnav l mt20">
- <li class="u2"><a href="/mypayedorders" class="ca">预约体检</a></li>
- <li class="u3"><a href="/completedorders">报告查询</a></li>
- <li class="u6"><a href="/fqa">常见问题</a></li>
- <li class="u7"><a href="#">修改密码</a></li>
- <li class="u8"><a href="#">退出登录</a></li>
- </ul>
- <div class="l" style="width:80%; ">
- <div class="f12 c999 mt20">请选择已购套餐项 *</div>
- <div th:if="${orders.size() eq 0}">
- <table class="tab-1-EEE mt20">
- <tr>
- <td><div class="u-ready-none"><img src="/style/list_none.png" /><p>暂无有效订单,请选择 <a href="/">体检套餐</a></p></div></td>
- </tr>
- </table>
- </div>
- <table class="tab-1-EEE mt20" th:each="order : ${orders}">
- <thead>
- <tr>
- <td>购买日期:
- <span th:text="${order.ctime}"></span>
- <span class="y cOrange"><span th:text="${order.etime}"></span>前使用</span>
- </td>
- </tr>
- </thead>
- <tbody>
- <tr th:each="item : ${order.items}">
- <td>
- <div class="l">
- <strong class="f12" th:text="${item.good.name}"></strong>
- <div class="cBlue mt10" th:if="${item.fa == null}">适应人群:<span>*</span></div>
- <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>
- </div>
- <a th:if="${item.fa == null}" th:attr="href='/appointment/goappointment/'+${item.bid}+'/'+${item.id}" class="btn-blue y" >预约体检</a>
- <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>
- <a th:if="${item.fa != null and item.fa.tjstatus eq 0}" href="#" class="btn-blue y" >已登记</a>
- <a th:if="${item.fa != null and item.fa.tjstatus eq 1}" href="#" class="btn-blue y" >体检结束(报告生成中)</a>
- <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>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- </div>
- <div th:replace="/fragments :: footer"></div>
- </body>
- </html>
|