123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- @extends('mobile.module.layouts.health')
- @push('meta')
- @endpush
- @push('css')
- <link href="{{ theme_asset('mobile/css/common.css') }}" rel="stylesheet">
- <link href="{{ theme_asset('mobile/css/news.css') }}" rel="stylesheet">
- <link href="{{ theme_asset('mobile/css/jobs.css') }}" rel="stylesheet">
- <style>
- .drop_content{padding-bottom: 1rem;}
- .fixed_btn{width: 90%;position: fixed;bottom: 0;left: 50%; -webkit-transform: translate(-50%,0);transform: translate(-50%,0);}
- </style>
- @endpush
- @push('js')
- <script src="{{ theme_asset('mobile/js/dropload.min.js') }}"></script>
- @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>
- <div class="split-block-title">
- <div class="sbox js-show-qspageso">
- <form action="" id="search-form" method="post">
- <input type="search" name="key" placeholder="请输入关键字" style="width:100%;border:none;" id="search" value="">
- <input type="hidden" name="_token" value="{{ csrf_token() }}" />
- <script>
- $("#search").on('keypress',function(e) {
- var keycode = e.keyCode;
- if(keycode=='13') {
- e.preventDefault();
- //请求搜索接口
- $('#search-form').submit();
- }
- });
- </script>
- </form>
- </div>
- </div>
- <div class="drop_content">
- <div class="add_data">
- @include('mobile.app.health.introduce.ajax_introduce_list')
- </div>
- </div>
- @endsection
- @section('script')
- @endsection
|