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

62 lines
1.9 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="{{isStar ? star : unStar}}" bindtap="onClickCollect"></image>
</view>
</view>
<view class="topic_userInfo">
<view class="user_icon">
<image src=""></image>
</view>
<view class="user_text">
<view>
{{userInfo.name}}
</view>
<view>
{{userInfo.company + ' ' + userInfo.position}}
</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}}'>
<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">
{{'评论 ' + comments.length}}
</view>
<view class="comment_info" wx:for="{{comments}}">
<view class="comment_info_left">
<image class="comment_icon" src=""></image>
</view>
<view class="comment_info_right">
<view class="comment_info_userName">{{item.userName}}</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">
<view class="praiseNum">{{item.praiseNum}}</view>
<image class="praiseIcon" src="/images/common/zan.png"></image>
</view>
</view>
</view>
</view>
</view>
</view>