wx.showModal({
title: ‘提示‘,
content: ‘您确定要删除该文件吗?‘,
showCancel: true, //是否显示取消按钮-----false去掉取消按钮
cancelText: "", //默认是“取消”
cancelColor: ‘‘, //取消文字的颜色
confirmText: "", //默认是“确定”
confirmColor: ‘‘, //确定文字的颜色
success: function(res) {
}
})
默认效果
自定义效果