|
@@ -13,31 +13,31 @@
|
|
|
<!-- <video :src="pageData.video" play-btn-position="center" class="video" v-if="pageData.video"></video> -->
|
|
|
<view class="date">发布于{{pageData.create_time}}</view>
|
|
|
<view class="comment">
|
|
|
- <view class="comment_title">评论{{pageData.comment.num?pageData.comment.num:''}}</view>
|
|
|
- <view v-if="pageData.comment.length == 0" class="hflex acenter jcenter comment_none">暂无评论</view>
|
|
|
+ <view class="comment_title">评论{{comment.total?comment.total:''}}</view>
|
|
|
+ <view v-if="comment.total == 0" class="hflex acenter jcenter comment_none">暂无评论</view>
|
|
|
<view v-else>
|
|
|
- <block v-for="(item,index) in pageData.comment" :key="index">
|
|
|
+ <block v-for="(item,index) in comment.data" :key="index">
|
|
|
<view class="hflex">
|
|
|
- <image :src="item.headimg" class="headimg"></image>
|
|
|
+ <image :src="item.user.headimg" class="headimg"></image>
|
|
|
<view class="comment_right">
|
|
|
- <view class="comment_name">{{item.name}}</view>
|
|
|
+ <view class="comment_name">{{item.uer.name}}</view>
|
|
|
<view class="comment_content">{{item.content}}</view>
|
|
|
- <view class="comment_date">{{item.date}}</view>
|
|
|
+ <view class="comment_date">{{item.create_time}}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</block>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="bottom hflex acenter jbetween">
|
|
|
- <view class="hflex acenter">
|
|
|
- <image src="/static/images/comment/dianzan1.png" class="dianzan" v-if="!pageData.is_dz"></image>
|
|
|
+ <view class="hflex acenter" @click="getLike">
|
|
|
+ <image src="/static/images/comment/dianzan1.png" class="dianzan" v-if="!pageData.is_liked"></image>
|
|
|
<image src="/static/images/comment/dianzan2.png" class="dianzan" v-else></image>
|
|
|
- <view class="dz_text">{{!pageData.is_dz?'点赞':pageData.dzNum}}</view>
|
|
|
+ <view class="dz_text">{{!pageData.is_liked?'点赞':pageData.likes_count}}</view>
|
|
|
</view>
|
|
|
<view class="hflex acenter ">
|
|
|
- <u-input v-model="comment" border="none" placeholder="我来说两句" shape="circle"></u-input>
|
|
|
- <image src="/static/images/comment/comment.png" class="comment_icon"></image>
|
|
|
- <view class="dz_text">{{pageData.comment.num?'评论':pageData.comment.num}}</view>
|
|
|
+ <u-input v-model="message" border="none" placeholder="我来说两句" shape="circle"></u-input>
|
|
|
+ <image src="/static/images/comment/comment.png" class="comment_icon" @click="send"></image>
|
|
|
+ <view class="dz_text">{{comment.total == 0?'评论':comment.total}}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -51,9 +51,13 @@
|
|
|
return {
|
|
|
pageData: {
|
|
|
},
|
|
|
+ message: '',
|
|
|
name: '船百知官方账号',
|
|
|
- comment:'',
|
|
|
+ comment: [],
|
|
|
id: '',
|
|
|
+ page: 1,
|
|
|
+ limit: 10,
|
|
|
+ total: 10
|
|
|
}
|
|
|
},
|
|
|
onLoad(options) {
|
|
@@ -72,6 +76,57 @@
|
|
|
}, function(res) {
|
|
|
if(res.code == 1) {
|
|
|
that.pageData = res.data
|
|
|
+ that.getComment()
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ getComment() {
|
|
|
+ $api.req({
|
|
|
+ url: '/data/api.Xw/comments',
|
|
|
+ data: {
|
|
|
+ id: that.id,
|
|
|
+ page: that.page,
|
|
|
+ limit: that.limit
|
|
|
+ }
|
|
|
+ }, function(res) {
|
|
|
+ if(res.code == 1) {
|
|
|
+ that.comment = res.data
|
|
|
+ that.total = res.data.total
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ getLike() {
|
|
|
+ if(that.pageData.is_liked) {
|
|
|
+ that.pageData.is_liked = 0
|
|
|
+ that.pageData.likes_count -=1
|
|
|
+ } else {
|
|
|
+ that.pageData.is_liked = 1
|
|
|
+ that.pageData.likes_count +=1
|
|
|
+ }
|
|
|
+ $api.req({
|
|
|
+ url: '/data/api.Xw/like',
|
|
|
+ data: {
|
|
|
+ id: that.id
|
|
|
+ }
|
|
|
+ }, function(res) {
|
|
|
+ if(res.code == 1) {
|
|
|
+ $api.info(res.info)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ send() {
|
|
|
+ $api.req({
|
|
|
+ url: '/data/api.Xw/comment',
|
|
|
+ method: 'POST',
|
|
|
+ data: {
|
|
|
+ id: that.id,
|
|
|
+ content: that.message
|
|
|
+ }
|
|
|
+ }, function(res) {
|
|
|
+ if(res.code == 1) {
|
|
|
+ that.message = ""
|
|
|
+ $api.info(res.info)
|
|
|
+ that.getComment()
|
|
|
}
|
|
|
})
|
|
|
}
|
|
@@ -209,7 +264,7 @@
|
|
|
height: 166rpx;
|
|
|
background: #FFFFFF;
|
|
|
box-sizing: border-box;
|
|
|
- padding: 8rpx 30rpx 74rpx;
|
|
|
+ padding: 8rpx 20rpx 74rpx;
|
|
|
.dianzan {
|
|
|
width: 48rpx;
|
|
|
height: 48rpx;
|