This commit is contained in:
唐明明
2021-09-27 12:18:33 +08:00
40 changed files with 1643 additions and 2001 deletions

View File

@@ -280,7 +280,29 @@
chart.render();
return chart;
})
}
},
// 能量跳转
JumpUrl(open, title) {
var type = open.openType;
switch(type){
case 'switchTab':
uni.switchTab({
url: open.path
})
break;
case 'web':
uni.navigateTo({
url: open.url
})
break;
case 'navigateTo':
uni.navigateTo({
url: open.path
})
break;
}
}
}
}
</script>