小程序弹窗

function confirms(content, callback, isCancel) { //确认对话框
    wx.showModal({
        title: '提示',
        content: content,
        showCancel: isCancel || false,
        //cancelText: "否", //默认是“取消”
       // cancelColor: 'skyblue', //取消文字的颜色
        //confirmText: "是", //默认是“确定”
        //confirmColor: 'skyblue', //确定文字的颜色
        success (res) {
            if (res.confirm) {
                wx.navigateTo({
                    url: '/pages/pandaMoney/pandaMoney',
                })
            } else if (res.cancel) {
              console.log('用户点击取消')
            }
          }
    })
}
有取消按钮的

没有取消按钮的

你可能感兴趣的:(小程序弹窗)