小程序返回弹框
出现确定
wx.showModal({
title: '提示',
content: '请选择规格~',
showCancel: false
});
直接显示自动消失
wx.showToast({
title: '请选择规格!',
icon: 'none', //none | success https://blog.csdn.net/qq_39702981/article/details/86707520
duration: 2000
})
小程序跳转
toIndexPage:function(){
wx.switchTab({
url: "/pages/index/index"
});
}
新起点博客



评论前必须登录!
注册