From 86c6d712fe52554e460f0b6241cc3b6056e32817 Mon Sep 17 00:00:00 2001 From: xingyu4j Date: Wed, 7 May 2025 18:47:23 +0800 Subject: [PATCH] feat: crm customer list --- apps/web-antd/src/views/crm/customer/data.ts | 379 ++++++++++++++++++ .../web-antd/src/views/crm/customer/index.vue | 201 ++++++++-- .../src/views/crm/customer/modules/form.vue | 85 ++++ 3 files changed, 636 insertions(+), 29 deletions(-) create mode 100644 apps/web-antd/src/views/crm/customer/data.ts create mode 100644 apps/web-antd/src/views/crm/customer/modules/form.vue diff --git a/apps/web-antd/src/views/crm/customer/data.ts b/apps/web-antd/src/views/crm/customer/data.ts new file mode 100644 index 00000000..87cdb42d --- /dev/null +++ b/apps/web-antd/src/views/crm/customer/data.ts @@ -0,0 +1,379 @@ +import type { VbenFormSchema } from '#/adapter/form'; +import type { OnActionClickFn, VxeTableGridOptions } from '#/adapter/vxe-table'; +import type { CrmCustomerApi } from '#/api/crm/customer'; +import type { DescriptionItemSchema } from '#/components/description'; + +import { h } from 'vue'; + +import { useAccess } from '@vben/access'; +import { formatDateTime } from '@vben/utils'; + +import { DictTag } from '#/components/dict-tag'; +import { DICT_TYPE, getDictOptions, getRangePickerDefaultProps } from '#/utils'; + +const { hasAccessByCodes } = useAccess(); + +/** 新增/修改的表单 */ +export function useFormSchema(): VbenFormSchema[] { + return [ + { + fieldName: 'id', + component: 'Input', + dependencies: { + triggerFields: [''], + show: () => false, + }, + }, + { + fieldName: 'name', + label: '客户名称', + component: 'Input', + rules: 'required', + }, + { + fieldName: 'source', + label: '客户来源', + component: 'Select', + componentProps: { + options: getDictOptions(DICT_TYPE.CRM_CUSTOMER_SOURCE), + }, + rules: 'required', + }, + { + fieldName: 'mobile', + label: '手机', + component: 'Input', + }, + { + fieldName: 'ownerUserId', + label: '负责人', + component: 'Select', + componentProps: { + api: 'getSimpleUserList', + }, + rules: 'required', + }, + { + fieldName: 'telephone', + label: '电话', + component: 'Input', + }, + { + fieldName: 'email', + label: '邮箱', + component: 'Input', + }, + { + fieldName: 'wechat', + label: '微信', + component: 'Input', + }, + { + fieldName: 'qq', + label: 'QQ', + component: 'Input', + }, + { + fieldName: 'industryId', + label: '客户行业', + component: 'Select', + componentProps: { + options: getDictOptions(DICT_TYPE.CRM_CUSTOMER_INDUSTRY), + }, + }, + { + fieldName: 'level', + label: '客户级别', + component: 'Select', + componentProps: { + options: getDictOptions(DICT_TYPE.CRM_CUSTOMER_LEVEL), + }, + }, + { + fieldName: 'areaId', + label: '地址', + component: 'Cascader', + componentProps: { + api: 'getAreaTree', + }, + }, + { + fieldName: 'detailAddress', + label: '详细地址', + component: 'Input', + }, + { + fieldName: 'contactNextTime', + label: '下次联系时间', + component: 'DatePicker', + componentProps: { + showTime: true, + format: 'YYYY-MM-DD HH:mm:ss', + valueFormat: 'x', + }, + }, + { + fieldName: 'remark', + label: '备注', + component: 'Textarea', + }, + ]; +} + +/** 列表的搜索表单 */ +export function useGridFormSchema(): VbenFormSchema[] { + return [ + { + fieldName: 'name', + label: '客户名称', + component: 'Input', + }, + { + fieldName: 'mobile', + label: '手机号', + component: 'Input', + }, + { + fieldName: 'telephone', + label: '电话', + component: 'Input', + }, + { + fieldName: 'createTime', + label: '创建时间', + component: 'RangePicker', + componentProps: { + ...getRangePickerDefaultProps(), + allowClear: true, + }, + }, + ]; +} + +/** 列表的字段 */ +export function useGridColumns( + onActionClick: OnActionClickFn, +): VxeTableGridOptions['columns'] { + return [ + { + field: 'name', + title: '客户名称', + minWidth: 160, + fixed: 'left', + slots: { + default: 'name', + }, + }, + { + field: 'source', + title: '客户来源', + minWidth: 100, + cellRender: { + name: 'CellDict', + props: { type: DICT_TYPE.CRM_CUSTOMER_SOURCE }, + }, + }, + { + field: 'mobile', + title: '手机', + minWidth: 120, + }, + { + field: 'telephone', + title: '电话', + minWidth: 130, + }, + { + field: 'email', + title: '邮箱', + minWidth: 180, + }, + { + field: 'detailAddress', + title: '地址', + minWidth: 180, + }, + { + field: 'industryId', + title: '客户行业', + minWidth: 100, + cellRender: { + name: 'CellDict', + props: { type: DICT_TYPE.CRM_CUSTOMER_INDUSTRY }, + }, + }, + { + field: 'level', + title: '客户级别', + minWidth: 100, + cellRender: { + name: 'CellDict', + props: { type: DICT_TYPE.CRM_CUSTOMER_LEVEL }, + }, + }, + { + field: 'ownerUserName', + title: '负责人', + minWidth: 100, + }, + { + field: 'ownerUserDeptName', + title: '所属部门', + minWidth: 100, + }, + { + field: 'contactNextTime', + title: '下次联系时间', + minWidth: 180, + formatter: 'formatDateTime', + }, + { + field: 'contactLastTime', + title: '最后跟进时间', + minWidth: 180, + formatter: 'formatDateTime', + }, + { + field: 'updateTime', + title: '更新时间', + minWidth: 180, + formatter: 'formatDateTime', + }, + { + field: 'createTime', + title: '创建时间', + minWidth: 180, + formatter: 'formatDateTime', + }, + { + field: 'operation', + title: '操作', + width: 130, + fixed: 'right', + align: 'center', + cellRender: { + attrs: { + nameField: 'name', + nameTitle: '线索', + onClick: onActionClick, + }, + name: 'CellOperation', + options: [ + { + code: 'edit', + show: hasAccessByCodes(['crm:clue:update']), + }, + { + code: 'delete', + show: hasAccessByCodes(['crm:clue:delete']), + }, + ], + }, + }, + ]; +} + +/** 详情页的字段 */ +export function useDetailSchema(): DescriptionItemSchema[] { + return [...useDetailBaseSchema(), ...useDetailSystemSchema()]; +} + +/** 详情页的基础字段 */ +export function useDetailBaseSchema(): DescriptionItemSchema[] { + return [ + { + field: 'name', + label: '客户名称', + }, + { + field: 'source', + label: '客户来源', + content: (data) => + h(DictTag, { + type: DICT_TYPE.CRM_CUSTOMER_SOURCE, + value: data?.source, + }), + }, + { + field: 'mobile', + label: '手机', + }, + { + field: 'telephone', + label: '电话', + }, + { + field: 'email', + label: '邮箱', + }, + { + field: 'wechat', + label: '微信', + }, + { + field: 'qq', + label: 'QQ', + }, + { + field: 'industryId', + label: '客户行业', + content: (data) => + h(DictTag, { + type: DICT_TYPE.CRM_CUSTOMER_INDUSTRY, + value: data?.industryId, + }), + }, + { + field: 'level', + label: '客户级别', + content: (data) => + h(DictTag, { type: DICT_TYPE.CRM_CUSTOMER_LEVEL, value: data?.level }), + }, + { + field: 'areaName', + label: '地址', + }, + { + field: 'detailAddress', + label: '详细地址', + }, + { + field: 'contactNextTime', + label: '下次联系时间', + content: (data) => formatDateTime(data?.contactNextTime) as string, + }, + { + field: 'remark', + label: '备注', + }, + ]; +} + +/** 详情页的系统字段 */ +export function useDetailSystemSchema(): DescriptionItemSchema[] { + return [ + { + field: 'ownerUserName', + label: '负责人', + }, + { + field: 'ownerUserDeptName', + label: '所属部门', + }, + { + field: 'contactLastTime', + label: '最后跟进时间', + content: (data) => formatDateTime(data?.contactLastTime) as string, + }, + { + field: 'createTime', + label: '创建时间', + content: (data) => formatDateTime(data?.createTime) as string, + }, + { + field: 'updateTime', + label: '更新时间', + content: (data) => formatDateTime(data?.updateTime) as string, + }, + ]; +} diff --git a/apps/web-antd/src/views/crm/customer/index.vue b/apps/web-antd/src/views/crm/customer/index.vue index 8614be3f..31d27777 100644 --- a/apps/web-antd/src/views/crm/customer/index.vue +++ b/apps/web-antd/src/views/crm/customer/index.vue @@ -1,38 +1,181 @@ diff --git a/apps/web-antd/src/views/crm/customer/modules/form.vue b/apps/web-antd/src/views/crm/customer/modules/form.vue new file mode 100644 index 00000000..504947ff --- /dev/null +++ b/apps/web-antd/src/views/crm/customer/modules/form.vue @@ -0,0 +1,85 @@ + + +