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.
16 lines
402 B
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)
|
|
}
|
|
|