aboutUs.js
589 字节
$(document).ready(function() {
})
//获取用户VIP信息判断是否是VIP
function myselfInfo() {
var header = {
"Content-Type": "application/json",
"token": localStorage.getItem('token'),
}
ajax("/login/userInfo", "GET", header, function(res) {
}, function(res) {
if (res.data.status1 == 2) {
window.location.href = 'personalCenter2.html'
} else {
window.location.href = 'personalCenter.html'
}
}, function(res) {
if (res) {
alert("请您先登录!")
}
})
}