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.
37 lines
527 B
37 lines
527 B
const _app = getApp<IAppOption>(); |
|
|
|
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 {};
|
|
|