| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <!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">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1">
- <meta name="apple-mobile-web-app-capable" content="yes\">
- <meta content="telephone=no" name="format-detection">
- <meta name="apple-mobile-web-app-status-bar-style" content="black">
- <meta name="MobileOptimized" content="width">
- <meta name="HandheldFriendly" content="true">
- <meta name="robots" content="noindex">
- <meta name="spiders" content="noindex">
- <title>票券</title>
- <style type="text/css">
- /*<![CDATA[*/
- body {
- margin: 0px;
- font-size: 14px;
- margin: 0px;
- background: #000
- url(/images/active/background.jpg)
- repeat-x top;
- color: #5b5b5b;
- }
- /*]]>*/
- </style>
- </head>
- <body>
- <div style="width: 100%;">
- <div style="width: 90%; margin: 5% auto 0 auto; max-width: 330px;">
- <img src="/images/active/round_top.png"
- style="width: 100%; border: none;">
- <div style="background-color: #f1f2f2; padding: 0 8% 10px;">
- <div style="text-align: center">
- <a href="javascript:void(0)" target="_blank" style="border: none;text-decoration:none;font-size:18px;color:#0088d2;">
- <?= $this->context->merchant['merchantName'] ?>
- </a>
- </div>
- <div style="text-align: center; height: 105px; position: relative;">
- <img src="/images/active/A4B3C8F66A8F09965384F2173C70CE9C.gif"
- alt=""
- style="clip: rect(10px, 145px, 145px, 10px); position: absolute; left: 50%; top: -27%; margin-left: -78px; -webkit-transform: scale(.7); transform: scale(.7);">
-
- </div>
- <div
- style="text-align: center; padding-bottom: 8px; border-bottom: 8px solid #969696; margin-bottom: 7px; font-size: 12px;">
- 票号:<?= $order['id'] ?></div>
- <h2
- style="padding-bottom: 8px; font-size: 18px; font-weight: normal; border-bottom: 1px solid #868686; margin-bottom: 8px;">
- <a href="javascript:void(0)"
- target="_blank" style="color: #0088d2; text-decoration: none;"><?= $active['title'] ?></a>
- </h2>
- <div
- style="border-bottom: 8px solid #969696; padding: 0px 0px 10px; margin-bottom: 10px;">
- <div style="margin-bottom: 5px;">
- <img src="/images/active/user.png" alt="姓名"
- style="width: 16px; border: none; vertical-align: middle; margin-right: 5px;">
- <?= $order['bookName'] ?>
- </div>
- <div style="margin-bottom: 5px;">
- <img src="/images/active/time.png" alt="时间"
- style="width: 16px; border: none; vertical-align: middle; margin-right: 5px;">
- <span><?php
- if(date("m月d日",$active['startTime']) == date("m月d日",$active['endTime'])){
- echo date("m月d日 H:i",$active['startTime']).' ~ '.date("H:s",$active['endTime']);
- }else{
- echo date("m月d日 H:i",$active['startTime']).' ~ '.date("m月d日 H:s",$active['endTime']);
- }
- ?></span>
- </div>
- <div>
- <img src="/images/active/place.png" alt="地点" style="width: 16px; border: none; vertical-align: middle; margin-right: 5px;">
- <?= $active['address'] ?> <a href="http://api.map.baidu.com/geocoder?address=<?= $active['address'] ?>&output=html" style="color: #0088d2; text-decoration: none;">查看地图</a>
- </div>
- <ul style="list-style: none; margin: 10px 0 10px 0; padding: 0; line-height: 20px;">
- <li><span>电话:</span><span><?= $order['bookMobile'] ?></span></li>
- <!-- <li><span>票价:</span><span><span style="color: green;">免费</span></span></li> -->
- </ul>
- </div>
- </div>
- <img class="footer" src="/images/active/footer.png" style="width: 100%; border: none;">
- </div>
- </div>
- </body>
- </html>
|