12345678910111213141516171819202122232425262728293031 |
- @extends('module.layouts.content')
- @push('meta')
- @endpush
- @push('css')
- <link href="{{ theme_asset('app/css/common.css') }}" rel="stylesheet">
- <link rel="stylesheet" type="text/css" href="{{ theme_asset('app/css/gansu.css') }}"/>
- <style>
- body{background-color:#f5f5f5;}
- </style>
- @endpush
- @push('js')
- @endpush
- @section('content')
- <div class="developing">
- <div class="developing_banner"></div>
- <div class="developing_content"></div>
- <p>功能完善中,近期上线,敬请期待...</p>
- </div>
- @endsection
- @section('script')
- <script>
- </script>
- @endsection
|