123456789101112131415161718192021222324252627282930313233343536373839 |
- @extends('mobile.module.layouts.content')
- @push('meta')
- @endpush
- @push('css')
- <link rel="stylesheet" href="{{theme_asset('mobile/css/company.css')}}">
- @endpush
- @push('js')
- @endpush
- @section('content')
- <div class="favorites-top-nav list_height">
- <div class="n-cell " style="width: 100%; position: relative; text-align:center" >出示二维码至扫描仪器处</div>
- <div class="clear"></div>
- </div>
- <div class="split-block"></div>
- <div class="split-block-title link_yellow" style="text-align: center;">
- {!! $img !!}
- </div>
- @endsection
- @section('script')
- <script>
- $(function () {
- setInterval(function(){
- var url = "{{route('api.qrcode')}}"+'?hashid='+"{{$hashid}}";
- $.get(url, function (data) {
- if (data.data.status == 1)
- {
- window.location.href = "{{route($sub_site.'mobile.firm.jobfair.scene')}}"+'?jobfair_id='+data.data.jobfair_id
- }
- })
- }, 3000);
- });
- </script>
- @endsection
|