openTimerPage跳转定时界面(ray框架)
定时界面的UI配置timerConfig设置无效
Re: 定时界面的UI配置timerConfig设置无效
/**
- timerConfig
- UI配置
*/
timerConfig: {
background: '#131222',
backgroundColor:'#131222'
},定时页面UI界面无变化
Re: 定时界面的UI配置timerConfig设置无效
定时界面的跳转代码贴一下我们看看
Re: 定时界面的UI配置timerConfig设置无效
openTimerPage({
deviceId: devInfo.devId,
category: 'schedule',
data: [
{
dpId: '20',
dpName: ${Strings.getLang('switch')}
,
selected: 0,
rangeKeys: [true, false],
rangeValues: [${Strings.getLang('dps_open')}
, ${Strings.getLang('dps_close')}
],
},
],
timerConfig: {
background: '#131222',
backgroundColor: '#131222'
},
success: info => console.log('=== openTimerPage success', info),
fail: error => console.warn('=== openTimerPage fail', error),
});
Re: 定时界面的UI配置timerConfig设置无效
timerConfig: {
background: '#131222',
backgroundColor: '#131222'
},设置后,Android端,navigationBar的背景颜色会改变,但是内容区的背景颜色不会改变;ios端navigationBar的背景颜色以及内容区的背景颜色都不会改变