多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
[界面交交](https://developers.weixin.qq.com/miniprogram/dev/api/ui/interaction/wx.showToast.html) ## 模态框 ``` wx.showModal({ title: '收藏', content: '是否收藏该文章', showCancel:true, cancelText:'取消收藏', cancelColor:"red", confirmText:'确定收藏', confirmColor:'#44CEF6' }) ``` ## 弹出框 ``` wx.showToast({ title: postCollect?"收藏成功":"取消成功", icon: 'success' }); ```