笔记回复去掉收藏

个人中心菜单“其它通知” 样式调整
This commit is contained in:
daihh
2022-10-31 19:10:27 +08:00
parent fa06e85906
commit 5340270585
3 changed files with 7 additions and 7 deletions

View File

@@ -159,7 +159,7 @@
</div> </div>
</div> </div>
</div> </div>
<div v-if="!com.showAll" style="padding-left: 45px;padding-bottom: 10px;" @click="loadReplyMore(com)"><span style="color: #9e9e9e;cursor: pointer; border-radius: 5px;border:1px solid #cccccc;padding: 5px 10px;font-size: 14px;">加载更多&gt;&gt;</span></div> <div v-if="!com.showAll && com.replyList.length>3" style="padding-left: 45px;padding-bottom: 10px;" @click="loadReplyMore(com)"><span style="color: #9e9e9e;cursor: pointer; border-radius: 5px;border:1px solid #cccccc;padding: 5px 10px;font-size: 14px;">加载更多&gt;&gt;</span></div>
</div> </div>
</div> </div>
</div> </div>

View File

@@ -65,7 +65,7 @@
</div> </div>
<div class="comment-time portal-time"> <div class="comment-time portal-time">
<showTime :time="reply.sysCreateTime"></showTime> <showTime :time="reply.sysCreateTime"></showTime>
<interactBar :type="60" :shares="false" :data="reply" @addAnswers="showReply(reply)" :views="false" :comments="false" :answers="true"></interactBar> <interactBar :type="60" :shares="false" :data="reply" @addAnswers="showReply(reply)" :views="false" :favorites="false" :comments="false" :answers="true"></interactBar>
</div> </div>
</div> </div>
<!--发布回复--> <!--发布回复-->
@@ -81,7 +81,7 @@
</div> </div>
</div> </div>
</div> </div>
<div v-if="!com.showAll" style="padding-left: 45px;padding-bottom: 10px;" @click="loadReplyMore(com)"><span style="color: #9e9e9e;cursor: pointer; border-radius: 5px;border:1px solid #cccccc;padding: 5px 10px;font-size: 14px;">加载更多&gt;&gt;</span></div> <div v-if="!com.showAll && com.replyList.length>0" style="padding-left: 45px;padding-bottom: 10px;" @click="loadReplyMore(com)"><span style="color: #9e9e9e;cursor: pointer; border-radius: 5px;border:1px solid #cccccc;padding: 5px 10px;font-size: 14px;">加载更多&gt;&gt;</span></div>
</div> </div>
</div> </div>
</div> </div>

View File

@@ -283,13 +283,13 @@
<span>其他通知</span> <span>其他通知</span>
</template> </template>
<el-menu-item index="/article/contactme" v-show="curIdentity == 1"> <el-menu-item index="/article/contactme" v-show="curIdentity == 1">
<span slot="title">@我的</span> <span slot="title" class="textl">@我的</span>
</el-menu-item> </el-menu-item>
<el-menu-item index="/user/myshare" v-show="curIdentity == 1"> <el-menu-item index="/user/myshare" v-show="curIdentity == 1">
<span slot="title">我分享的</span> <span slot="title" class="textl">我分享的</span>
</el-menu-item> </el-menu-item>
<el-menu-item index="/user/toshare" v-show="curIdentity == 1"> <el-menu-item index="/user/toshare" v-show="curIdentity == 1">
<span slot="title">分享给我的</span> <span slot="title" class="textl">分享给我的</span>
</el-menu-item> </el-menu-item>
</el-submenu> </el-submenu>