mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-21 23:39:36 +08:00
34 lines
574 B
JavaScript
34 lines
574 B
JavaScript
let app = getApp()
|
|
Page({
|
|
|
|
/**
|
|
* 页面的初始数据
|
|
*/
|
|
data: {
|
|
|
|
},
|
|
|
|
/**
|
|
* 生命周期函数--监听页面加载
|
|
*/
|
|
onShow(e) {
|
|
this.getList()
|
|
},
|
|
getList() {
|
|
let that = this
|
|
app.AjaxRequest('get', {
|
|
'content-type': 'application/json',
|
|
'Authorization': 'Bearer ' + app.Getopenid()
|
|
}, '/user/profile', {}, function (res) {
|
|
that.setData({
|
|
memberInfo: res.data,
|
|
sexindex: res.data.sex
|
|
})
|
|
})
|
|
},
|
|
change() {
|
|
wx.navigateTo({
|
|
url: '../changePassword/changePassword',
|
|
})
|
|
}
|
|
}) |