const _app = getApp(); Page({ data: { float1: false, float2: false, float3: false, }, onLoad() {}, 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", }); }, }); export {};