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

43 lines
596 B

1 year ago
const _app = getApp<IAppOption>();
Page({
data: {
float1: false,
float2: false,
float3: false,
},
onLoad() {},
handelTap1() {
this.setData({
float1: true,
});
},
handelTap2() {
1 year ago
wx.reLaunch({
1 year ago
url:'/pages/9/index'
})
},
handelTap3() {
1 year ago
wx.reLaunch({
1 year ago
url:'/pages/18/index'
})
},
handleFloat1() {
this.setData({
float1: false,
});
},
handleTabbar1() {
1 year ago
wx.reLaunch({
1 year ago
url: "/pages/1/index",
});
},
handleTabbar2() {
1 year ago
wx.reLaunch({
1 year ago
url: "/pages/4/index",
});
},
});
export {};