feat: 完善采购申请流程 - 添加审批、执行、列表筛选排序功能

This commit is contained in:
System Administrator
2026-03-28 00:34:32 +07:00
parent 841f19e3f8
commit d437580500
306 changed files with 42669 additions and 27143 deletions
@@ -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: '/v1/auth/login',
logout: '/v1/auth/logout',
me: '/v1/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',
}