pcNav.vue 4.9 KB

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