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

78 lines
3.1 KiB

6 years ago
<!--pages/topics/interactive/article/index.wxml-->
<view class="container">
<view class="topic_info">
<view class="topic_title">
{{title}}
</view>
<view class="topic_time">
<view class="topic_time_left">
{{time}}
</view>
<view class="topic_time_right">
<image src="{{isCollect ? star : unStar}}" bindtap="onClickCollect"></image>
6 years ago
</view>
</view>
<view class="topic_userInfo">
<view class="user_icon">
6 years ago
<image src="{{groupAvator || '../cell/images/avatar.png'}}"></image>
6 years ago
</view>
<view class="user_text">
<view>
6 years ago
{{author}}
6 years ago
</view>
<view>
6 years ago
{{company}} {{position || ''}}
6 years ago
</view>
</view>
</view>
</view>
<view class="topic_detail">
<view class="topic_detail_text">
{{detail}}
</view>
<view class="topic_detail_imgs">
<view class='imgList-li' wx:for='{{imgArr}}' wx:key="{{index}}">
6 years ago
<image class='img' src='{{item}}' data-index='{{index}}' bindtap='previewImg'></image>
</view>
</view>
</view>
<view class="section_line"></view>
<view class="topic_comment">
<view class="topic_comment_top">
6 years ago
<view>
<!-- 评论数修改 -->
{{'评论 ' + total}}
6 years ago
</view>
<button class="commnetBtn" size="mini" bindtap="onTapComment">评论</button>
6 years ago
</view>
<view class="comment_info" >
<view class="touch-item {{item.isTouchMove ? 'touch-move-active' : ''}}" data-index="{{index}}" data-name="{{item.userName}}" bindtouchstart="touchstart" bindtouchmove="touchmove" wx:for="{{commentList}}" wx:key="{{index}}">
<view class="comment_content">
<view class="comment_info_left">
<image class="comment_icon" src="{{item.commentAvator}}"></image>
</view>
<view class="comment_info_right">
<view class="comment_top">
<view class="comment_info_userName">{{item.userName}}</view>
<view class="goodIdeaIcon" wx:if="{{item.isGoldenIdea === 1}}">
<image style="width:100%;height:100%;" src="/images/topic/gidea.png"></image>
</view>
</view>
<view class="comment_info_detail">{{item.detail}}</view>
<view class="comment_info_time">
<view class="comment_info_time_left">{{item.time}}</view>
<view class="comment_info_time_right" bindtap="onClickPraise" data-item="{{item}}" data-index='{{index}}'>
<view class="praiseNum">{{item.praiseNum}}</view>
<image class="praiseIcon" src="{{item.isSupport ==='0' ? unPraise : praise}}"></image>
</view>
</view>
6 years ago
</view>
</view>
<view class="del" data-index="{{index}}" data-id="{{item.id}}" catchtap="del">删除</view>
6 years ago
</view>
</view>
</view>
</view>
<modal hidden="{{hiddenmodalput}}" confirm-text="提交" cancel-text="取消" bindcancel="cancel" bindconfirm="confirm">
<textarea bindinput="bingTextAreaInput" value="{{currentComment}}" maxlength="400" placeholder="请输入评论"/>
</modal>