androidIndex.blade.php 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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/inStorage/cacheRackStorage')}}"><button class="btn btn-info w-75 text-white" style="height: 60px"><h4>整箱入库</h4></button></a>-->
  23. <a href="{{url('store/handInStorage/receive')}}"><button class="btn btn-info w-75 h-25 mt-3 text-white" style="height: 60px"><h4>收货</h4></button></a>
  24. <a href="{{url('store/handInStorage/putaway')}}"><button class="btn btn-info w-75 h-25 mt-3 text-white" style="height: 60px"><h4>上架</h4></button></a>
  25. <a href="{{url('store/inStorage/halfChestStorage')}}"><button class="btn btn-info w-75 h-25 mt-3 text-white" style="height: 60px"><h4>半箱入库</h4></button></a>
  26. <a href="{{url('store/inStorage/boxBindShelf')}}"><button class="btn btn-info w-75 h-25 mt-3 text-white" style="height: 60px"><h4>新箱上架</h4></button></a>
  27. <a href="{{url('store/inStorage/boxBindModel')}}"><button class="btn btn-info w-75 h-25 mt-3 text-white" style="height: 60px"><h4>料箱型号</h4></button></a>
  28. <a href="{{url('store/inStorage/commodityBindModel')}}"><button class="btn btn-info w-75 h-25 mt-3 text-white" style="height: 60px"><h4>商品型号</h4></button></a>
  29. <a href="{{url('store/blindReceive')}}"><button class="btn btn-info w-75 h-25 mt-3 text-white" style="height: 60px"><h4>盲收</h4></button></a>
  30. <a href="{{ route('logout') }}" onclick="event.preventDefault();
  31. document.getElementById('logout-form').submit();">
  32. <button class="btn btn-info w-75 h-25 mt-3 text-white" style="height: 60px"><h4>退出登录</h4></button></a>
  33. <form id="logout-form" action="{{ route('logout') }}" method="POST" style="display: none;">
  34. @csrf
  35. </form>
  36. </div>
  37. </div>
  38. </div>
  39. </div>
  40. <script src="{{ mix('js/app.js') }}"></script>
  41. </body>
  42. </html>