pcNav.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. <template>
  2. <view>
  3. <view class="nav">
  4. <view class="navCont">
  5. <view class="logo">
  6. <image :src="info.logo" mode="" class="logoImg"></image>
  7. </view>
  8. <view class="navTitle">{{info.title}}</view>
  9. <view class="indexNav" :class="{'indexActive':data=='index'}" @click="goIndex">首页</view>
  10. <view class="allCategory">
  11. <view class="allCategoryLine" :class="{'indexActive':itemName==item.name}" v-for="(item,index) in allCategory" v-if="index<5" @click="goItem(item)">{{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" >
  16. <view class="navMoreTline" v-for="(item,index) in allCategory" v-if="index>4" @click="goItem(item)">{{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: ['data','itemName'],
  31. data() {
  32. return {
  33. allCategory:[],
  34. navMoret:false,
  35. info:'',
  36. };
  37. },
  38. onLoad() {
  39. },
  40. created(){
  41. this.getallCategory();
  42. this.getInfo()
  43. },
  44. methods:{
  45. gosearchlist(){
  46. uni.navigateTo({
  47. url:'../../pages/pc/searchlist'
  48. })
  49. },
  50. goItem(item){
  51. console.log(item)
  52. uni.navigateTo({
  53. url:'list?code='+item.code+'&topName='+item.name+'&comment='+item.comment
  54. })
  55. },
  56. getInfo(){
  57. this.$http('/trainingOpenApi/getInfo', {}, 'GET').then(res => {
  58. this.info = res.data
  59. })
  60. },
  61. goIndex(){
  62. uni.navigateTo({
  63. url:'../../pages/pc/index'
  64. })
  65. },
  66. getallCategory(){
  67. this.$http('/trainingOpenApi/allCategory', {}, 'GET').then(res => {
  68. this.allCategory = res.data
  69. })
  70. },
  71. moreBtn(){
  72. this.navMoret=!this.navMoret
  73. },
  74. }
  75. }
  76. </script>
  77. <style scoped>
  78. .nav{
  79. width: 100%;
  80. height: 72rpx;
  81. background: #FFFFFF;
  82. box-shadow: 0rpx 4rpx 10rpx 0rpx rgba(153, 153, 153, 0.12);
  83. display: flex;
  84. justify-content: center;
  85. position: fixed;
  86. left: 0;
  87. top: 0;
  88. z-index: 11;
  89. }
  90. .navCont{
  91. width: 1200rpx;
  92. display: flex;
  93. position: relative;
  94. }
  95. .logoImg{
  96. width: 77rpx;
  97. height: 36rpx;
  98. margin-top: 19rpx;
  99. }
  100. .navTitle{
  101. line-height: 72rpx;
  102. font-weight: 500;
  103. color: #3C3C3C;
  104. font-size: 22rpx;
  105. padding-left: 24rpx;
  106. }
  107. .indexNav{
  108. line-height: 72rpx;
  109. font-weight: 500;
  110. color: #3C3C3C;
  111. font-size: 20rpx;
  112. padding-left: 54rpx;
  113. cursor: pointer;
  114. }
  115. .indexActive{
  116. color: #FF4F00 !important;
  117. }
  118. .allCategory{
  119. display: flex;
  120. line-height: 72rpx;
  121. }
  122. .allCategoryLine{
  123. padding-left: 44rpx;
  124. color: #3C3C3C;
  125. font-size: 18rpx;
  126. cursor: pointer;
  127. }
  128. .allCategoryMore{
  129. padding-left: 44rpx;
  130. color: #3C3C3C;
  131. font-size: 18rpx;
  132. display: flex;
  133. cursor: pointer;
  134. position: relative;
  135. }
  136. .navMoret{
  137. position: absolute;
  138. width: 130rpx;
  139. background: #FFFFFF;
  140. box-shadow: 0rpx 4rpx 10rpx 0rpx rgba(153, 153, 153, 0.12);
  141. border-radius: 6rpx;
  142. top: 72rpx;
  143. left:0 ;
  144. font-size: 18rpx;
  145. display: none;
  146. }
  147. .allCategoryMore:hover .navMoret{
  148. display: block;
  149. }
  150. .navMoreTline{
  151. width: 130rpx;
  152. text-align: center;
  153. font-size: 20rpx;
  154. line-height: 60rpx;
  155. }
  156. .navmoreImg{
  157. width: 12rpx;
  158. height: 8rpx;
  159. margin-top: 32rpx;
  160. margin-left: 10rpx;
  161. }
  162. .navSsimg{
  163. width: 24rpx;
  164. height: 24rpx;
  165. }
  166. .navSs{
  167. position: absolute;
  168. cursor: pointer;
  169. top:24rpx;
  170. right: 0;
  171. }
  172. </style>