uniapp实现文章收藏
首先布局为 图文
我们实现点击文章上的红心进行收藏操作
红心组件如下
<template>
<view class="save-incons" @click.stop="_changeSaveStatus">
<uni-icons color="#ff6600" :type="isLike ? 'heart-filled':'heart'" size="20"></uni-icons>
</view>
</template>
在功能实现之前我们需要验证是否为登录的状态 如未登录则跳转登录页面
像是检验登录的功能一般会多次用到 直接Mixin混入全局使用
checkedIsLogin () {
return new Promise(resolve => {
if (this.userInfo) {
resolve()
} else {
uni.navigateTo(