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.
|
|
|
<!--pages/topics/common/interactive/common/imageCell/index.wxml-->
|
|
|
|
<view class="cell" bindtap="onTap">
|
|
|
|
<view class="touch-item {{isTouchMove ? 'touch-move-active' : ''}}" data-index="{{dataIndex}}" bindtouchstart="touchstart" bindtouchmove="touchmove" >
|
|
|
|
<view class="content">
|
|
|
|
<view class="left">
|
|
|
|
<view class="left-top">
|
|
|
|
<view class="cell_title {{readed ? 'cell_title_readed':''}}">{{title}}</view>
|
|
|
|
</view>
|
|
|
|
<view class="left-bottom">
|
|
|
|
<view class="left-bottom-userInfo">
|
|
|
|
<view class="cell_info_meta">{{time}}</view>
|
|
|
|
</view>
|
|
|
|
<view class="left-bottom-comments">
|
|
|
|
<view class="comments-icon">
|
|
|
|
<image src="/images/common/com_count.png"></image>
|
|
|
|
</view>
|
|
|
|
<view class="commentNum">{{commentNum}}</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="right" wx:if="{{activityImg.length > 0}}">
|
|
|
|
<image class="articleImg" src="{{activityImg}}"></image>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="del" data-index="{{dataIndex}}" data-id="{{activityId}}" catchtap="del">删除</view>
|
|
|
|
</view>
|
|
|
|
</view>
|