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.
|
|
|
|
const _app = getApp<IAppOption>();
|
|
|
|
|
|
|
|
|
|
Page({
|
|
|
|
|
data: {
|
|
|
|
|
float1: true,
|
|
|
|
|
float2: false,
|
|
|
|
|
float3: false,
|
|
|
|
|
},
|
|
|
|
|
onLoad() {
|
|
|
|
|
this.setData({
|
|
|
|
|
float1: wx.getStorageSync("1float1") !== "1",
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
handlePage() {
|
|
|
|
|
wx.navigateTo({
|
|
|
|
|
url: "/pages/5/index",
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
handelTap1() {
|
|
|
|
|
wx.navigateTo({
|
|
|
|
|
url: "/pages/2/index",
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
handelTap2() {
|
|
|
|
|
wx.navigateTo({
|
|
|
|
|
url: "/pages/3/index",
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
handelTap3() {
|
|
|
|
|
wx.navigateTo({
|
|
|
|
|
url: "/pages/4/index",
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
handleTabbar2() {
|
|
|
|
|
wx.reLaunch({
|
|
|
|
|
url: "/pages/5/index",
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
handleTabbar4() {
|
|
|
|
|
wx.reLaunch({
|
|
|
|
|
url: "/pages/6/index",
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
handleTabbar5() {
|
|
|
|
|
wx.reLaunch({
|
|
|
|
|
url: "/pages/7/index",
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export {};
|