个人空间页小修改

main
方丽彤 2 months ago
commit ae25c3b37e

@ -5,7 +5,7 @@ import {getToken} from '@/token/auth' // 注意这里使用了解构赋值来导
// 创建axios实例
const service = axios.create({
// baseURL: 'http://47.122.59.26:8080/api', // 配置基础URL 如果服务器域名发生变化统一可以去.env文件修改
// baseURL: 'http://10.205.10.22:8081/loveforest/api/',
baseURL: 'http://10.133.6.46:8082/loveforest',
timeout: 5000, // 请求超时时间
});

@ -93,11 +93,12 @@
},
methods: {
async fetchUserInfo() {
await this.loaduserlikes();
try {
//
const response = await axios.get("/api/getUserInfo", {
params: {
userId: "12345", // ID
userId: this.userId, // ID
},
});
@ -145,6 +146,7 @@
mounted() {
//
this.fetchUserInfo();
this.fetchPostInfo();
},
};
</script>

Loading…
Cancel
Save