From 9a2dac3f738911b4ab1a21ff39c6d59ea03d2966 Mon Sep 17 00:00:00 2001 From: shizhong <124974919@qq.com> Date: Mon, 11 Mar 2024 20:40:29 +0800 Subject: [PATCH] Merge remote-tracking branch 'yudao/dev' into dev-crm --- src/api/crm/contract/index.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/api/crm/contract/index.ts b/src/api/crm/contract/index.ts index bd9e93e0..a15b8790 100644 --- a/src/api/crm/contract/index.ts +++ b/src/api/crm/contract/index.ts @@ -111,3 +111,13 @@ export const getAuditContractCount = async () => { export const getRemindContractCount = async () => { return await request.get({ url: '/crm/contract/remind-count' }) } + +// 获得待审核合同数量 +export const getAuditContractCount = async () => { + return await request.get({ url: '/crm/contract/audit-count' }) +} + +// 获得即将到期(提醒)的合同数量 +export const getRemindContractCount = async () => { + return await request.get({ url: '/crm/contract/remind-count' }) +}