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.
29 lines
416 B
29 lines
416 B
4 months ago
|
const _app = getApp<IAppOption>();
|
||
|
|
||
|
Page({
|
||
|
data: {},
|
||
|
onLoad() {},
|
||
|
handleTap1() {
|
||
|
wx.navigateTo({
|
||
|
url: "/pages/19/index",
|
||
|
});
|
||
|
},
|
||
|
handleTap2() {
|
||
|
wx.navigateTo({
|
||
|
url: "/pages/20/index",
|
||
|
});
|
||
|
},
|
||
|
handleTap3() {
|
||
|
wx.navigateTo({
|
||
|
url: "/pages/21/index",
|
||
|
});
|
||
|
},
|
||
|
handleTap4() {
|
||
|
wx.navigateTo({
|
||
|
url: "/pages/21/index?current=2",
|
||
|
});
|
||
|
},
|
||
|
});
|
||
|
|
||
|
export {};
|