pcNav.vue 4.5 KB

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