ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
[界面交交](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' }); ```