This commit is contained in:
wangxiaoxian 2026-03-03 10:23:39 +08:00
parent 7c4f609442
commit ffaf738960
1 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
// API服务层用于与后端进行交互
const API_BASE_URL = 'http://localhost:3000/api';
const API_BASE_URL = '/api';
// 通用请求函数
async function request(url, options = {}) {
@ -12,11 +12,11 @@ async function request(url, options = {}) {
...options.headers
}
});
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
return await response.json();
} catch (error) {
console.error('API request error:', error);
@ -187,4 +187,4 @@ export default {
statistics: statisticsApi,
waterBill: waterBillApi,
electricityBill: electricityBillApi
};
};