From 887d9469fa3c7b79cefc6330c21f86d5b2887c74 Mon Sep 17 00:00:00 2001 From: p7zwxau5j <904679083@qq.com> Date: Tue, 8 Oct 2024 14:33:48 +0800 Subject: [PATCH] ADD file via upload --- teacherHomePage.js | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 teacherHomePage.js diff --git a/teacherHomePage.js b/teacherHomePage.js new file mode 100644 index 0000000..16922f7 --- /dev/null +++ b/teacherHomePage.js @@ -0,0 +1,28 @@ +// pages/teacherHomePage/teacherHomePage.js +Page({ + goBack: function() { + wx.navigateTo({ + url:'/pages/index/index' + }); + }, + startRollCall: function() { + wx.navigateTo({ + url: '/pages/rollCall/rollCall' + }); + }, + showRanking: function() { + wx.navigateTo({ + url: '/pages/ranking/ranking' + }); + }, + showStudentList: function() { + wx.navigateTo({ + url: '/pages/studentList/studentList' + }); + }, + showRulesList: function() { + wx.navigateTo({ + url: '/pages/RulesList/RulesList' + }); + } +}); \ No newline at end of file