This commit is contained in:
zhaofang
2022-10-25 11:12:56 +08:00
parent 26d749db33
commit 57c8aebdac
2 changed files with 4 additions and 7 deletions

View File

@@ -4,11 +4,11 @@
<div class="article-info-date"></div> <div class="article-info-date"></div>
<div @click="jump(item)"> <div @click="jump(item)">
<div class="article-info"> <div class="article-info">
<div class="art-hear one-line-ellipsis"> <div class="art-hear">
<span class="article-info-title"> <div style="max-width:84%" class="article-info-title one-line-ellipsis">
{{ item.title }} {{ item.title }}
</div>
<span class="art-tit">#文章#</span> <span class="art-tit">#文章#</span>
</span>
<el-button @click.stop="delItem(item)" type="text" style="color: #8590A6" icon="el-icon-star-on">取消收藏</el-button> <el-button @click.stop="delItem(item)" type="text" style="color: #8590A6" icon="el-icon-star-on">取消收藏</el-button>
</div> </div>
<div class="article-info-tools"> <div class="article-info-tools">

View File

@@ -435,11 +435,8 @@ export default {
} }
apiNote.pagelist(query).then(res=>{ apiNote.pagelist(query).then(res=>{
if(res.status==200){ if(res.status==200){
console.log(res,'res');
this.noteList.count = res.result.count; this.noteList.count = res.result.count;
this.noteList.list = res.result.list; this.noteList.list = res.result.list;
console.log(this.noteList.list,'this.noteList.list ');
} }
}) })
}, },