You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
2.4 KiB
47 lines
2.4 KiB
<view class="box">
|
|
<view class="top">
|
|
<view class="top_img">
|
|
<image src="{{sellerinfo.avatarUrl}}"></image>
|
|
</view>
|
|
<view class="top_info">
|
|
<view class="top_name">{{sellerinfo.userName}}</view>
|
|
<!-- <view class="top_address">广东省广州市</view> -->
|
|
</view>
|
|
<view class="top_card">
|
|
<view class="top_card_text" wx:if="{{sellerinfo.isMember}}">会员</view>
|
|
<view class="top_card_text" wx:else>非会员</view>
|
|
</view>
|
|
</view>
|
|
<scroll-view
|
|
class="body"
|
|
refresher-enabled refresher-default-style="black"
|
|
refresher-background="#fff" refresher-triggered="{{triggered}}"
|
|
bindrefresherrefresh="onRefresh"
|
|
bindscrolltolower='onScrolltolower'
|
|
scroll-y>
|
|
<view class="body_item" wx:for="{{showlist}}" wx:key="id" bindtap="go_detail" data-id="{{item.id}}">
|
|
<view class="body_item_img">
|
|
<image src="{{item.equipmentPictures[0].pictureLink}}" mode="aspectFill"></image>
|
|
</view>
|
|
<view class="body_item_info">
|
|
<view class="body_item_info_title">
|
|
<view class="body_item_info_title_text">{{item.title}}</view>
|
|
<image src="/images/common/fenxiang.png" mode="widthFix"></image>
|
|
<button class="fx" open-type="share" data-item="{{item}}" catchtap="fun"></button>
|
|
</view>
|
|
<view class="body_item_info_dasc" style="text-overflow: -o-ellipsis-lastline;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 3;line-clamp: 3;-webkit-box-orient: vertical;">
|
|
<!-- style="text-overflow: -o-ellipsis-lastline;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 2;line-clamp: 2;-webkit-box-orient: vertical;" -->
|
|
{{item.introduction}}
|
|
</view>
|
|
<view class="body_item_info_bottom">
|
|
<view class="body_item_info_price">{{item.sellingPrice}}万</view>
|
|
<view class="body_item_info_time">{{item.refreshDate}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</scroll-view>
|
|
<view class="bottom">
|
|
<view class="bottom_left" bindtap="to_prev"> 返回</view>
|
|
<view class="bottom_right" bindtap="to_index"> 更多设备</view>
|
|
</view>
|
|
</view>
|