获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
ئى
wx.showModal 在ios浅色主题下无法显示按钮文字?如题,深色主题下可以正常显示,浅色主题不可以 以下是我的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) { },//接口调用结束的回调函数(调用成功、失败都会执行){ }, })
2021-12-27