我的收藏标题提示

This commit is contained in:
zhaofang
2022-11-01 18:31:57 +08:00
parent 33ced03ac6
commit ef3e45dbeb
7 changed files with 29 additions and 13 deletions

View File

@@ -3,7 +3,7 @@
<ul>
<li class="answer-list-index" v-for="item in items" :key="item.id">
<h6 class="answer-title-info follow-home-title">
<span class="pointer" @click="jumpDetail(item)">{{item.qtitle || item.title}}</span> <span style="font-weight: 400;">#回答#</span>
<span class="pointer" @click="jumpDetail(item)">{{item.qtitle || item.title}}</span> <span v-if="item.type" style="font-weight: 400;">#回答#</span>
<span class="follow-hide" style="float:right">
<el-button @click.stop="delCollectItem(item)" type="text" icon="el-icon-star-on" style="color:#8590A6">取消收藏</el-button>
</span>

View File

@@ -5,7 +5,7 @@
<!-- <div class="article-info-title"> -->
<div @click="qadetail(item)" class="art-head article-info-title" style="line-height: 30px;">
<!-- <span class="qa-basic" :class="item.question.isResolve ? 'qa-solve' : 'qa-unSolve'">{{ item.question.isResolve ? '【已解决】' : '【待解决】' }}</span> -->
<span style="padding-left: 5px">{{ item.question.title }} <span class="qa-bq">#提问#</span> </span>
<span style="padding-left: 5px">{{ item.question.title }} <span v-if="item.type" class="qa-bq">#提问#</span> </span>
<el-button @click.stop="delCollectItem(item)" type="text" icon="el-icon-star-on" style="color:#8590A6">取消收藏</el-button>
</div>
<!-- </div> -->