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.
36 lines
520 B
36 lines
520 B
|
3 weeks ago
|
const _app = getApp<IAppOption>()
|
||
|
|
|
||
|
|
Page({
|
||
|
|
data: {
|
||
|
|
background: '#fff',
|
||
|
|
},
|
||
|
|
|
||
|
|
onLoad() {
|
||
|
|
// 页面加载时的初始化
|
||
|
|
},
|
||
|
|
|
||
|
|
// 返回上一页
|
||
|
|
handleBack() {
|
||
|
|
wx.navigateBack()
|
||
|
|
},
|
||
|
|
|
||
|
|
// 新增记录
|
||
|
|
addRecord() {
|
||
|
|
wx.navigateTo({
|
||
|
|
url: '/patient/pages/noteAdd/index',
|
||
|
|
})
|
||
|
|
},
|
||
|
|
handleHistory() {
|
||
|
|
wx.navigateTo({
|
||
|
|
url: '/patient/pages/noteHistory/index',
|
||
|
|
})
|
||
|
|
},
|
||
|
|
comparePhotos() {
|
||
|
|
wx.navigateTo({
|
||
|
|
url: '/patient/pages/noteDiff/index',
|
||
|
|
})
|
||
|
|
},
|
||
|
|
})
|
||
|
|
|
||
|
|
export {}
|