微信小程序 wx.showModal去掉取消按钮以及自定样式

wx.showModal({

            title: '提示',

            content: '您确定要删除该文件吗?',

            showCancel: true, //是否显示取消按钮-----false去掉取消按钮

            cancelText: "", //默认是“取消”

            cancelColor: '', //取消文字的颜色

            confirmText: "", //默认是“确定”

            confirmColor: '', //确定文字的颜色

            success: function(res) {

            }

})

默认效果

 自定义效果

原文链接:https://www.jianshu.com/p/edeb57d564fe

猜你喜欢

转载自www.cnblogs.com/WuLiaoDeTang/p/12762930.html
今日推荐