// component/top.js Component({ /** * 组件的属性列表 */ properties: { }, /** * 组件的初始数据 */ data: { }, /** * 组件的方法列表 */ methods: { //跳转到单张典藏 bindSola() { wx.reLaunch({ url: "/pages/index/sola/index", }) }, //跳转到发售日期 bindSell() { wx.reLaunch({ url: "/pages/index/sell/index", }) }, //跳转到经典回顾 bindHistory() { wx.reLaunch({ url: "/pages/index/history/index" }) }, //跳转到通知列表 bindNotice() { wx.navigateTo({ url: "/pages/list/notice/idnex", }) }, //跳转到消息列表 bindMessage() { wx.navigateTo({ url: "/pages/list/message/index", }) }, }, })