File tree Expand file tree Collapse file tree 7 files changed +194
-214
lines changed Expand file tree Collapse file tree 7 files changed +194
-214
lines changed Original file line number Diff line number Diff line change @@ -2,29 +2,34 @@ import request from '@/config/axios'
2
2
import { TransferReqVO } from '@/api/crm/customer'
3
3
4
4
export interface ContactVO {
5
- name : string
6
- nextTime : Date
7
- mobile : string
8
- telephone : string
9
- email : string
10
- post : string
11
- customerId : number
12
- detailAddress : string
13
- remark : string
14
- ownerUserId : string
15
- lastTime : Date
16
- id : number
17
- parentId : number
18
- qq : number
19
- wechat : string
20
- sex : number
21
- master : boolean
22
- creatorName : string
23
- updateTime ?: Date
24
- createTime ?: Date
25
- customerName : string
26
- areaName : string
27
- ownerUserName : string
5
+ id : number // 编号
6
+ name : string // 联系人名称
7
+ customerId : number // 客户编号
8
+ customerName ?: string // 客户名称
9
+ contactLastTime : Date // 最后跟进时间
10
+ contactLastContent : string // 最后跟进内容
11
+ contactNextTime : Date // 下次联系时间
12
+ ownerUserId : number // 负责人的用户编号
13
+ ownerUserName ?: string // 负责人的用户名称
14
+ ownerUserDept ?: string // 负责人的部门名称
15
+ mobile : string // 手机号
16
+ telephone : string // 电话
17
+ qq : string // QQ
18
+ wechat : string // wechat
19
+ email : string // email
20
+ areaId : number // 所在地
21
+ areaName ?: string // 所在地名称
22
+ detailAddress : string // 详细地址
23
+ sex : number // 性别
24
+ master : boolean // 是否主联系人
25
+ post : string // 职务
26
+ parentId : number // 上级联系人编号
27
+ parentName ?: string // 上级联系人名称
28
+ remark : string // 备注
29
+ creator : string // 创建人
30
+ creatorName ?: string // 创建人名称
31
+ createTime : Date // 创建时间
32
+ updateTime : Date // 更新时间
28
33
}
29
34
30
35
export interface ContactBusinessReqVO {
Original file line number Diff line number Diff line change 33
33
ref =" permissionListRef"
34
34
:biz-id =" clue.id!"
35
35
:biz-type =" BizTypeEnum.CRM_CLUE"
36
- :show-action =" !permissionListRef?.isPool || false "
36
+ :show-action =" true "
37
37
@quit-team =" close"
38
38
/>
39
39
</el-tab-pane >
You can’t perform that action at this time.
0 commit comments