1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| <scroll-view scroll-y = 'true' class = 'content' style=' height:{{winH}}px' bindscrolltolower = 'ss'> <view class = 'header'> <text>图书{{totaleRecord}}本图书</text> </view> <view class = 'common-list'> <block wx:for="{{pageData}}"> <view class="list-item" data-bid="{{item.id}}" bindtap="toDetailPage"> <view class="index-list-item"> <view class="cover"> <image class="cover-img" src="{{item.image}}"></image> </view> <view class="content"> <view class="title">{{item.title}}</view> <text class="desc">{{item.rating.average == '0.0' ? '无' : item.rating.average}}/<block wx:for="{{item.author}}" wx:for-item="it" wx:key="*this">{{it}}/</block>{{item.pubdate}}</text> </view> </view> </view> </block> </view> </scroll-view>
|