App.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. <template>
  2. <div>
  3. <div id="index-banner">
  4. <!-- 顶部导航栏 -->
  5. <!-- 分辨率大于1200页面 -->
  6. <div class="nav-lg visible-lg">
  7. <!-- <nav class="nav-padding"></nav>-->
  8. <nav class="navbar navbar-default nav-lg navbar-fixed-top visible-lg">
  9. <div class="container text-center">
  10. <!-- Brand and toggle get grouped for better mobile display -->
  11. <!-- 大屏幕下的样式 width>=1200px -->
  12. <div class="visible-lg">
  13. <!-- 菜单栏 -->
  14. <div class="col-lg-12 nav-link flex-row">
  15. <img src="./assets/image/img/logo.png" alt="" class="navbar-brand logo">
  16. <div style="min-width: 1400px;justify-content: flex-end" class="flex-row">
  17. <router-link class="navbar-brand" to="/index" tag="a" >
  18. <span>首</span>
  19. <span>页</span>
  20. </router-link>
  21. <router-link class="navbar-brand" to="/food" tag="a" >
  22. <span>醉</span>
  23. <span>面</span>
  24. <span>美</span>
  25. <span>食</span>
  26. </router-link>
  27. <router-link class="navbar-brand" to="/news" tag="a" >
  28. <span>品</span>
  29. <span>牌</span>
  30. <span>新</span>
  31. <span>闻</span>
  32. </router-link>
  33. <router-link class="navbar-brand" to="/contact" tag="a" >
  34. <span>联</span>
  35. <span>系</span>
  36. <span>我</span>
  37. <span>们</span>
  38. </router-link>
  39. <router-link class="navbar-brand" to="/recruit" tag="a" >
  40. <span>人</span>
  41. <span>才</span>
  42. <span>招</span>
  43. <span>聘</span>
  44. </router-link>
  45. <span class="navbar-brand" style="margin-right: 100px">
  46. <a :href="'tel:400-878-124'">
  47. <img src="./assets/image/img/tel.png" alt style="height: 30px;width: 34px"/>
  48. </a>
  49. <span style="margin-left: 14px;width: 160px;text-align: center;color: #E84E47;font-size: 24px">400-878-124</span>
  50. </span>
  51. </div>
  52. </div>
  53. </div>
  54. </div>
  55. </nav>
  56. </div>
  57. </div>
  58. <router-view></router-view>
  59. <div id="index-bottom flex-column">
  60. <div class="index-bottom-top flex-row">
  61. <div class="index-bottom-top-left flex-row">
  62. <img src="../src/assets/image/img/bottom_title.png" alt="" class="bt1">
  63. <div class="bt2 flex-column">
  64. <div>联系电话:0663-1928830</div>
  65. <div style="margin-top: 40px">联系地址</div>
  66. <div style="margin-top: 10px">北京市朝阳区繁华大街3450拓基大厦1103室</div>
  67. </div>
  68. </div>
  69. <div class="bt3 flex-row">
  70. <router-link class="bt3-brand" to="/index" tag="a">
  71. <span>首页</span>
  72. </router-link>
  73. <router-link class="bt3-brand" to="/food" tag="a">
  74. <span>醉面美食</span>
  75. </router-link>
  76. <router-link class="bt3-brand" to="/news" tag="a">
  77. <span>品牌新闻</span>
  78. </router-link>
  79. <router-link class="bt3-brand" to="/contact" tag="a">
  80. <span>联系我们</span>
  81. </router-link>
  82. <router-link class="bt3-brand" to="/recruit" tag="a">
  83. <span>人才招聘</span>
  84. </router-link>
  85. </div>
  86. </div>
  87. <div class="index-bottom-bottom" >
  88. <div>Copyright 醉面(中国)控股有限公司 2020 All Rights Reserved 沪ICP备15027919号</div>
  89. </div>
  90. </div>
  91. </div>
  92. </template>
  93. <script>
  94. import {getCompanyInfo} from '@/request/api'
  95. import './assets/css/index-banner.scss'
  96. import './assets/css/index-bottom.scss'
  97. import './assets/css/common.scss'
  98. export default {
  99. data() {
  100. return {
  101. index:1
  102. }
  103. },
  104. created() {
  105. // this.getCompanyInfo();
  106. },
  107. mounted() {
  108. window.location.hash = '/'
  109. },
  110. destroyed() { //离开这个界面之后,删除,不然会有问题
  111. // window.removeEventListener('scroll', this.btn_pos)
  112. },
  113. methods: {
  114. choose(index){
  115. this.index = index;
  116. }
  117. },
  118. }
  119. </script>
  120. <style lang="scss" scope>
  121. </style>