Initial commit: ERP system with advance verification fixes
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
// API配置
|
||||
export const API_CONFIG = {
|
||||
baseURL: '/api',
|
||||
timeout: 10000,
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
},
|
||||
}
|
||||
|
||||
// API端点
|
||||
export const API_ENDPOINTS = {
|
||||
auth: {
|
||||
login: '/auth/login',
|
||||
logout: '/auth/logout',
|
||||
me: '/auth/me',
|
||||
},
|
||||
products: '/products',
|
||||
customers: '/customers',
|
||||
suppliers: '/suppliers',
|
||||
advances: '/advances',
|
||||
reimbursements: '/reimbursements',
|
||||
projects: '/projects',
|
||||
paymentNodes: '/payment-nodes',
|
||||
paymentRecords: '/payment-records',
|
||||
exchangeRates: '/exchange-rates',
|
||||
financeStats: '/finance-stats',
|
||||
}
|
||||
Reference in New Issue
Block a user