getDiablomode ^8.7
获取当前是否是暗黑模式
请求参数
N/A
接口调用示例
this.$bridge.getDiablomode().then((res) => {
this.result = res;
});
1
2
3
返回参数
Prop | Type | Comment |
diabloMode | Number | 是否为暗黑模式,0:正常白天模式,1:夜间模式 2:其他后续有可能扩展 |
返回示例
{
code: 0,
msg: 'success',
diabloMode: 0
}
1
2
3
4
5