diff --git a/src/api/crm/customer/index.ts b/src/api/crm/customer/index.ts index 2940934e..6a89856e 100644 --- a/src/api/crm/customer/index.ts +++ b/src/api/crm/customer/index.ts @@ -1,36 +1,33 @@ import request from '@/config/axios' export interface CustomerVO { - id?: number - name: string - industryId: number - level: number - source: number - followUpStatus?: boolean + id: number // 编号 + name: string // 客户名称 + followUpStatus: boolean // 跟进状态 + contactLastTime: Date // 最后跟进时间 + contactLastContent: string // 最后跟进内容 + contactNextTime: Date // 下次联系时间 + ownerUserId: number // 负责人的用户编号 + ownerUserName?: string // 负责人的用户名称 + ownerUserDept?: string // 负责人的部门名称 lockStatus?: boolean dealStatus?: boolean - mobile: string - telephone: string - website: string - qq: string - wechat: string - email: string - description: string - remark: string - ownerUserId?: number - ownerUserName?: string - ownerUserDept?: string - roUserIds?: string - rwUserIds?: string - areaId?: number - areaName?: string - detailAddress: string - contactLastTime?: Date - contactNextTime: Date - createTime?: Date - updateTime?: Date - creator?: string - creatorName?: string + mobile: string // 手机号 + telephone: string // 电话 + qq: string // QQ + wechat: string // wechat + email: string // email + areaId: number // 所在地 + areaName?: string // 所在地名称 + detailAddress: string // 详细地址 + industryId: number // 所属行业 + level: number // 客户等级 + source: number // 客户来源 + remark: string // 备注 + creator: string // 创建人 + creatorName?: string // 创建人名称 + createTime: Date // 创建时间 + updateTime: Date // 更新时间 } // 查询客户列表 diff --git a/src/views/crm/backlog/components/ClueFollowList.vue b/src/views/crm/backlog/components/ClueFollowList.vue index a1d129b8..4ed37d4e 100644 --- a/src/views/crm/backlog/components/ClueFollowList.vue +++ b/src/views/crm/backlog/components/ClueFollowList.vue @@ -29,7 +29,7 @@ - + - + diff --git a/src/views/crm/clue/index.vue b/src/views/crm/clue/index.vue index 43eaab20..1931465f 100644 --- a/src/views/crm/clue/index.vue +++ b/src/views/crm/clue/index.vue @@ -68,7 +68,7 @@ - + - + diff --git a/src/views/crm/customer/CustomerForm.vue b/src/views/crm/customer/CustomerForm.vue index 529a9eab..69a8d86e 100644 --- a/src/views/crm/customer/CustomerForm.vue +++ b/src/views/crm/customer/CustomerForm.vue @@ -13,23 +13,9 @@ - - - - - - - - - - + - - - - - - - @@ -59,20 +33,31 @@ - - + + + + - - + + - - + + @@ -83,19 +68,46 @@ - - + + - + + + + + + + + + + + + + + + + + @@ -105,16 +117,7 @@ - - - - - + @@ -126,17 +129,12 @@ /> + + + + + - - - - - - - - - -