androidIndex.blade.php 1.4 KB

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