首页应用入口跳转

This commit is contained in:
liuye
2023-08-17 17:12:50 +08:00
parent e61437d5eb
commit 03932a6d31

View File

@@ -257,8 +257,10 @@ export default {
}) })
}, },
openApp(row) { openApp(row) {
if(row.appId) { if(row.type == 1) {
uni.navigateToMiniProgram({appId: row.appId}); uni.navigateToMiniProgram({appId: row.appId});
}else { //type0 内置应用
uni.navigateTo({url: row.modulePath})
} }
} }
}, },