智能照明系统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/4a/4a3a4c7d5e63d40a1dd24d39236...

16 lines
473 B

function findPage (pageId) {
pageId = parseInt(pageId)
const page = getCurrentPages(true).find(page => page.$page.id === pageId)
if (!page) {
return console.error(`Page[${pageId}] not found`)
}
return page
}
export function onWebviewInserted (data, pageId) {
const page = findPage(pageId)
page && (page.__uniapp_webview = true)
}
export function onWebviewRemoved (data, pageId) {
const page = findPage(pageId)
page && (delete page.__uniapp_webview)
}