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

13 lines
502 B

<!--components/cell/index.wxml-->
<view class="cell" id="e-cell" bindtap="onTap">
<view class="cell-left">
<view class="cell_title {{readed ? 'cell_title_readed':''}}">{{title}}</view>
<view class="cell_info">
<view class="cell_info_meta">{{time}}</view>
<image wx:if="{{showTop}}" class="cell_info_top" src="images/top.png" ></image>
</view>
</view>
<view class="cell-right" wx:if="{{image.length > 0}}">
<image src="{{image}}" class="cell-image"/>
</view>
</view>