123456789101112131415161718192021222324252627282930313233343536 |
- @extends('mobile.module.layouts.ic')
- @push('meta')
- @endpush
- @push('css')
- <style>
- .iframe {width:100%;height:calc(100vh - .9rem);}
- </style>
- @endpush
- @push('js')
- @endpush
- @section('content')
- {{-- 头部--}}
- <div class="headernavfixed">
- <div class="headernav font18">
- <div class="title">
- <div class="n-tit-box">
- 人才政策
- </div>
- <div class="return js-back for-event" data-href="{{route('mobile.health.index')}}"></div>
- </div>
- </div>
- </div>
- <iframe frameborder=0 framespacing=0 marginheight=0 marginwidth=0 noResize scrolling=no vspale="0" class="iframe" src="https://rcmap.jucai.gov.cn/mobile/pages/policy/search"></iframe>
- @endsection
- @section('script')
- <script>
- </script>
- @endsection
|