pcNav.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  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><!-- euroreparIMg -->
  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>5">
  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. this.$emit("gosearchlist",1);
  51. },
  52. goItem(item){
  53. var pages = getCurrentPages() ;
  54. var currentRoute = pages[pages.length-1].route;
  55. console.log(currentRoute)
  56. console.log(item)
  57. /* if(currentRoute=='pages/pc/list'){
  58. this.$emit("getChildList",item);
  59. }else{
  60. uni.navigateTo({
  61. url:'list?code='+item.code+'&topName='+item.name+'&comment='+item.comment
  62. })
  63. } */
  64. this.$emit("getChildList",item);
  65. },
  66. getInfo(){
  67. this.$http('/trainingOpenApi/getInfo', {}, 'GET').then(res => {
  68. this.info = res.data
  69. })
  70. },
  71. goIndex(){
  72. /* uni.navigateTo({
  73. url:'../../pages/pc/index'
  74. }) */
  75. this.$emit("getIndexList",1);
  76. },
  77. getallCategory(){
  78. this.$http('/trainingOpenApi/allCategory', {}, 'GET').then(res => {
  79. this.allCategory = res.data
  80. })
  81. },
  82. moreBtn(){
  83. this.navMoret=!this.navMoret
  84. },
  85. }
  86. }
  87. </script>
  88. <style scoped>
  89. .nav{
  90. width: 100%;
  91. height: 72px;
  92. background: #FFFFFF;
  93. box-shadow: 0px 4px 10px 0px rgba(153, 153, 153, 0.12);
  94. display: flex;
  95. justify-content: center;
  96. position: fixed;
  97. left: 0;
  98. top: 0;
  99. z-index: 11;
  100. }
  101. .navCont{
  102. width: 1200px;
  103. display: flex;
  104. position: relative;
  105. }
  106. .logoImg{
  107. width: 62px;
  108. height: 28px;
  109. margin-top: 19px;
  110. }
  111. .navTitle{
  112. line-height: 72px;
  113. font-weight: 500;
  114. color: #3C3C3C;
  115. font-size: 20px;
  116. padding-left: 10px;
  117. font-family: PingFangSC-Medium, PingFang SC;
  118. }
  119. .indexNav{
  120. line-height: 72px;
  121. color: #3C3C3C;
  122. font-size: 16px;
  123. padding-left: 54px;
  124. cursor: pointer;
  125. }
  126. .indexActive{
  127. color: #FF4F00 !important;
  128. }
  129. .allCategory{
  130. display: flex;
  131. line-height: 72px;
  132. }
  133. .allCategoryLine{
  134. padding-left: 30px;
  135. color: #3C3C3C;
  136. font-size: 16px;
  137. cursor: pointer;
  138. }
  139. .allCategoryMore{
  140. padding-left: 30px;
  141. color: #3C3C3C;
  142. font-size: 16px;
  143. display: flex;
  144. cursor: pointer;
  145. position: relative;
  146. }
  147. .navMoret{
  148. position: absolute;
  149. width: 140px;
  150. background: #FFFFFF;
  151. box-shadow: 0px 4px 10px 0px rgba(153, 153, 153, 0.12);
  152. border-radius: 6px;
  153. top: 72px;
  154. left:0px ;
  155. font-size: 16px;
  156. display: none;
  157. }
  158. .allCategoryMore:hover .navMoret{
  159. display: block;
  160. }
  161. .navMoreTline{
  162. width: 140px;
  163. text-align: center;
  164. font-size: 16px;
  165. line-height: 50px;
  166. }
  167. .allCategoryMore:hover .moreBtn{
  168. color: #FF4F00;
  169. }
  170. .navmoreImg{
  171. width: 12px;
  172. height: 8px;
  173. margin-top: 32px;
  174. margin-left: 10px;
  175. }
  176. .navmoreImg2{
  177. width: 12px;
  178. height: 8px;
  179. margin-top: 32px;
  180. margin-left: 10px;
  181. display: none;
  182. }
  183. .allCategoryMore:hover .navmoreImg{
  184. display: none;
  185. }
  186. .allCategoryMore:hover .navmoreImg2{
  187. display: block;
  188. }
  189. .navSsimg{
  190. width: 20px;
  191. height: 20px;
  192. }
  193. .navSs{
  194. position: absolute;
  195. cursor: pointer;
  196. top:24px;
  197. right: 0;
  198. }
  199. .euroreparIMg{
  200. width: 132px;
  201. height: 29px;
  202. margin-top: 21px;
  203. }
  204. </style>