You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
3.7 KiB

7 years ago
  1. <!DOCTYPE html><html><head><meta http-equiv="content-type" content="text/html;charset=utf-8"/>
  2. <title>我的订单</title><meta content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=0" name="viewport">
  3. <link href="<?php echo env('APP_URL'); ?>/css/weixin/style.css" type="text/css" rel="stylesheet">
  4. <script type="text/javascript" src="<?php echo env('APP_URL'); ?>/js/jquery.min.js"></script><script type="text/javascript" src="<?php echo env('APP_URL'); ?>/js/weixin/mobile.js"></script>
  5. <meta name="keywords" content="关键词"><meta name="description" content="描述"></head><body>
  6. <div class="classreturn loginsignup">
  7. <div class="ds-in-bl return"><a href="javascript:history.back(-1);"><img src="<?php echo env('APP_URL'); ?>/images/weixin/return.png" alt="返回"></a></div>
  8. <div class="ds-in-bl tit center"><span>我的订单</span></div>
  9. <div class="ds-in-bl nav_menu"><a href="javascript:void(0);"><img src="<?php echo env('APP_URL'); ?>/images/weixin/class1.png" alt="菜单"></a></div>
  10. </div>
  11. @include('weixin.common.headerNav')
  12. <div class="floor">
  13. <form action="<?php echo route('weixin_order_dopay'); ?>" method="POST" id="goto_pay">
  14. <input type="hidden" name="order_id" value="<?php echo $order_id; ?>">
  15. <div class="step_main">
  16. <div class="clue_on"><p>您的订单已成功生成,选择您想用的支付方式进行支付。</p></div>
  17. <div class="order_info">
  18. <p>订单编号:<span><?php echo $order_id; ?></span></p>
  19. <p>应付金额:<span>¥<?php echo $order_detail['order_amount']; ?></span></p>
  20. </div>
  21. <div class="payment mt10">
  22. <h3>选择支付方式付款</h3>
  23. <dl class="defray">
  24. <?php if($is_balance_enough){ ?>
  25. <dd>
  26. <p class="radio"><input id="payment_yuer" name="payment_id" value="1" type="radio"></p>
  27. <label for="payment_yuer"><p class="logo"><img src="<?php echo env('APP_URL'); ?>/images/weixin/yuepay_icon.png"></p>
  28. <p class="explain">余额支付</p></label>
  29. </dd>
  30. <?php } ?>
  31. <dd>
  32. <p class="radio"><input id="payment_wxpay" name="payment_id" value="2" type="radio" checked="checked"></p>
  33. <label for="payment_wxpay"><p class="logo"><img src="<?php echo env('APP_URL'); ?>/images/weixin/wxpay_icon.png"></p>
  34. <p class="explain">微信支付</p></label>
  35. </dd>
  36. </dl>
  37. <div class="cl"></div>
  38. </div>
  39. <a href="javascript:$('#goto_pay').submit();" class="bottoma" style="margin-top:10px;margin-bottom:15px;background-color:#1aad19;border:1px solid #179e16;color:white;border-radius:2px;text-align:center;">确认支付</a>
  40. <div class="remark" style="color:#666;">
  41. 您可以在 <a href="<?php echo route('weixin_order_list'); ?>">我的订单</a> 中查看或取消您的订单。<br>
  42. 如果您现在不方便支付,可以随后到 <a href="<?php echo route('weixin_order_list'); ?>">我的订单</a>完成支付,我们会在48小时内为您保留未支付的订单。
  43. </div>
  44. </div>
  45. </form>
  46. </div>
  47. <style>
  48. .step_main{padding:10px;}
  49. .step_main .clue_on{color:#666;}
  50. .step_main .order_info{color:#999;}
  51. .step_main .order_info span{color:#f34;}
  52. .step_main h4,.step_main h3{padding:5px 0;font-weight:normal;color:#333;}
  53. .defray{margin-top:5px;}
  54. .defray dd{min-height:36px;line-height:36px;border-top:1px solid #eee;padding:6px 0;clear:both;}
  55. .defray dd p.logo img{float:left;height:36px;}
  56. .defray dd p.explain{float:left;color:#787878;margin-left:10px;}
  57. .radio{float:left;width:20px;}
  58. .bottoma{display:block;font-size:18px;padding:10px;color:white;background-color:#f23030;text-align:center;}
  59. </style>
  60. @include('weixin.common.footer')
  61. </body></html>