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.

21 lines
537 B

Page({
// 跳转到查看上报页面
goToViewReports() {
wx.navigateTo({
url: '/pages/viewReports/viewReports', // 这里是查看上报的页面路径
});
},
// 跳转到智能统计分析页面
goToDataAnalysis() {
wx.navigateTo({
url: '/pages/dataAnalysis/dataAnalysis', // 这里是智能统计分析的页面路径
});
},
// 跳转到智能统计分析页面
goTologin() {
wx.navigateTo({
url: '/pages/login/login', // 这里是智能统计分析的页面路径
});
}
});