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.
|
// pages/index/index.js
|
|
Page({
|
|
gotocomment()
|
|
{
|
|
wx.navigateTo({
|
|
url: '/pages/comment/comment' // 确保路径正确
|
|
});
|
|
},
|
|
gotorank()
|
|
{
|
|
wx.navigateTo({
|
|
url: '/pages/rankk/rankk' // 确保路径正确
|
|
});
|
|
},
|
|
gotoindex3()
|
|
{
|
|
wx.navigateTo({
|
|
url: '/pages/index3/index3' // 确保路径正确
|
|
});
|
|
}
|
|
})
|