collection.wxml
458 Bytes
<view class='container'>
<text class='collection-title'>收藏</text>
<!-- 消息列表 -->
<view wx:if="{{collectionInfo.collectionList.length > 0}}" class='collection-list'>
<product-list list="{{collectionInfo.collectionList}}" __triggerObserer="{{ _triggerObserer }}"></product-list>
</view>
<block wx:else>
<view class='empty'>
<no-data-show-view emptyText="暂无收藏"></no-data-show-view>
</view>
</block>
</view>