<!-- #ifdef MP-ALIPAY -->
<life-follow :sceneId="'2e73934c888345aab97a3bdbef18cae6'" v-if="showFollow" :checkFollow="isFollow"
@checkFollow="checkFollowFunc($event)" @close="closeFunc($event)" />
<!-- #endif -->
checkFollowFunc(event){
console.log(event, "::checkFollow::")
if(event && event.detail){
const { followed, closeCount } = event.detail || {}
this.isFollow = false
this.showFollow = false
/**如果没有关注的话,展示组件 */
if(!followed){
this.$nextTick(() => {
this.showFollow = true
this.show = true
})
} else {
this.$nextTick(() => {
this.showFollow = false
this.show = false
})
}
}
}
3***@qq.com (作者)
更新一下uni-app 的库
2023-12-28 18:50