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