feat: 移除预算同步相关功能,简化预算管理逻辑
All checks were successful
Docker Build & Deploy / Build Docker Image (push) Successful in 22s
Docker Build & Deploy / Deploy to Production (push) Successful in 6s
Docker Build & Deploy / Cleanup Dangling Images (push) Successful in 2s

This commit is contained in:
孙诚
2026-01-07 16:23:50 +08:00
parent c95aa6b17b
commit 60fb0e0d8f
5 changed files with 3 additions and 72 deletions

View File

@@ -60,15 +60,3 @@ export function toggleStopBudget(id) {
})
}
/**
* 同步预算进度
* @param {number} id 预算ID
* @param {string} referenceDate 参考日期 (可选)
*/
export function syncBudget(id, referenceDate) {
return request({
url: '/Budget/Sync',
method: 'post',
params: { id, referenceDate }
})
}