微信小程序 wx.showModal去掉取消按钮以及自定样式
发表时间:2020-9-23
发布人:葵宇科技
浏览次数:153
wx.showModal({
title: '提示',
content: '您确定要删除该文件吗?',
showCancel: true, //是否显示取消按钮-----false去掉取消按钮
cancelText: "", //默认是“取消”
cancelColor: '', //取消文字的颜色
confirmText: "", //默认是“确定”
confirmColor: '', //确定文字的颜色
success: function(res) {
}
})
