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.
78 lines
1.9 KiB
78 lines
1.9 KiB
const app = getApp();
|
|
Page({
|
|
data:{
|
|
current_user: null,
|
|
avatar_url: '',
|
|
show_join_course_modal: false,
|
|
invite_code: ""
|
|
},
|
|
/**on tap */
|
|
onTapAvatar: function({currentTarget:{dataset}}){
|
|
wx.showActionSheet({
|
|
itemList: ["查看图片","更改头像"],
|
|
success:res=>{
|
|
switch(res.tapIndex){
|
|
case 0:
|
|
wx.previewImage({
|
|
urls: [dataset.src],
|
|
});
|
|
break;
|
|
case 1:
|
|
console.log("点击更改头像");
|
|
wx.chooseImage({
|
|
count:1,
|
|
success: function(res) {
|
|
console.log("choose image")
|
|
console.log(res);
|
|
const src = res.tempFilePaths[0]
|
|
wx.navigateTo({
|
|
url: '/avatar/pages/image_crop/image_crop?src='+src,fail:console.error
|
|
})
|
|
},
|
|
})
|
|
break;
|
|
}
|
|
}
|
|
})
|
|
|
|
},
|
|
|
|
logout: function(){
|
|
app.callApi({name:"accounts.logout",success:res=>{
|
|
console.log("注销成功");
|
|
console.log(res);
|
|
this.onShow();
|
|
},
|
|
fail:error=>{
|
|
console.error("注销失败");
|
|
console.error(error);
|
|
}
|
|
})
|
|
},
|
|
enter_login: function(event){
|
|
wx.navigateTo({
|
|
url: '/account/pages/login/login',fail:console.error
|
|
})
|
|
},
|
|
show_join_course_modal: function(event){
|
|
this.setData({show_join_course_modal: true});
|
|
},
|
|
|
|
onShow: function(){
|
|
app.api("users.get_user_info")()
|
|
.then(res=>{
|
|
console.log("get_user_info");
|
|
console.log(res)
|
|
this.setData({current_user: app.user()})
|
|
if ("image_url" in app.user() && app.user().image_url) {
|
|
this.setData({ avatar_url: "https://www.educoder.net/images/" + app.user().image_url })
|
|
}else{
|
|
this.setData({ avatar_url: "" });
|
|
}
|
|
})
|
|
},
|
|
|
|
onShareAppMessage: function(){
|
|
|
|
}
|
|
}) |