12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title></title>
- <meta name="keywords">
- <meta name="description">
- <link rel="shortcut icon" href="{{asset('favicon.ico')}}">
- <link href="{{asset('css/bootstrap.min.css')}}" rel="stylesheet">
- <link href="{{asset('css/font-awesome-4.7.0/css/font-awesome.min.css')}}" rel="stylesheet">
- <link href="{{asset('css/plugins/iCheck/custom.css')}}" rel="stylesheet">
- <link href="{{asset('css/animate.min.css')}}" rel="stylesheet">
- <link href="{{asset('css/style.min862f.css?v=4.1.0')}}" rel="stylesheet">
- <link href="{{asset('css/bootstrap-table.min.css')}}" rel="stylesheet">
- {{-- <link rel="stylesheet" href="https://unpkg.com/bootstrap-table@1.15.4/dist/bootstrap-table.min.css">--}}
- <style>
- .red {
- color: red;
- }
- </style>
- @yield('header')
- </head>
- @yield('content')
- <script src="{{asset('js/jquery.min.js')}}"></script>
- <script src="{{asset('js/bootstrap.min.js')}}"></script>
- <script src="{{asset('js/plugins/iCheck/icheck.min.js')}}"></script>
- <script src="{{asset('js/plugins/bootstrap-table/bootstrap-table.min.js')}}"></script>
- <script src="{{asset('js/plugins/bootstrap-table/bootstrap-table-mobile.min.js')}}"></script>
- <script src="{{asset('js/plugins/bootstrap-table/locale/bootstrap-table-zh-CN.min.js')}}"></script>
- <script src="{{asset('js/plugins/layer-master/dist/layer.js')}}"></script>
- <script src="{{asset('js/tools/tips.js')}}"></script>
- @yield('footer')
- <script>
- $(function () {
- $('input:not([autocomplete]),textarea:not([autocomplete]),select:not([autocomplete])').attr('autocomplete', 'off');
- });
- // 表单查询/后退
- $(document).on('click', '.closeLayer', function () { //layer的iframe层关闭
- tips.closeParentLayer();
- });
- $(document).on('click', '[name=btnReset]', function () {
- $(this).parents("form")[0].reset();
- tips.tableRefresh();
- })
- </script>
- </html>
|