form-content.blade.php 583 B

12345678910111213141516171819
  1. <script>Dcat.pjaxResponded();</script>
  2. {{--必须在静态资源加载前,用section先渲染 content--}}
  3. @section('content')
  4. <section class="content">{!! $content !!}</section>
  5. @endsection
  6. {!! Dcat\Admin\Admin::assets()->renderCss() !!}
  7. {!! Dcat\Admin\Admin::assets()->renderJs() !!}
  8. {!! Dcat\Admin\Admin::assets()->renderStyle() !!}
  9. @yield('content')
  10. {!! Dcat\Admin\Admin::assets()->renderScript() !!}
  11. {!! Dcat\Admin\Admin::html() !!}
  12. {{--select2下拉选框z-index必须大于弹窗的值--}}
  13. <style>.select2-dropdown {z-index: 99999999999}</style>