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.

24 lines
382 B

Page({
data: {
address: null
},
onLoad: function (params) {
},
onShow: function (params) {
var address = wx.getStorageSync('address')
this.setData({'address': address})
},
8 years ago
// bindBilling: function () {
// var cartItems = wx.getStorageSync('cartItems')
// },
bindTapAddress () {
wx.navigateTo({
url: '../address/address'
})
}
})