武田-血友病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.

38 lines
527 B

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