小程序的 提示弹框

 

 

   示例代码

    wx.showModal({
      title: '提示',
      content: '这是一个模态弹窗',
      success (res) {
        if (res.confirm) {
          console.log('用户点击确定')
        } else if (res.cancel) {
          console.log('用户点击取消')
        }
      }
    })

 

posted @ 2019-12-03 15:18  吃橘子的小蜗牛  阅读(172)  评论(0编辑  收藏  举报