From 4a2349ecf57ba7ec89166de271487459994b59de Mon Sep 17 00:00:00 2001 From: dhb52 Date: Sat, 27 Jan 2024 23:42:13 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20CRM-backlog-=E5=BE=85=E8=BF=9B=E5=85=A5?= =?UTF-8?q?=E5=85=AC=E6=B5=B7=E7=9A=84=E5=AE=A2=E6=88=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/crm/customer/index.ts | 5 + src/views/crm/backlog/index.vue | 2 +- .../crm/backlog/tables/PutInPoolRemind.vue | 156 +++++++++++++++++- 3 files changed, 154 insertions(+), 9 deletions(-) diff --git a/src/api/crm/customer/index.ts b/src/api/crm/customer/index.ts index 4542c86a..eb3445cf 100644 --- a/src/api/crm/customer/index.ts +++ b/src/api/crm/customer/index.ts @@ -100,3 +100,8 @@ export const receiveCustomer = async (ids: any[]) => { export const putCustomerPool = async (id: number) => { return await request.put({ url: `/crm/customer/put-pool?id=${id}` }) } + +// 进入公海客户提醒 +export const getPutInPoolRemindCustomerPage = async (params) => { + return await request.get({ url: `/crm/customer/put-in-pool-remind-page`, params }) +} diff --git a/src/views/crm/backlog/index.vue b/src/views/crm/backlog/index.vue index bbaf3f16..bc20c425 100644 --- a/src/views/crm/backlog/index.vue +++ b/src/views/crm/backlog/index.vue @@ -1,3 +1,4 @@ +