市北人才赋能平台 --小程序端
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.

27 lines
852 B

6 years ago
<!--pages/user/common/myFavorite/index.wxml-->
<view class="container">
<block wx:for="{{list}}" wx:key="{{index}}">
6 years ago
<block wx:if="{{item.type === '1'}}">
<artice-cell
cId="{{item.topicId}}"
title="{{item.title}}"
image="{{item.topicImg}}"
6 years ago
time="{{item.time}}"
bind:clickListItem="clickListItem"/>
</block>
<block wx:else>
<cell
topicId="{{item.topicId}}"
title="{{item.title}}"
topicImg="{{item.topicImg}}"
userName="{{item.userName}}"
time="{{item.time}}"
commentNum="{{item.commentNum}}"
type="{{item.type}}"
6 years ago
userIcon="{{item.userIcon || '/images/topic/avatar.png'}}"
6 years ago
bind:clickListItem="clickListItem"/>
</block>
</block>
6 years ago
<e-empty empty="{{list.length <= 0}}" message="暂无内容"/>
</view>