美文网首页
小程序弹窗

小程序弹窗

作者: 百不理 | 来源:发表于2020-08-19 10:06 被阅读0次
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('用户点击取消')
            }
          }
    })
}
有取消按钮的
没有取消按钮的

相关文章

网友评论

      本文标题:小程序弹窗

      本文链接:https://www.haomeiwen.com/subject/mtlrjktx.html