feat(m1): add customer detail aggregation view

This commit is contained in:
2026-05-25 01:28:36 +08:00
parent bfb8f23399
commit b5317d8f58
6 changed files with 109 additions and 7 deletions
@@ -38,6 +38,10 @@ export function deleteProject(id) {
return axios.delete(`/api/v1/projects/${id}`);
}
export function getCustomerSummary(id) {
return axios.get(`/api/v1/customers/${id}/summary`);
}
export function getProjectPhaseDictionary() {
return axios.get("/api/v1/dictionaries/PROJECT_PHASE");
}