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.

23 lines
291 B

8 years ago
const app = getApp()
Page({
data: {
title: '',
id: 0
},
onLoad (params) {
this.data.id = params.id
},
onReady () {
wx.setNavigationBarTitle({ title: this.data.title })
},
bindTapAddress () {
wx.navigateTo({
url: '../address/address'
})
}
})