11 lines
241 B
JavaScript
11 lines
241 B
JavaScript
const app = getApp();
|
|
|
|
export function doNavigateWithUser(options) {
|
|
const user = app.getLocalUserInfo();
|
|
if (true || user.user_id) {
|
|
wx.navigateTo(options);
|
|
return;
|
|
}
|
|
wx.navigateTo({ url: '/pages/login/login' })
|
|
}
|