code.blade.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. @extends('mobile.module.layouts.content')
  2. @push('meta')
  3. @endpush
  4. @push('css')
  5. <link rel="stylesheet" href="{{theme_asset('mobile/css/company.css')}}">
  6. @endpush
  7. @push('js')
  8. @endpush
  9. @section('content')
  10. <div class="favorites-top-nav list_height">
  11. <div class="n-cell " style="width: 100%; position: relative; text-align:center" >出示二维码至扫描仪器处</div>
  12. <div class="clear"></div>
  13. </div>
  14. <div class="split-block"></div>
  15. <div class="split-block-title link_yellow" style="text-align: center;">
  16. {!! $img !!}
  17. </div>
  18. @endsection
  19. @section('script')
  20. <script>
  21. $(function () {
  22. setInterval(function(){
  23. var url = "{{route('api.qrcode')}}"+'?hashid='+"{{$hashid}}";
  24. $.get(url, function (data) {
  25. if (data.data.status == 1)
  26. {
  27. window.location.href = "{{route($sub_site.'mobile.firm.jobfair.scene')}}"+'?jobfair_id='+data.data.jobfair_id
  28. }
  29. })
  30. }, 3000);
  31. });
  32. </script>
  33. @endsection