index.vue 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <template>
  2. <div class="menu-container">
  3. <div class="placeholder-box">
  4. <div class="logo-container">
  5. <img src="./img/jinyuan.png">
  6. <img src="./img/huada_logo.jpg">
  7. </div>
  8. <div class="menu-name">
  9. <i :class="'ibps-icon-'+$route.query.icon" />
  10. <span>{{ $route.query.name }}</span>
  11. </div>
  12. <div class="tips">选择左侧菜单功能项</div>
  13. </div>
  14. </div>
  15. </template>
  16. <script>
  17. </script>
  18. <style lang="scss" scoped>
  19. .menu-container {
  20. width: 100%;
  21. .placeholder-box {
  22. width: calc(100% - 200px);
  23. font-size:32px;
  24. font-weight: bold;
  25. color: #1894d0;
  26. padding-top: 10%;
  27. text-align: center;
  28. .logo-container {
  29. width: 30%;
  30. margin: 0 auto;
  31. display: flex;
  32. justify-content: center;
  33. align-items: center;
  34. > img {
  35. max-width: 50%;
  36. &:first-child {
  37. max-width: 70%;
  38. }
  39. &:last-child {
  40. max-width: 30%;
  41. }
  42. }
  43. }
  44. .menu-name {
  45. font-size: 28px;
  46. margin: 20px 0 10px;
  47. }
  48. .tips {
  49. font-size: 16px;
  50. }
  51. }
  52. }
  53. </style>