Skip to content

Commit fe91c5e

Browse files
author
puhui999
committed
CRM:transfer
1 parent 6d0e242 commit fe91c5e

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/api/crm/business/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,5 +74,5 @@ export const getBusinessListByIds = async (val: number[]) => {
7474

7575
// 商机转移
7676
export const transferBusiness = async (data: TransferReqVO) => {
77-
return await request.put({ url: '/crm/business/transfer-business', data })
77+
return await request.put({ url: '/crm/business/transfer', data })
7878
}

src/api/crm/clue/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@ export const exportClue = async (params) => {
4848

4949
// 线索转移
5050
export const transferClue = async (data: TransferReqVO) => {
51-
return await request.put({ url: '/crm/clue/transfer-clue', data })
51+
return await request.put({ url: '/crm/clue/transfer', data })
5252
}

src/api/crm/contact/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,5 +89,5 @@ export const deleteContactBusinessList = async (data: ContactBusinessReqVO) => {
8989

9090
// 联系人转移
9191
export const transferContact = async (data: TransferReqVO) => {
92-
return await request.put({ url: '/crm/contact/transfer-contact', data })
92+
return await request.put({ url: '/crm/contact/transfer', data })
9393
}

src/api/crm/contract/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,5 +74,5 @@ export const handleApprove = async (id: number) => {
7474

7575
// 合同转移
7676
export const transferContract = async (data: TransferReqVO) => {
77-
return await request.put({ url: '/crm/contract/transfer-contract', data })
77+
return await request.put({ url: '/crm/contract/transfer', data })
7878
}

src/api/crm/customer/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export interface TransferReqVO {
8383

8484
// 客户转移
8585
export const transferCustomer = async (data: TransferReqVO) => {
86-
return await request.put({ url: '/crm/customer/transfer-customer', data })
86+
return await request.put({ url: '/crm/customer/transfer', data })
8787
}
8888

8989
// 锁定/解锁客户

0 commit comments

Comments
 (0)