123456789101112131415161718192021222324252627 |
- @extends('mobile.module.layouts.content')
- @push('meta')
- <meta name="csrf-token" content="{{ csrf_token() }}">
- @endpush
- @push('css')
- <link href="{{ theme_asset('mobile/css/personal.css') }}" rel="stylesheet">
- <link href="{{ theme_asset('mobile/css/company.css') }}" rel="stylesheet">
- @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;">
- {!! $user_code !!}
- <p>该二维码适用于参加现场招聘会出入场使用</p>
- </div>
- @endsection
- @section('script')
- @endsection
|