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.
57 lines
755 B
57 lines
755 B
|
1 year ago
|
const _app = getApp<IAppOption>();
|
||
|
|
|
||
|
|
Page({
|
||
|
|
data: {
|
||
|
|
current: 0,
|
||
|
|
|
||
|
|
float1: false,
|
||
|
|
},
|
||
|
|
onLoad() {},
|
||
|
|
handlePage1() {
|
||
|
|
this.setData({
|
||
|
|
current: 1,
|
||
|
|
});
|
||
|
|
},
|
||
|
|
handlePage2() {
|
||
|
|
this.setData({
|
||
|
|
current: 2,
|
||
|
|
});
|
||
|
|
},
|
||
|
|
handlePage3() {
|
||
|
|
this.setData({
|
||
|
|
current: 3,
|
||
|
|
});
|
||
|
|
},
|
||
|
|
handlePage4() {
|
||
|
|
wx.navigateBack();
|
||
|
|
},
|
||
|
|
handleTap1() {
|
||
|
|
wx.navigateTo({
|
||
|
|
url: "/pages/13/index",
|
||
|
|
});
|
||
|
|
},
|
||
|
|
handleTap2() {
|
||
|
|
wx.navigateTo({
|
||
|
|
url: "/pages/15/index",
|
||
|
|
});
|
||
|
|
},
|
||
|
|
handleTap3() {
|
||
|
|
wx.navigateTo({
|
||
|
|
url: "/pages/16/index",
|
||
|
|
});
|
||
|
|
},
|
||
|
|
handleTap4() {
|
||
|
|
this.setData({
|
||
|
|
float1: true,
|
||
|
|
});
|
||
|
|
},
|
||
|
|
|
||
|
|
handleFloat1(){
|
||
|
|
this.setData({
|
||
|
|
float1: false,
|
||
|
|
});
|
||
|
|
}
|
||
|
|
});
|
||
|
|
|
||
|
|
export {};
|