武田基因病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.

87 lines
1.3 KiB

1 month ago
const app = getApp<IAppOption>();
1 year ago
Page({
4 days ago
data: {
current: 0,
},
4 days ago
onShow() {},
4 days ago
handlePage1() {
this.setData({
current: 1,
});
},
handlePage2() {
this.setData({
current: 2,
});
},
handlePage3() {
this.setData({
current: 0,
});
},
1 year ago
handelTap1() {
wx.navigateTo({
url: "/pages/2/index",
});
},
handelTap2() {
wx.navigateTo({
2 months ago
url: "/pages/3/index",
1 year ago
});
},
1 year ago
handelTap3() {
wx.navigateTo({
url: "/pages/4/index",
});
1 month ago
},
handelTap4() {
wx.navigateTo({
4 days ago
url: "/pages/9/index",
1 month ago
});
},
handelTap5() {
wx.navigateTo({
4 days ago
url: "/pages/10/index",
1 month ago
});
1 year ago
},
4 days ago
handelTap6() {
wx.navigateTo({
url: "/pages/11/index",
});
},
// handleTabbar1() {
// wx.reLaunch({
// url: "/pages/1/index",
// });
// },
2 months ago
handleTabbar2() {
wx.reLaunch({
url: "/pages/5/index",
1 year ago
});
1 month ago
},
handleTabbar3() {
4 days ago
wx.redirectTo({
url: "/pages/8/index",
1 month ago
});
1 year ago
},
2 months ago
handleTabbar4() {
4 days ago
wx.redirectTo({
1 year ago
url: "/pages/7/index",
});
},
4 days ago
handelTap7() {
wx.navigateTo({
url: "/pages/6/index",
});
},
handelTap8() {
wx.navigateTo({
url: "/pages/12/index",
});
},
1 year ago
});
export {};