pcNav.vue 3.9 KB

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