pcNav.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  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" @click="goIndex">首页</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" @click="gosearchlist">
  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. gosearchlist(){
  45. uni.navigateTo({
  46. url:'../../pages/pc/searchlist'
  47. })
  48. },
  49. goIndex(){
  50. uni.navigateTo({
  51. url:'../../pages/pc/index'
  52. })
  53. },
  54. getallCategory(){
  55. this.$http('/trainingOpenApi/allCategory', {}, 'GET').then(res => {
  56. this.allCategory = res.data
  57. })
  58. },
  59. moreBtn(){
  60. this.navMoret=!this.navMoret
  61. },
  62. }
  63. }
  64. </script>
  65. <style scoped>
  66. .nav{
  67. width: 100%;
  68. height: 72px;
  69. background: #FFFFFF;
  70. box-shadow: 0px 4px 10px 0px rgba(153, 153, 153, 0.12);
  71. display: flex;
  72. justify-content: center;
  73. position: fixed;
  74. left: 0;
  75. top: 0;
  76. z-index: 11;
  77. }
  78. .navCont{
  79. width: 1200px;
  80. display: flex;
  81. position: relative;
  82. }
  83. .logoImg{
  84. width: 86px;
  85. height: 36px;
  86. margin-top: 19px;
  87. }
  88. .navTitle{
  89. line-height: 72px;
  90. font-weight: 500;
  91. color: #3C3C3C;
  92. font-size: 24px;
  93. padding-left: 24px;
  94. }
  95. .indexNav{
  96. line-height: 72px;
  97. font-weight: 500;
  98. color: #FF4F00;
  99. font-size: 20px;
  100. padding-left: 54px;
  101. }
  102. .allCategory{
  103. display: flex;
  104. line-height: 72px;
  105. }
  106. .allCategoryLine{
  107. padding-left: 44px;
  108. color: #3C3C3C;
  109. font-size: 20px;
  110. cursor: pointer;
  111. }
  112. .allCategoryMore{
  113. padding-left: 44px;
  114. color: #3C3C3C;
  115. font-size: 20px;
  116. display: flex;
  117. cursor: pointer;
  118. position: relative;
  119. }
  120. .navMoret{
  121. position: absolute;
  122. width: 160px;
  123. background: #FFFFFF;
  124. box-shadow: 0px 4px 10px 0px rgba(153, 153, 153, 0.12);
  125. border-radius: 6px;
  126. top: 72px;
  127. left:0 ;
  128. }
  129. .navMoreTline{
  130. width: 160px;
  131. text-align: center;
  132. font-size: 20px;
  133. }
  134. .navmoreImg{
  135. width: 12px;
  136. height: 8px;
  137. margin-top: 32px;
  138. margin-left: 10px;
  139. }
  140. .navSsimg{
  141. width: 24px;
  142. height: 24px;
  143. }
  144. .navSs{
  145. position: absolute;
  146. cursor: pointer;
  147. top:24px;
  148. right: 0;
  149. }
  150. </style>