仓库地址修改
This commit is contained in:
@@ -1,54 +0,0 @@
|
||||
const app = getApp()
|
||||
Page({
|
||||
data: {
|
||||
spinShow: false,
|
||||
info: {}
|
||||
},
|
||||
|
||||
onLoad: function(options) {
|
||||
this.loadUserInfo()
|
||||
},
|
||||
loadUserInfo() {
|
||||
let _this = this
|
||||
_this.setData({
|
||||
spinShow: true
|
||||
});
|
||||
app.formPost('/api/wx/student/user/current', null).then(res => {
|
||||
if (res.code == 1) {
|
||||
_this.setData({
|
||||
info: res.response
|
||||
});
|
||||
}
|
||||
_this.setData({
|
||||
spinShow: false
|
||||
});
|
||||
}).catch(e => {
|
||||
_this.setData({
|
||||
spinShow: false
|
||||
});
|
||||
app.message(e, 'error')
|
||||
})
|
||||
},
|
||||
logOut() {
|
||||
let _this = this
|
||||
_this.setData({
|
||||
spinShow: true
|
||||
});
|
||||
app.formPost('/api/wx/student/auth/unBind', null).then(res => {
|
||||
if (res.code == 1) {
|
||||
wx.setStorageSync('token', '')
|
||||
wx.reLaunch({
|
||||
url: '/pages/user/bind/index',
|
||||
});
|
||||
}
|
||||
_this.setData({
|
||||
spinShow: false
|
||||
});
|
||||
}).catch(e => {
|
||||
_this.setData({
|
||||
spinShow: false
|
||||
});
|
||||
app.message(e, 'error')
|
||||
})
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user