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.
20 lines
416 B
20 lines
416 B
const AV = require("../../lib/av-live-query-weapp-min")
|
|
Page({
|
|
data:{
|
|
current_user: null
|
|
},
|
|
enter_usersetting: function(event){
|
|
wx.navigateTo({
|
|
url: '../user/user'
|
|
})
|
|
},
|
|
enter_changeuser: function(event){
|
|
console.log(event);
|
|
wx.navigateTo({
|
|
url: '../changeuser/changeuser'
|
|
})
|
|
},
|
|
onShow: function(){
|
|
this.setData({current_user: AV.User.current().toJSON()})
|
|
}
|
|
}) |