no commit message

This commit is contained in:
annnj-company
2026-04-27 10:10:35 +08:00
parent 68a0b1ab22
commit 6fc3e6b64f
19 changed files with 1058 additions and 64 deletions

View File

@@ -146,3 +146,21 @@ export async function getUnreturnedPriceCount (params) {
const res = await post('admin/Pending/getUnreturnedPriceCount', params)
return res
}
// 获取预估制作数量status=9
export async function getEstimatePendingCount (params) {
const res = await post('admin/Pending/getEstimatePendingCount', params)
return res
}
// 获取查勘跟进中数量(当前登录人)
export async function getSurveyFollowCount (params) {
const res = await post('admin/Survey/surveyFollowCount', params)
return res
}
// 获取报告制作数量统计
export async function getReportProduceCount (params) {
const res = await post('admin/ReportManage/getReportProduceCount', params)
return res
}