提交 96ff067e 编写于 作者: 雪洛's avatar 雪洛

Update bridge.js

上级 9f13c0fd
...@@ -71,7 +71,10 @@ export function isTabBarPage (path = '') { ...@@ -71,7 +71,10 @@ export function isTabBarPage (path = '') {
} }
return page.$page.meta.isTabBar return page.$page.meta.isTabBar
} }
const route = __uniRoutes.find(route => route.path.replace(/^\//, '') === path.replace(/^\//, '')) if (!/^\//.test(path)) {
path = '/' + path
}
const route = __uniRoutes.find(route => route.path === path)
return route && route.meta.isTabBar return route && route.meta.isTabBar
} catch (e) { } catch (e) {
if (process.env.NODE_ENV !== 'production') { if (process.env.NODE_ENV !== 'production') {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册