Skip to content

Commit 08bb022

Browse files
committed
✨ CRM:完善联系人的编辑、详情
1 parent 094b192 commit 08bb022

File tree

7 files changed

+194
-214
lines changed

7 files changed

+194
-214
lines changed

src/api/crm/contact/index.ts

Lines changed: 28 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -2,29 +2,34 @@ import request from '@/config/axios'
22
import { TransferReqVO } from '@/api/crm/customer'
33

44
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 // 更新时间
2833
}
2934

3035
export interface ContactBusinessReqVO {

src/views/crm/clue/detail/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
ref="permissionListRef"
3434
:biz-id="clue.id!"
3535
:biz-type="BizTypeEnum.CRM_CLUE"
36-
:show-action="!permissionListRef?.isPool || false"
36+
:show-action="true"
3737
@quit-team="close"
3838
/>
3939
</el-tab-pane>

0 commit comments

Comments
 (0)