shipyard.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. <template>
  2. <view class="content">
  3. <view class="search">
  4. <u-input v-model="serach_value" type="text" :border="true" placeholder="输入搜索关键词" shape="circle"
  5. prefixIcon="search" prefixIconStyle="font-size: 22px;color: #909399" @focus="search">
  6. <template slot="suffix">
  7. <view @click="search">搜索</view>
  8. </template>
  9. </u-input>
  10. </view>
  11. <view class="swiper">
  12. <u-swiper :list="bannerList" radius="20rpx" @click="toBanner"></u-swiper>
  13. </view>
  14. <view class="box">
  15. <view class="tabs hflex acenter jbetween">
  16. <block v-for="(item,index) in tabs" :key="index">
  17. <view class="tabs_item" :class="active == item.id ? 'active' : ''" @click="changeTabs(item.id)">{{item.name}}</view>
  18. </block>
  19. </view>
  20. <view class="list">
  21. <block v-for="(item,index) in pageList" :key="index">
  22. <view class="list_item hflex acenter jbetween" @click="toDetail(item.id)">
  23. <image :src="item.img" class="item_img" mode="widthFix"></image>
  24. <view class="item_right vflex jbetween">
  25. <view class="hflex acenter jbetween">
  26. <view class="name">{{item.name}}</view>
  27. <view class="shipyard">{{item.shipyard}}</view>
  28. </view>
  29. <view class="address">{{item.address}}</view>
  30. </view>
  31. </view>
  32. </block>
  33. </view>
  34. </view>
  35. </view>
  36. </template>
  37. <script>
  38. import $api from '@/static/js/api.js'
  39. var that = ''
  40. export default {
  41. data() {
  42. return {
  43. serach_value: '',
  44. bannerList: [
  45. "/static/images/index/class_img1.png",
  46. "/static/images/index/class_img1.png"
  47. ],
  48. tabs: [
  49. {
  50. id: 1,
  51. name: '综合推荐'
  52. },
  53. {
  54. id: 2,
  55. name: '距离'
  56. }
  57. ],
  58. active: 1,
  59. pageList: [
  60. {
  61. id: 1,
  62. img: '/static/images/index/class_img3.png',
  63. name: '上海黄浦区造船厂上海黄浦区造船厂上海黄浦区造船厂',
  64. shipyard: '江南船厂',
  65. address: '智城路与中晟大街交汇处'
  66. },
  67. {
  68. id: 2,
  69. img: '/static/images/index/class_img3.png',
  70. name: '上海黄浦区造船厂',
  71. shipyard: '江南船厂',
  72. address: '智城路与中晟大街交汇处'
  73. },
  74. {
  75. id: 3,
  76. img: '/static/images/index/class_img3.png',
  77. name: '上海黄浦区造船厂',
  78. shipyard: '江南船厂',
  79. address: '智城路与中晟大街交汇处'
  80. },
  81. {
  82. id: 4,
  83. img: '/static/images/index/class_img3.png',
  84. name: '上海黄浦区造船厂',
  85. shipyard: '江南船厂',
  86. address: '智城路与中晟大街交汇处'
  87. }
  88. ]
  89. }
  90. },
  91. onLoad() {
  92. that = this
  93. },
  94. methods: {
  95. // banner图跳转
  96. toBanner() {
  97. },
  98. // 切换tabs
  99. changeTabs(id) {
  100. that.active = id
  101. },
  102. toDetail(id) {
  103. $api.jump('/pages/tabbar/shipyard/detail?id=' + id)
  104. },
  105. search() {
  106. $api.jump('/pages/tabbar/shipyard/news')
  107. }
  108. }
  109. }
  110. </script>
  111. <style lang="scss" scoped>
  112. .content::v-deep {
  113. background-color: #f6f6f6;
  114. .search {
  115. // background: #fff;
  116. width: 100%;
  117. height: 88rpx;
  118. box-sizing: border-box;
  119. padding: 12rpx 30rpx;
  120. .u-input {
  121. background-color: #fff;
  122. height: 64rpx;
  123. padding: 0 0 0 18rpx !important;
  124. border: 1rpx solid #506Dff;
  125. margin-bottom: 12rpx;
  126. }
  127. .u-input__content__subfix-icon {
  128. width: 128rpx;
  129. height: 64rpx;
  130. background-color: #506Dff;
  131. border-radius: 32rpx;
  132. color: #fff;
  133. font-size: 28rpx;
  134. text-align: center;
  135. line-height: 64rpx;
  136. }
  137. }
  138. .swiper {
  139. width: 100%;
  140. margin-top: 20rpx;
  141. box-sizing: border-box;
  142. padding: 0 30rpx;
  143. }
  144. .box {
  145. width: 690rpx;
  146. margin: 20rpx 30rpx 0;
  147. background: #fff;
  148. border-radius: 20rpx;
  149. box-sizing: border-box;
  150. padding: 24rpx 20rpx;
  151. .tabs {
  152. width: 100%;
  153. .tabs_item {
  154. width: 312rpx;
  155. height: 56rpx;
  156. background-color: #f6f6f6;
  157. border-radius: 8rpx;
  158. font-size: 28rpx;
  159. color: #444;
  160. text-align: center;
  161. line-height: 56rpx;
  162. }
  163. .active {
  164. background-color: #f1f3ff;
  165. color: #506dff;
  166. }
  167. }
  168. .list {
  169. .list_item {
  170. width: 100%;
  171. height: 152rpx;
  172. box-sizing: border-box;
  173. padding: 24rpx 0;
  174. border-bottom: 1rpx solid #f6f6f6;
  175. .item_img {
  176. width: 104rpx;
  177. border-radius: 16rpx;
  178. padding-right: 20rpx;
  179. }
  180. .item_right {
  181. width: calc(100% - 124rpx);
  182. height: 100%;
  183. .name {
  184. width: 80%;
  185. color: #333;
  186. font-size: 28rpx;
  187. overflow: hidden;
  188. white-space: nowrap;
  189. text-overflow: ellipsis;
  190. }
  191. .shipyard{
  192. width: auto;
  193. height: 28rpx;
  194. background-color: #506dff;
  195. border-radius: 5rpx;
  196. font-size: 16rpx;
  197. color: #fff;
  198. text-align: center;
  199. line-height: 28rpx;
  200. padding: 0 8rpx;
  201. box-sizing: border-box;
  202. }
  203. }
  204. .address {
  205. font-size: 20rpx;
  206. color: #666;
  207. padding-bottom: 20rpx;
  208. }
  209. }
  210. .list_item:nth-last-child(1) {
  211. padding-bottom: 0;
  212. border: none;
  213. }
  214. }
  215. }
  216. }
  217. </style>