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.
28 lines
488 B
28 lines
488 B
const app = getApp<IAppOption>() |
|
|
|
Page({ |
|
data: {}, |
|
onLoad() { |
|
// 工作入口页面,允许所有身份访问 |
|
app.waitLogin({ types: [] }).then(() => { |
|
// 页面加载完成 |
|
}) |
|
}, |
|
handleGround() { |
|
wx.navigateTo({ |
|
url: '/ground/pages/login/index', |
|
}) |
|
}, |
|
handleDoctor() { |
|
wx.navigateTo({ |
|
url: '/doctor/pages/login/index', |
|
}) |
|
}, |
|
hadlePatient() { |
|
wx.navigateTo({ |
|
url: '/pages/tourists/index', |
|
}) |
|
}, |
|
}) |
|
|
|
export {}
|
|
|