百度小程序新增关注按钮功能,查看官方文档是这样介绍的:
引用:
<follow-swan size="default"/></follow>
所以可以这样加,可以在swan上加入:
<view class="guanzhu"> <follow-swan size="default"/></follow> </view>
然后在detail.css加入:
.article .time{
display: inline-block;
position: relative;
left: -50px;
margin-top: 20px;
}
.guanzhu{
float:right;
margin-top: 10px;
position: relative;
right: 10px;
}
.name{
margin-top: 6px;
display: inline-block;
line-height: 30px;
font-size: 12px;
float: left;
}并且在detail.js加入:
swan.showFavoriteGuide({
type: 'tip'
})这样就好了,看看吧




