| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {include file="layout/header" /}
- <style type="text/css">
- </style>
- <!-- banner -->
- <section class="wthree-row" id="pricing">
- <div class="container" style="font-size: 18px; font-weight: 800; margin-top: 20px; text-align: center; height: 100px; line-height: 5; background: #ebebeb;">
- 恭喜您!购买成功!
- </div>
- <div class="container" style="color: #595959; font-size: 18px; margin-top: 40px; display: flex;">
- <span style="width: 50%; text-align: right;">订单编号:</span>
- {$data->orderID}
- </div>
- <div class="container" style="color: #595959; font-size: 18px; margin-top: 10px; display: flex;">
- <span style="width: 50%; text-align: right;">购买服务:</span>
- {$data->product}
- </div>
- <div class="container" style="color: #595959; font-size: 18px; margin-top: 10px; display: flex;">
- <span style="width: 50%; text-align: right;">到期时间:</span>
- {$data->userProduct_maturityTime}
- </div>
- <div class="container" style="color: #595959; font-size: 18px; margin-top: 10px; display: flex;">
- <span style="width: 50%; text-align: right; ">购买金额:</span>
- <span style="color: #FF2929">¥{$data->order_money}</span>
- </div>
- <div class="container" style="color: #595959; font-size: 18px; display: flex; justify-content: center; margin-top: 40px; margin-bottom: 60px">
- <div style="display: flex; justify-content: center">
- <div onclick="loadUrl(1)" style="border: 2px solid #afafaf; padding: 5px 25px; margin-right: 20px; cursor:pointer;">返回首页</div>
- <div onclick="loadUrl(2)" style="border: 2px solid #afafaf; padding: 5px 25px; cursor:pointer;">继续购买</div>
- </div>
- </div>
- </section>
- <script>
- const myHost = "http://" + window.location.host;
- function loadUrl(value) {
- if (value == 1) {
- window.location.href = myHost + "/home/index/index.html";
- } else {
- window.location.href = myHost + "/home/product/product.html";
- }
- }
- </script>
- {include file="layout/footer" /}
|