123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- <template>
- <view class="content">
- <view class="search">
- <u-input v-model="serach_value" type="text" :border="true" placeholder="输入搜索关键词" shape="circle"
- prefixIcon="search" prefixIconStyle="font-size: 22px;color: #909399" @focus="search">
- <template slot="suffix">
- <view @click="search">搜索</view>
- </template>
- </u-input>
- </view>
- <view class="swiper">
- <u-swiper :list="bannerList" radius="20rpx" @click="toBanner"></u-swiper>
- </view>
- <view class="box">
- <view class="tabs hflex acenter jbetween">
- <block v-for="(item,index) in tabs" :key="index">
- <view class="tabs_item" :class="active == item.id ? 'active' : ''" @click="changeTabs(item.id)">{{item.name}}</view>
- </block>
- </view>
- <view class="list">
- <block v-for="(item,index) in pageList" :key="index">
- <view class="list_item hflex acenter jbetween" @click="toDetail(item.id)">
- <image :src="item.img" class="item_img" mode="widthFix"></image>
- <view class="item_right vflex jbetween">
- <view class="hflex acenter jbetween">
- <view class="name">{{item.name}}</view>
- <view class="shipyard">{{item.shipyard}}</view>
- </view>
- <view class="address">{{item.address}}</view>
- </view>
- </view>
- </block>
- </view>
- </view>
- </view>
- </template>
- <script>
- import $api from '@/static/js/api.js'
- var that = ''
- export default {
- data() {
- return {
- serach_value: '',
- bannerList: [
- "/static/images/index/class_img1.png",
- "/static/images/index/class_img1.png"
- ],
- tabs: [
- {
- id: 1,
- name: '综合推荐'
- },
- {
- id: 2,
- name: '距离'
- }
- ],
- active: 1,
- pageList: [
- {
- id: 1,
- img: '/static/images/index/class_img3.png',
- name: '上海黄浦区造船厂上海黄浦区造船厂上海黄浦区造船厂',
- shipyard: '江南船厂',
- address: '智城路与中晟大街交汇处'
- },
- {
- id: 2,
- img: '/static/images/index/class_img3.png',
- name: '上海黄浦区造船厂',
- shipyard: '江南船厂',
- address: '智城路与中晟大街交汇处'
- },
- {
- id: 3,
- img: '/static/images/index/class_img3.png',
- name: '上海黄浦区造船厂',
- shipyard: '江南船厂',
- address: '智城路与中晟大街交汇处'
- },
- {
- id: 4,
- img: '/static/images/index/class_img3.png',
- name: '上海黄浦区造船厂',
- shipyard: '江南船厂',
- address: '智城路与中晟大街交汇处'
- }
- ]
- }
- },
- onLoad() {
- that = this
- },
- methods: {
- // banner图跳转
- toBanner() {
-
- },
- // 切换tabs
- changeTabs(id) {
- that.active = id
- },
- toDetail(id) {
- $api.jump('/pages/tabbar/shipyard/detail?id=' + id)
- },
- search() {
- $api.jump('/pages/tabbar/shipyard/news')
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .content::v-deep {
- background-color: #f6f6f6;
-
- .search {
- // background: #fff;
- width: 100%;
- height: 88rpx;
- box-sizing: border-box;
- padding: 12rpx 30rpx;
- .u-input {
- background-color: #fff;
- height: 64rpx;
- padding: 0 0 0 18rpx !important;
- border: 1rpx solid #506Dff;
- margin-bottom: 12rpx;
- }
- .u-input__content__subfix-icon {
- width: 128rpx;
- height: 64rpx;
- background-color: #506Dff;
- border-radius: 32rpx;
- color: #fff;
- font-size: 28rpx;
- text-align: center;
- line-height: 64rpx;
- }
- }
- .swiper {
- width: 100%;
- margin-top: 20rpx;
- box-sizing: border-box;
- padding: 0 30rpx;
- }
- .box {
- width: 690rpx;
- margin: 20rpx 30rpx 0;
- background: #fff;
- border-radius: 20rpx;
- box-sizing: border-box;
- padding: 24rpx 20rpx;
-
- .tabs {
- width: 100%;
- .tabs_item {
- width: 312rpx;
- height: 56rpx;
- background-color: #f6f6f6;
- border-radius: 8rpx;
- font-size: 28rpx;
- color: #444;
- text-align: center;
- line-height: 56rpx;
- }
- .active {
- background-color: #f1f3ff;
- color: #506dff;
- }
- }
- .list {
-
- .list_item {
- width: 100%;
- height: 152rpx;
- box-sizing: border-box;
- padding: 24rpx 0;
- border-bottom: 1rpx solid #f6f6f6;
- .item_img {
- width: 104rpx;
- border-radius: 16rpx;
- padding-right: 20rpx;
- }
- .item_right {
- width: calc(100% - 124rpx);
- height: 100%;
- .name {
- width: 80%;
- color: #333;
- font-size: 28rpx;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .shipyard{
- width: auto;
- height: 28rpx;
- background-color: #506dff;
- border-radius: 5rpx;
- font-size: 16rpx;
- color: #fff;
- text-align: center;
- line-height: 28rpx;
- padding: 0 8rpx;
- box-sizing: border-box;
- }
- }
- .address {
- font-size: 20rpx;
- color: #666;
- padding-bottom: 20rpx;
- }
- }
- .list_item:nth-last-child(1) {
- padding-bottom: 0;
- border: none;
- }
- }
- }
-
- }
- </style>
|