武田小程序
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.

35 lines
524 B

const app = getApp<IAppOption>()
Page({
data: {
titleList: [
{
name: '主任医师',
},
{
name: '副主任医师',
},
{
name: '主治医师',
},
{
name: '住院医师',
},
{
name: '其他',
},
],
},
onLoad() {},
handleDoctor() {
wx.navigateTo({
url: '/module1/pages/sDoctor/index',
})
},
handleSubmit() {
wx.navigateTo({
url: '/module1/pages/setInfoResult/index',
})
},
})