File tree Expand file tree Collapse file tree 6 files changed +170
-327
lines changed Expand file tree Collapse file tree 6 files changed +170
-327
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
2
* @Author : zyna
3
3
* @Date : 2023-11-05 13:34:41
4
- * @LastEditTime : 2023-11-11 16: 20:19
4
+ * @LastEditTime : 2023-11-26 20:47:04
5
5
* @FilePath : \yudao-ui-admin-vue3\src\api\crm\contact\index.ts
6
6
* @Description :
7
7
*/
@@ -22,13 +22,15 @@ export interface ContactVO {
22
22
id : number
23
23
parentId : number
24
24
qq : number
25
- webchat : string
25
+ wechat : string
26
26
sex : number
27
- policyMakers : boolean
27
+ master : boolean
28
28
creatorName : string
29
29
updateTime ?: Date
30
30
createTime ?: Date
31
- customerName : string
31
+ customerName : string ,
32
+ areaName : string ,
33
+ ownerUserName : string
32
34
}
33
35
34
36
// 查询crm联系人列表
@@ -60,6 +62,6 @@ export const deleteContact = async (id: number) => {
60
62
export const exportContact = async ( params ) => {
61
63
return await request . download ( { url : `/crm/contact/export-excel` , params } )
62
64
}
63
- export const simpleAlllist = async ( ) => {
64
- return await request . get ( { url : `/crm/contact/simpleAlllist ` } )
65
+ export const simpleAllList = async ( ) => {
66
+ return await request . get ( { url : `/crm/contact/simple-all-list ` } )
65
67
}
Original file line number Diff line number Diff line change @@ -62,3 +62,7 @@ export const deleteCustomer = async (id: number) => {
62
62
export const exportCustomer = async ( params ) => {
63
63
return await request . download ( { url : `/crm/customer/export-excel` , params } )
64
64
}
65
+ //客户列表
66
+ export const queryAllList = async ( ) => {
67
+ return await request . get ( { url : `/crm/customer/query-all-list` } )
68
+ }
You can’t perform that action at this time.
0 commit comments