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.

41 lines
707 B

const app = getApp<IAppOption>()
Page({
data: {
names: [
'张吉惟',
'林国瑞',
'林玟书',
'林雅南',
'江奕云',
'刘柏宏',
'阮建安',
'林子帆',
'夏志豪',
'吉茹定',
'李中冰',
'黄文隆',
'谢彦文',
'傅智翔',
'洪振霞',
'刘姿婷',
'荣姿康',
'吕致盈',
'方一强',
],
},
onLoad() {
// 药店端文章列表页面,仅允许药店人员访问
app.waitLogin({ types: [4] }).then(() => {
// 页面加载完成
})
},
handleInfo() {
wx.navigateTo({
url: '/doctor/pages/article/index',
})
},
})
export {}