| 123456789101112131415161718192021222324252627282930 |
- <!DOCTYPE html>
- <html lang="{{ str_replace('_', '-', app()->getLocale()) }}" class="h-100">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <link rel="icon" href="{{asset('icon/faviconc.ico')}}" type="image/x-icon"/>
- <!-- CSRF Token -->
- <meta name="csrf-token" content="{{ csrf_token() }}">
- <title>手持入库首页</title>
- <link href="{{ mix('css/app.css') }}" rel="stylesheet">
- </head>
- <body class="h-100">
- <div class="container-fluid h-100 text-center">
- <div class="container-fluid h-25">
- <a class="navbar-brand" href="{{ url('/control/panel/menu') }}" title="宝时 Warehouse Assistance System" style="vertical-align: text-bottom">
- <img src="{{asset('icon/logo100b.png')}}" alt="宝时 Warehouse Assistance System" height="30" >
- </a>
- </div>
- <div class="text-center h-75">
- <div class="w-100 center h-75 row align-items-center justify-content-center">
- <div class="w-100">
- <a href="{{url('store/handInStorage/receive')}}"><button class="btn btn-info w-75 text-white" style="height: 60px"><h4>收货</h4></button></a>
- <a href="{{url('store/handInStorage/putaway')}}"><button class="btn btn-info w-75 mt-3 text-white" style="height: 60px"><h4>上架</h4></button></a>
- </div>
- </div>
- </div>
- </div>
- <script src="{{ mix('js/app.js') }}"></script>
- </body>
- </html>
|