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.
29 lines
370 B
29 lines
370 B
|
6 months ago
|
const _app = getApp<IAppOption>()
|
||
|
|
|
||
|
|
Page({
|
||
|
|
data: {
|
||
|
|
step: 0,
|
||
|
|
},
|
||
|
|
onLoad() {},
|
||
|
|
handleNext() {
|
||
|
|
this.setData({
|
||
|
|
step: 1,
|
||
|
|
})
|
||
|
|
wx.pageScrollTo({
|
||
|
|
scrollTop: 0,
|
||
|
|
})
|
||
|
|
},
|
||
|
|
handleSubmit() {
|
||
|
|
wx.navigateTo({
|
||
|
|
url: '/patient/pages/qolResult/index',
|
||
|
|
})
|
||
|
|
},
|
||
|
|
handlePrev() {
|
||
|
|
this.setData({
|
||
|
|
step: 0,
|
||
|
|
})
|
||
|
|
},
|
||
|
|
})
|
||
|
|
|
||
|
|
export {}
|