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.

62 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>¥608.00</span></p>
  20. </div>
  21. <div class="payment mt10">
  22. <h3>选择支付方式付款</h3>
  23. <dl class="defray">
  24. <dd>
  25. <p class="radio"><input id="payment_yuer" name="payment_id" value="4" type="radio"></p>
  26. <label for="payment_yuer"><p class="logo"><img src="<?php echo env('APP_URL'); ?>/images/weixin/yuepay_icon.png"></p>
  27. <p class="explain">余额支付</p></label>
  28. </dd>
  29. <dd>
  30. <p class="radio"><input id="payment_wxpay" name="payment_id" value="3" type="radio" checked="checked"></p>
  31. <label for="payment_wxpay"><p class="logo"><img src="<?php echo env('APP_URL'); ?>/images/weixin/wxpay_icon.png"></p>
  32. <p class="explain">微信支付</p></label>
  33. </dd>
  34. </dl>
  35. <div class="cl"></div>
  36. </div>
  37. <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>
  38. <div class="remark" style="color:#666;">
  39. 您可以在 <a href="<?php echo route('weixin_order_list'); ?>">我的订单</a> 中查看或取消您的订单。<br>
  40. 如果您现在不方便支付,可以随后到 <a href="<?php echo route('weixin_order_list'); ?>">我的订单</a>完成支付,我们会在48小时内为您保留未支付的订单。
  41. </div>
  42. </div>
  43. </form>
  44. </div>
  45. <style>
  46. .step_main{padding:10px;}
  47. .step_main .clue_on{color:#666;}
  48. .step_main .order_info{color:#999;}
  49. .step_main .order_info span{color:#f34;}
  50. .step_main h4,.step_main h3{padding:5px 0;font-weight:normal;color:#333;}
  51. .defray{margin-top:5px;}
  52. .defray dd{min-height:36px;line-height:36px;border-top:1px solid #eee;padding:6px 0;clear:both;}
  53. .defray dd p.logo img{float:left;height:36px;}
  54. .defray dd p.explain{float:left;color:#787878;margin-left:10px;}
  55. .radio{float:left;width:20px;}
  56. .bottoma{display:block;font-size:18px;padding:10px;color:white;background-color:#f23030;text-align:center;}
  57. </style>
  58. @include('weixin.common.footer')
  59. </body></html>