个人信息接口替换
parent
f4c1b30f2e
commit
cfa35b2c6f
|
@ -1,16 +1,26 @@
|
|||
import request from '@/sheep/request';
|
||||
import request2 from '@/sheep/request2';
|
||||
import $platform from '@/sheep/platform';
|
||||
|
||||
export default {
|
||||
profile: () =>
|
||||
request({
|
||||
url: '/user/api/user/profile',
|
||||
request2({
|
||||
url: 'member/user/get',
|
||||
method: 'GET',
|
||||
custom: {
|
||||
showLoading: false,
|
||||
auth: true,
|
||||
},
|
||||
}),
|
||||
// profile: () =>
|
||||
// request({
|
||||
// url: '/user/api/user/profile',
|
||||
// method: 'GET',
|
||||
// custom: {
|
||||
// showLoading: false,
|
||||
// auth: true,
|
||||
// },
|
||||
// }),
|
||||
update: (data) =>
|
||||
request({
|
||||
url: '/user/api/user/update',
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
|
||||
// 用户信息
|
||||
const userInfo = computed(() => sheep.$store('user').userInfo);
|
||||
console.log(userInfo)
|
||||
|
||||
// 是否登录
|
||||
const isLogin = computed(() => sheep.$store('user').isLogin);
|
||||
|
|
|
@ -44,8 +44,8 @@ const user = defineStore({
|
|||
actions: {
|
||||
// 获取个人信息
|
||||
async getInfo() {
|
||||
const { error, data } = await userApi.profile();
|
||||
if (error !== 0) return;
|
||||
const { code, data } = await userApi.profile();
|
||||
if (code !== 0) return;
|
||||
this.userInfo = data;
|
||||
|
||||
return Promise.resolve(data);
|
||||
|
|
Loading…
Reference in New Issue