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.
42 lines
596 B
42 lines
596 B
const _app = getApp<IAppOption>(); |
|
|
|
Page({ |
|
data: { |
|
float1: false, |
|
float2: false, |
|
float3: false, |
|
}, |
|
onLoad() {}, |
|
handelTap1() { |
|
this.setData({ |
|
float1: true, |
|
}); |
|
}, |
|
handelTap2() { |
|
wx.reLaunch({ |
|
url:'/pages/9/index' |
|
}) |
|
}, |
|
handelTap3() { |
|
wx.reLaunch({ |
|
url:'/pages/18/index' |
|
}) |
|
}, |
|
handleFloat1() { |
|
this.setData({ |
|
float1: false, |
|
}); |
|
}, |
|
handleTabbar1() { |
|
wx.reLaunch({ |
|
url: "/pages/1/index", |
|
}); |
|
}, |
|
handleTabbar2() { |
|
wx.reLaunch({ |
|
url: "/pages/4/index", |
|
}); |
|
}, |
|
}); |
|
|
|
export {};
|
|
|