Merge branch 'master' of http://git.luyuan.tk/luyuan/deming into gyh

This commit is contained in:
Gdpao
2020-08-11 10:36:18 +08:00
18 changed files with 151 additions and 151 deletions

View File

@@ -27,7 +27,7 @@
<u-popup v-model="is_comment" class="pl" mode="bottom" border-radius="10" height="700rpx">
<view class="top">
<text>评论</text>
<u-icon name="close" color="#333" size="28" @click="is_comment=false"></u-icon>
<u-icon name="arrow-down" color="#333" size="28" @click="is_comment=false"></u-icon>
</view>
<scroll-view class="scroll-box" scroll-y="true" lower-threshold="50" @scrolltolower="scrollBottom">
<block v-for="(item,index) in commentList" :key="index">
@@ -180,16 +180,13 @@
z-index: 1000;
position: fixed;
top: 0;
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
height: 88rpx;
padding: 0 20rpx;
line-height: 88rpx;
background-color: #ECECEC;
& > text {
// margin-right: 280rpx;
margin-right: 280rpx;
color: #333;
font-size: 30rpx;
font-weight: 500;
@@ -517,10 +514,6 @@ export default {
},
// 发布评论
sendComment() {
if (this.send_value.length == 0) {
this.$u.toast("内容不能为空!");
return;
}
this.$u.post("article/articleAddComment",{
article_id: this.article_id,
content: this.send_value,