Merge pull request 'gdpao' (#289) from gyh into master

Reviewed-on: http://git.luyuan.tk/luyuan/deming/pulls/289
This commit is contained in:
gyh 2020-08-24 15:46:28 +08:00
commit 5ad768f842

View File

@ -71,12 +71,11 @@
</view> </view>
<text class="child_content">{{ child.content }}</text> <text class="child_content">{{ child.content }}</text>
</view> </view>
<view> <!-- <view> -->
<text class="more-comment" @click="getReplyList(item.id)" v-if="item.reply_count"> <text class="more-comment" @click="getReplyList(item.id)" v-if="item.reply_count">
{{ child_end[item.id] ? "暂无更多回复" : "展开更多回复" }} {{ child_end[item.id] ? "暂无更多回复" : "展开更多回复" }}
</text> </text>
<text></text> <!-- </view> -->
</view>
</view> </view>
</view> </view>
<view class="send-box" @click="openKeyInput"> <view class="send-box" @click="openKeyInput">
@ -678,14 +677,17 @@
} }
.child_content { .child_content {
padding: 4rpx 0; width: 550rpx;
padding-top: 6rpx;
margin-left: 40rpx; margin-left: 40rpx;
font-size: 26rpx; font-size: 26rpx;
} }
.more-comment { .more-comment {
margin: 10rpx 0; width: 150rpx;
height: 40rpx;
font-size: 22rpx; font-size: 22rpx;
line-height: 4;
color: #999; color: #999;
} }