深淺主題下顯示不一致問題
淺色模式下按鈕文字看不見了
深色模式下能正常顯示
代碼實現(xiàn)
x.showModal({
title: '提示',
content: '只有圈子認證后才能使用通訊助手哦',
showCancel: true,
cancelText: '取消',
cancelColor: '#000000',
confirmText: '認證',
confirmColor: 'rgba(82, 107, 177, 1)',
success: (result) => {
if (result.confirm) {
// 前往認證
wx.navigateTo({
url: '../circle-affirm/circle-affirm'
})
}
},
fail: () => {},
complete: () => {}
});
問題根源
cancelColor初狰、confirmColor
必須是16進制格式的顏色字符串
解決辦法
x.showModal({
title: '提示',
content: '只有圈子認證后才能使用通訊助手哦',
showCancel: true,
cancelText: '取消',
cancelColor: '#000000',
confirmText: '認證',
confirmColor: '#526BB1', //改了這里帮孔!
success: (result) => {
if (result.confirm) {
// 前往認證
wx.navigateTo({
url: '../circle-affirm/circle-affirm'
})
}
},
fail: () => {},
complete: () => {}
});
最后 ??
好啦,以上就是我本次分享的全部內(nèi)容啦柄瑰,如果你覺得我的文章對你有一丟丟幫助躺孝,那么請不要吝嗇你的贊??哦,阿門~