1
This commit is contained in:
parent
17c53afdb4
commit
532e0e6700
@ -47,7 +47,7 @@
|
||||
|
||||
<script>
|
||||
import VNavigationBar from '@/components/VNavigationBar.vue'
|
||||
|
||||
import request from "@/utils/request";
|
||||
export default {
|
||||
components: {
|
||||
VNavigationBar,
|
||||
@ -68,10 +68,20 @@
|
||||
};
|
||||
},
|
||||
onLoad(data) {
|
||||
//当前登录用户信息
|
||||
this.customInfo = JSON.parse(uni.getStorageSync('customerInfo'))
|
||||
console.log(this.customInfo,66)
|
||||
this.getCustomer()
|
||||
},
|
||||
methods:{
|
||||
//获取当前登录用户信息
|
||||
async getCustomer() {
|
||||
request({
|
||||
url: "/userClient/customer/getUserCustomer",
|
||||
method: 'get',
|
||||
params:{}
|
||||
}).then(res=>{
|
||||
this.customInfo = res.data
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
@ -114,21 +114,21 @@
|
||||
})
|
||||
},
|
||||
//获取当前登录用户信息
|
||||
async getServer() {
|
||||
request({
|
||||
url: "/userClient/customer/getUserCustomer",
|
||||
method: 'get',
|
||||
params:{}
|
||||
}).then(res=>{
|
||||
if(!res.data){
|
||||
uni.reLaunch({
|
||||
url: '/pages/my/register'
|
||||
})
|
||||
}else{
|
||||
setUserInfo(JSON.stringify(res.data))
|
||||
this.customInfo = res.data
|
||||
}
|
||||
})
|
||||
async getServer() {
|
||||
request({
|
||||
url: "/userClient/customer/getUserCustomer",
|
||||
method: 'get',
|
||||
params:{}
|
||||
}).then(res=>{
|
||||
if(!res.data){
|
||||
uni.reLaunch({
|
||||
url: '/pages/my/register'
|
||||
})
|
||||
}else{
|
||||
setUserInfo(JSON.stringify(res.data))
|
||||
this.customInfo = res.data
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -82,8 +82,8 @@
|
||||
},
|
||||
onShow(data) {
|
||||
//当前登录用户信息
|
||||
this.customInfo = JSON.parse(uni.getStorageSync('customerInfo'))
|
||||
this.getMemberList()
|
||||
this.getCustomer()
|
||||
},
|
||||
methods:{
|
||||
async getMemberList() {
|
||||
@ -94,7 +94,18 @@
|
||||
this.levelEquityList = res.data
|
||||
})
|
||||
|
||||
}
|
||||
},
|
||||
|
||||
//获取当前登录用户信息
|
||||
async getCustomer() {
|
||||
request({
|
||||
url: "/userClient/customer/getUserCustomer",
|
||||
method: 'get',
|
||||
params:{}
|
||||
}).then(res=>{
|
||||
this.customInfo = res.data
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
Loading…
Reference in New Issue
Block a user