home.vue 4.0 KB

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