scshowDrawer(){
getAction('system/tongxunlu/list')
.then((res) => {
if (res.success) {
this.scdata=res.result.records
} else {
this.$message.warning(res.message)
}
this.scvisible = true
})
},
前端这个方法是接收到了收藏和未收藏全部的数据,res.result.records怎么过滤一下,只赋给它收藏的数据?
res.result.records中有个字段collection来区分收藏,collection=1收藏,collection=0未收藏