智能照明系统APP-本地串口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
LightingSystemApp-serial/.svn/pristine/98/9880d4020011d7e3c311155b5e2...

31 lines
699 B

import {
invoke
} from 'uni-core/service/bridge'
import {
onMethod
} from '../../platform'
const callbacks = []
onMethod('onThemeChange', function (res) {
callbacks.forEach(callbackId => {
invoke(callbackId, res)
})
})
export function onThemeChange (callbackId) {
callbacks.push(callbackId)
}
// 旧版本 API,后期文档更新后考虑移除
onMethod('onUIStyleChange', function (res) {
callbacks.forEach(callbackId => {
invoke(callbackId, res)
})
})
export function onUIStyleChange (callbackId) {
callbacks.push(callbackId)
console.log('API uni.onUIStyleChange 已过时,请使用 uni.onThemeChange,详情:https://uniapp.dcloud.net.cn/api/system/theme')
}