pcNav.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. <template>
  2. <view>
  3. <view class="nav">
  4. <view class="navCont">
  5. <view class="logo">
  6. <image src="../../static/pcimg/nav_logo@2x.png" mode="" class="logoImg"></image>
  7. </view>
  8. <view class="navTitle">门店学院</view>
  9. <view class="indexNav">首页</view>
  10. <view class="allCategory">
  11. <view class="allCategoryLine" v-for="(item,index) in allCategory" v-if="index<4">{{item.name}}</view>
  12. <view class="allCategoryMore" v-if="allCategory.length>1">
  13. <span @click="moreBtn">更多</span>
  14. <image @click="moreBtn" src="../../static/pcimg/icon_arrow_xia@2x.png" mode="widthFix" class="navmoreImg"></image>
  15. <view class="navMoret" v-show="navMoret">
  16. <view class="navMoreTline" v-for="(item,index) in allCategory" v-if="index>3">{{item.name}}</view>
  17. </view>
  18. </view>
  19. </view>
  20. <view class="navSs">
  21. <image src="../../static/pcimg/icon_search@2x.png" mode="widthFix" class="navSsimg"></image>
  22. </view>
  23. </view>
  24. </view>
  25. </view>
  26. </template>
  27. <script>
  28. export default {
  29. name: "searchBox",
  30. props: {
  31. },
  32. data() {
  33. return {
  34. allCategory:[],
  35. navMoret:false,
  36. };
  37. },
  38. onLoad() {
  39. },
  40. created(){
  41. this.getallCategory();
  42. },
  43. methods:{
  44. getallCategory(){
  45. this.$http('/trainingOpenApi/allCategory', {}, 'GET').then(res => {
  46. this.allCategory = res.data
  47. })
  48. },
  49. moreBtn(){
  50. this.navMoret=!this.navMoret
  51. },
  52. }
  53. }
  54. </script>
  55. <style scoped>
  56. .nav{
  57. width: 100%;
  58. height: 72px;
  59. background: #FFFFFF;
  60. box-shadow: 0px 4px 10px 0px rgba(153, 153, 153, 0.12);
  61. display: flex;
  62. justify-content: center;
  63. position: fixed;
  64. left: 0;
  65. top: 0;
  66. z-index: 11;
  67. }
  68. .navCont{
  69. width: 1200px;
  70. display: flex;
  71. position: relative;
  72. }
  73. .logoImg{
  74. width: 86px;
  75. height: 36px;
  76. margin-top: 19px;
  77. }
  78. .navTitle{
  79. line-height: 72px;
  80. font-weight: 500;
  81. color: #3C3C3C;
  82. font-size: 24px;
  83. padding-left: 24px;
  84. }
  85. .indexNav{
  86. line-height: 72px;
  87. font-weight: 500;
  88. color: #FF4F00;
  89. font-size: 20px;
  90. padding-left: 54px;
  91. }
  92. .allCategory{
  93. display: flex;
  94. line-height: 72px;
  95. }
  96. .allCategoryLine{
  97. padding-left: 44px;
  98. color: #3C3C3C;
  99. font-size: 20px;
  100. cursor: pointer;
  101. }
  102. .allCategoryMore{
  103. padding-left: 44px;
  104. color: #3C3C3C;
  105. font-size: 20px;
  106. display: flex;
  107. cursor: pointer;
  108. position: relative;
  109. }
  110. .navMoret{
  111. position: absolute;
  112. width: 160px;
  113. background: #FFFFFF;
  114. box-shadow: 0px 4px 10px 0px rgba(153, 153, 153, 0.12);
  115. border-radius: 6px;
  116. top: 72px;
  117. left:0 ;
  118. }
  119. .navMoreTline{
  120. width: 160px;
  121. text-align: center;
  122. font-size: 20px;
  123. }
  124. .navmoreImg{
  125. width: 12px;
  126. height: 8px;
  127. margin-top: 32px;
  128. margin-left: 10px;
  129. }
  130. .navSsimg{
  131. width: 24px;
  132. height: 24px;
  133. }
  134. .navSs{
  135. position: absolute;
  136. cursor: pointer;
  137. top:24px;
  138. right: 0;
  139. }
  140. </style>