import type { VbenFormSchema } from '#/adapter/form'; import type { VxeTableGridOptions } from '#/adapter/vxe-table'; import { DICT_TYPE } from '@vben/constants'; import { getDictOptions } from '@vben/hooks'; import { useUserStore } from '@vben/stores'; import { getAreaTree } from '#/api/system/area'; import { getSimpleUserList } from '#/api/system/user'; import { getRangePickerDefaultProps } from '#/utils'; /** 新增/修改的表单 */ export function useFormSchema(): VbenFormSchema[] { const userStore = useUserStore(); return [ { fieldName: 'id', component: 'Input', dependencies: { triggerFields: [''], show: () => false, }, }, { fieldName: 'name', label: '线索名称', component: 'Input', rules: 'required', componentProps: { placeholder: '请输入线索名称', }, }, { fieldName: 'source', label: '客户来源', component: 'Select', componentProps: { options: getDictOptions(DICT_TYPE.CRM_CUSTOMER_SOURCE, 'number'), placeholder: '请选择客户来源', }, rules: 'required', }, { fieldName: 'mobile', label: '手机', component: 'Input', componentProps: { placeholder: '请输入手机号', }, }, { fieldName: 'ownerUserId', label: '负责人', component: 'ApiSelect', componentProps: { api: getSimpleUserList, labelField: 'nickname', valueField: 'id', allowClear: true, placeholder: '请选择负责人', }, defaultValue: userStore.userInfo?.id, rules: 'required', dependencies: { triggerFields: ['id'], disabled: (values) => values.id, }, }, { fieldName: 'telephone', label: '电话', component: 'Input', componentProps: { placeholder: '请输入电话', }, }, { fieldName: 'email', label: '邮箱', component: 'Input', componentProps: { placeholder: '请输入邮箱', }, }, { fieldName: 'wechat', label: '微信', component: 'Input', componentProps: { placeholder: '请输入微信', }, }, { fieldName: 'qq', label: 'QQ', component: 'Input', componentProps: { placeholder: '请输入 QQ', }, }, { fieldName: 'industryId', label: '客户行业', component: 'Select', componentProps: { options: getDictOptions(DICT_TYPE.CRM_CUSTOMER_INDUSTRY, 'number'), placeholder: '请选择客户行业', }, }, { fieldName: 'level', label: '客户级别', component: 'Select', componentProps: { options: getDictOptions(DICT_TYPE.CRM_CUSTOMER_LEVEL, 'number'), placeholder: '请选择客户级别', }, }, { fieldName: 'areaId', label: '地址', component: 'ApiTreeSelect', componentProps: { api: () => getAreaTree(), fieldNames: { label: 'name', value: 'id', children: 'children' }, placeholder: '请选择地址', }, }, { fieldName: 'detailAddress', label: '详细地址', component: 'Input', componentProps: { placeholder: '请输入详细地址', }, }, { fieldName: 'contactNextTime', label: '下次联系时间', component: 'DatePicker', componentProps: { showTime: true, format: 'YYYY-MM-DD HH:mm:ss', valueFormat: 'x', placeholder: '请选择下次联系时间', }, }, { fieldName: 'remark', label: '备注', component: 'Textarea', componentProps: { placeholder: '请输入备注', }, }, ]; } /** 列表的搜索表单 */ export function useGridFormSchema(): VbenFormSchema[] { return [ { fieldName: 'name', label: '线索名称', component: 'Input', componentProps: { placeholder: '请输入线索名称', allowClear: true, }, }, { fieldName: 'transformStatus', label: '转化状态', component: 'Select', componentProps: { options: [ { label: '未转化', value: false }, { label: '已转化', value: true }, ], placeholder: '请选择转化状态', allowClear: true, }, defaultValue: false, }, { fieldName: 'mobile', label: '手机号', component: 'Input', componentProps: { placeholder: '请输入手机号', allowClear: true, }, }, { fieldName: 'telephone', label: '电话', component: 'Input', componentProps: { placeholder: '请输入电话', allowClear: true, }, }, { fieldName: 'createTime', label: '创建时间', component: 'RangePicker', componentProps: { ...getRangePickerDefaultProps(), allowClear: true, placeholder: ['开始日期', '结束日期'], }, }, ]; } /** 列表的字段 */ export function useGridColumns(): VxeTableGridOptions['columns'] { return [ { field: 'name', title: '线索名称', fixed: 'left', minWidth: 160, 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: 135, cellRender: { name: 'CellDict', props: { type: DICT_TYPE.CRM_CUSTOMER_LEVEL }, }, }, { field: 'contactNextTime', title: '下次联系时间', formatter: 'formatDateTime', minWidth: 180, }, { field: 'remark', title: '备注', minWidth: 200, }, { field: 'contactLastTime', title: '最后跟进时间', formatter: 'formatDateTime', minWidth: 180, }, { field: 'contactLastContent', title: '最后跟进记录', minWidth: 200, }, { field: 'ownerUserName', title: '负责人', minWidth: 100, }, { field: 'ownerUserDeptName', title: '所属部门', minWidth: 100, }, { field: 'updateTime', title: '更新时间', formatter: 'formatDateTime', minWidth: 180, }, { field: 'createTime', title: '创建时间', formatter: 'formatDateTime', minWidth: 180, }, { title: '操作', width: 140, fixed: 'right', slots: { default: 'actions' }, }, ]; }