小程序点击按钮 关闭小程序

wx.navigateBack({
    delta: 0
})
 
fail:function(){
  wx.showModal({
    title: '拒绝授权',
    content: '拒绝授权您将不能使用任何功能, 如想重新授权,请先删除小程序之后再次添加授权,才能使用',
    showCancel: false,
    success: function (res) {
      if (res.confirm) {
        wx.navigateBack({
          delta: 0
        })
      }
    }
  })
}

 

posted @ 2017-11-30 15:46  不一样的开始  阅读(5556)  评论(0编辑  收藏  举报