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.
|
|
|
Page({
|
|
data: {},
|
|
onLoad() {
|
|
console.log('规则页面加载');
|
|
},
|
|
goBack() {
|
|
wx.navigateTo({
|
|
url: '/pages/student/student',
|
|
});
|
|
},
|
|
goTorule2() {
|
|
console.log('点击了rule2按钮'); // 添加调试信息
|
|
wx.navigateTo({
|
|
url: `/pages/student/rules/rule2/rule2`,
|
|
});
|
|
},
|
|
}); |