武田基因病B开发环境
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.

33 lines
426 B

1 year ago
const _app = getApp<IAppOption>();
Page({
data: {
3 weeks ago
current: 0,
page1: true,
page2: false,
page3: false,
page4: false,
1 year ago
},
onLoad() {},
3 weeks ago
handlePage1() {
1 year ago
this.setData({
3 weeks ago
current: 1,
1 year ago
});
},
3 weeks ago
handlePage2() {
1 year ago
this.setData({
3 weeks ago
current: 2,
1 year ago
});
},
3 weeks ago
handlePage3() {
this.setData({
current: 3,
1 year ago
});
},
3 weeks ago
handlePage4() {
wx.navigateBack();
1 year ago
},
});
export {};