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.
 

28 lines
443 B

Component({
properties: {
active: 0
},
data: {
// 这里是一些组件内部数据
},
methods: {
// 这里是一个自定义方法
goWrite() {
wx.redirectTo({
url: '/pages/write/index',
})
},
goMyMail() {
wx.redirectTo({
url: '/pages/myMail/index',
})
},
goMyMailDraft() {
wx.redirectTo({
url: '/pages/myMailDraft/index',
})
}
},
})