智能照明系统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/1e/1ec8d1b4cd819d3e34c13bbfb98...

16 lines
402 B

export default function onWxsInvokeCallMethod ({
cid,
method,
args
}, pageId) {
pageId = parseInt(pageId)
const page = getCurrentPages(true).find(page => page.$page.id === pageId)
if (!page) {
return console.error(`Page[${pageId}] not found`)
}
const vm = page.$vm._$vd.getVm(cid)
if (!vm) {
return console.error(`vm[${cid}] not found`)
}
vm[method] && vm[method](args)
}