buy.blade.php 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. @extends('user.layouts')
  2. @section('css')
  3. <link href="/assets/examples/css/pages/invoice.css" type="text/css" rel="stylesheet">
  4. @endsection
  5. @section('content')
  6. <div class="page-content">
  7. <div class="panel">
  8. <div class="panel-body container-fluid">
  9. <div class="page-invoice-table table-responsive">
  10. <table class="table table-hover text-md-center">
  11. <thead>
  12. <tr>
  13. <th>{{trans('home.service_name')}}</th>
  14. <th>{{trans('home.service_desc')}} </th>
  15. <th>{{trans('home.service_price')}}</th>
  16. <th>{{trans('home.service_quantity')}}</th>
  17. </tr>
  18. </thead>
  19. <tbody>
  20. <tr>
  21. <td class="text-middle">{{$goods->name}} </td>
  22. <td>{{trans('home.service_days')}}
  23. <strong>{{$goods->type==1? $dataPlusDays:$goods->days}} {{trans('home.day')}}</strong>
  24. <br>
  25. <strong>{{$goods->traffic_label}}</strong> {{trans('home.bandwidth')}}
  26. </td>
  27. <td class="text-middle"> ¥{{$goods->price}} </td>
  28. <td class="text-middle"> x 1</td>
  29. </tr>
  30. </tbody>
  31. </table>
  32. </div>
  33. @if($goods->type <= 2)
  34. <div class="row">
  35. <div class="col-lg-3 pl-30">
  36. <div class="input-group">
  37. <input type="text" class="form-control" name="coupon_sn" id="coupon_sn"
  38. placeholder="{{trans('home.coupon')}}"/>
  39. <div class="input-group-btn">
  40. <button type="submit" class="btn btn-info" onclick="redeemCoupon()">
  41. <i class="icon wb-loop" aria-hidden="true"></i> {{trans('home.redeem_coupon')}}
  42. </button>
  43. </div>
  44. </div>
  45. </div>
  46. <div class="col-lg-3 offset-lg-6 text-right">
  47. <p>{{trans('home.service_subtotal_price')}}
  48. <span>¥{{$goods->price}}</span>
  49. </p>
  50. <p class="page-invoice-amount">{{trans('home.service_total_price')}}
  51. <span class="grand-total">¥{{$goods->price}}</span>
  52. </p>
  53. </div>
  54. @endif
  55. <div class="col-md-12 mb-30">
  56. <div class="float-right">
  57. <div class="btn-group btn-group-lg">
  58. @include('user.components.purchase')
  59. @if($goods->type <= 2)
  60. <button class="btn btn-flat" onclick="pay('credit','0')">
  61. <img src="/assets/images/payment/creditpay.svg" height="48px" alt="{{trans('home.service_pay_button')}}"/>
  62. </button>
  63. @endif
  64. </div>
  65. </div>
  66. </div>
  67. </div>
  68. </div>
  69. </div>
  70. </div>
  71. @endsection
  72. @section('script')
  73. <script type="text/javascript">
  74. // 校验优惠券是否可用
  75. function redeemCoupon() {
  76. const coupon_sn = $('#coupon_sn').val();
  77. const goods_price = '{{$goods->price}}';
  78. $.ajax({
  79. method: 'POST',
  80. url: '/redeemCoupon',
  81. async: false,
  82. data: {_token: '{{csrf_token()}}', coupon_sn: coupon_sn, price: '{{$goods->price}}'},
  83. dataType: 'json',
  84. success: function(ret) {
  85. $('.input-group-prepend').remove();
  86. if (ret.status === 'success') {
  87. $('#coupon_sn').
  88. parent().
  89. prepend(
  90. '<div class="input-group-prepend"><span class="input-group-text bg-green-700"><i class="icon wb-check white" aria-hidden="true"></i></span></div>');
  91. // 根据类型计算折扣后的总金额
  92. let total_price = 0;
  93. if (ret.data.type === 2) {
  94. total_price = goods_price * (1 - ret.data.value / 100);
  95. $('.page-invoice-amount').
  96. parent().
  97. prepend('<p>优惠码 - ' + ret.data.name + ' ' + ret.data.value + '折<br> 优惠 <span>¥ - ' +
  98. total_price.toFixed(2) + '</span></p>');
  99. total_price = goods_price - total_price;
  100. }
  101. else {
  102. total_price = goods_price - ret.data.value;
  103. total_price = total_price > 0 ? total_price : 0;
  104. if (ret.data.type === 1) {
  105. $('.page-invoice-amount').
  106. parent().
  107. prepend('优惠码-' + ret.data.name + ' <span>¥ - ' + ret.data.value + '</span>');
  108. }
  109. }
  110. // 四舍五入,保留2位小数
  111. $('.grand-total').text('¥' + total_price.toFixed(2));
  112. swal.fire({
  113. title: ret.message,
  114. type: 'success',
  115. timer: 1300,
  116. showConfirmButton: false,
  117. });
  118. }
  119. else {
  120. $('.grand-total').text('¥' + goods_price);
  121. $('#coupon_sn').
  122. parent().
  123. prepend(
  124. '<div class="input-group-prepend"><span class="input-group-text bg-red-700"><i class="icon wb-close white" aria-hidden="true"></i></span></div>');
  125. swal.fire({
  126. title: ret.title,
  127. text: ret.message,
  128. type: 'error',
  129. });
  130. }
  131. },
  132. });
  133. }
  134. // 检查预支付
  135. function pay(method, pay_type) {
  136. // 存在套餐 和 购买类型为套餐时 出现提示
  137. if ('{{$activePlan}}' === '1' && '{{$goods->type}}' === '2') {
  138. swal.fire({
  139. title: '套餐存在冲突',
  140. html: '<p>当前购买套餐将自动设置为 <code>预支付套餐</code><p><ol class="text-left"><li> 预支付套餐会在生效中的套餐失效后自动开通!</li><li> 您可以在支付后手动激活套餐!</li></ol>',
  141. type: 'info',
  142. showCancelButton: true,
  143. cancelButtonText: '返 回',
  144. confirmButtonText: '继 续',
  145. }).then((result) => {
  146. if (result.value) {
  147. contiousPay(method, pay_type);
  148. }
  149. });
  150. }
  151. else {
  152. contiousPay(method, pay_type);
  153. }
  154. }
  155. function contiousPay(method, pay_type) {
  156. const goods_id = '{{$goods->id}}';
  157. const coupon_sn = $('#coupon_sn').val();
  158. $.ajax({
  159. method: 'POST',
  160. url: '/payment/purchase',
  161. async: false,
  162. data: {
  163. _token: '{{csrf_token()}}',
  164. goods_id: goods_id,
  165. coupon_sn: coupon_sn,
  166. method: method,
  167. pay_type: pay_type,
  168. },
  169. dataType: 'json',
  170. success: function(ret) {
  171. if (ret.status === 'success') {
  172. swal.fire({
  173. title: ret.message,
  174. type: 'success',
  175. timer: 1300,
  176. showConfirmButton: false,
  177. });
  178. if (method === 'credit') {
  179. swal.fire({title: ret.message, type: 'success', timer: 1000, showConfirmButton: false}).
  180. then(() => window.location.href = '/invoices');
  181. }
  182. if (ret.data) {
  183. window.location.href = '/payment/' + ret.data;
  184. }
  185. else if (ret.url) {
  186. window.location.href = ret.url;
  187. }
  188. }
  189. else if (ret.status === 'info') {
  190. swal.fire({title: ret.title, text: ret.message, type: 'question'});
  191. }
  192. else {
  193. swal.fire({
  194. title: ret.message,
  195. type: 'error',
  196. });
  197. }
  198. },
  199. error: function() {
  200. swal.fire('未知错误', '请开工单通知客服', 'error');
  201. },
  202. });
  203. }
  204. </script>
  205. @endsection