ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
## 弹出框 **具体看[这里](https://developers.weixin.qq.com/miniprogram/dev/api/ui/interaction/wx.showToast.html)** ``` wx.showToast({ // 弹出框的标题 title: 'hello', // 弹出框的图标,不想设置图标时请给none icon: 'none' }) ``` ## 模态框 **具体看[这里](https://developers.weixin.qq.com/miniprogram/dev/api/ui/interaction/wx.showActionSheet.html)** ``` onShare() { wx.showActionSheet({ itemList: ["分享到微信", "分享到微博", "分享到朋友圈"], itemColor: '#808080', success: (res) => { this.setData({ shared: true }) }, fail: err => { this.setData({ shared: false }) }, }) }, ```