1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| // .js Page({ data: { //toast默认不显示 isShowToast: false }, showToast: function () { var _this = this; _this.data.count = parseInt(_this.data.count) ? parseInt(_this.data.count) : 3000; // toast时间 _this.setData({ // 显示toast isShowToast: true, }); setTimeout(function () { // 定时器关闭 _this.setData({ isShowToast: false }); }, _this.data.count); }, clickBtn: function () { // 点击按钮 console.log("你点击了按钮") //设置toast时间,toast内容 this.setData({ count: 1500, toastText: 'Michael’s Toast', toastimg: '/assets/wechat.png' }); this.showToast(); } })
|