order_finish.blade.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. @extends('module.layouts.company')
  2. @push('meta')
  3. @endpush
  4. @push('css')
  5. <link href="{{ theme_asset('app/css/common.css') }}" rel="stylesheet">
  6. <link href="{{ theme_asset('app/css/aix.css') }}" rel="stylesheet">
  7. <link rel="stylesheet" type="text/css" href="{{ theme_asset('app/css/company/common.css') }}"/>
  8. <link rel="stylesheet" type="text/css" href="{{ theme_asset('app/css/company/company_points.css')}}"/>
  9. @endpush
  10. @push('js')
  11. <script type="text/javascript" src="{{theme_asset('jquery/jquery.common.js')}}"></script>
  12. @endpush
  13. @section('content')
  14. <div class="user_main">
  15. <div class="mleft">
  16. @include('module.section.service_left')
  17. </div>
  18. <div class="mright">
  19. <div class="user_pagetitle">
  20. <div class="pat_l">增值服务</div>
  21. <div class="clear"></div>
  22. </div>
  23. <div class="confirm_order_group" >
  24. <div class="confirm_title">支付成功</div>
  25. <div class="confirm_time link_blue">感谢您选择<span class="blue">【{{ $order->service_name or '' }}】</span> 服务,您的订单已完成
  26. @if($order->pay_type !=1 && config('aix.companyset.comset.com_set.open_invoice') ==1),<a href="">索取发票</a>@endif
  27. </div>
  28. @if($order->order_type!=10)
  29. <div class="confirm_contents" style="width: 80%">
  30. 您本次购买的【{{ $order->service_name or '' }}】购买时间 <span class="red">{{ $open_time }}</span> ,服务天数 <span class="red">{{ $setmealIncrDay }}</span> 天请尽快使用资源包。
  31. </div>
  32. @endif
  33. </div>
  34. </div>
  35. <div class="clear"></div>
  36. </div>
  37. @endsection