如题,深色主题下可以正常显示,浅色主题不可以
以下是我的showModal设置
wx.showModal({
title: '确认信息',
content: '测试',
showCancel: true,//是否显示取消按钮
cancelText: "否",//默认是“取消”
cancelColor: '#000000',//取消文字的颜色
confirmText: "是",//默认是“确定”
confirmColor: '#526BB1',//确定文字的颜色
success: function (res) {
if (res.cancel) {
//点击取消,默认隐藏弹框
} else {
//点击确定
}
}
fail: function (res) { },//接口调用失败的回调函数
complete: function (res) { },//接口调用结束的回调函数(调用成功、失败都会执行){ },
})
统一回复,将文字颜色的字符串的单引号改为双引号就解决了,谢谢各位大佬