12345678910111213141516171819202122232425262728293031 |
- <template name="lc">
- <view class="container">
- <view class="list-content">
- <view class="title-bar">
- <view class="title-text">
- {{obj.subject_collection.name}}
- </view>
- <view bind:tap="goListPage" data-id="{{obj.subject_collection.id}}" class="more-link">
- 更多 {{obj.total}} >
- </view>
- </view>
- <view class="list-bar">
- <scroll-view scroll-x="{{true}}">
- <view class="list-scroll">
- <view class="list-item" wx:for="{{obj.subject_collection_items}}" wx:key="id">
- <view>
- <image class="li-img" src="{{item.pic.normal}}" mode="" />
- </view>
- <view class="li-title">
- {{item.title}}
- </view>
- <view class="li-title">
- <rate val="{{item.rating.value}}"></rate>
- </view>
- </view>
- </view>
- </scroll-view>
- </view>
- </view>
- </view>
- </template>
|