码迷,mamicode.com
首页 > 其他好文 > 详细

小程序弹窗分类

时间:2018-05-18 15:37:09      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:tle   nav   navig   success   ati   结算   this   showmodal   取消   

 

第一种:无按钮 提示类型

wx.showToast({
title: ‘去结算‘,
icon: ‘success‘,
duration: 2000,
success: function () {
setTimeout(function () {
wx.navigateTo({
url: ‘../order-detail/order-detail‘,
})
}, 1000)
}
});
 

第二种:有按钮 

wx.showModal({
title: ‘提示‘,
content: ‘确定要删除吗?‘,
success: function (res) {
if (res.confirm) {
that.confirmDelete(e);
} else if (res.cancel) {
console.log(‘用户点击取消‘)
}
}
})
 
备注:此时 this不指向page下的环境,需要在函数开始 var that =this;

小程序弹窗分类

标签:tle   nav   navig   success   ati   结算   this   showmodal   取消   

原文地址:https://www.cnblogs.com/chanhxy/p/9056120.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!