feat: 添加客户管理模块

This commit is contained in:
caiyuchao
2025-05-23 10:53:08 +08:00
parent b4d91ef9c6
commit 36dfd60d73
7 changed files with 546 additions and 2 deletions

View File

@@ -0,0 +1,252 @@
import type { VbenFormSchema } from '#/adapter/form';
import type { OnActionClickFn, VxeTableGridOptions } from '#/adapter/vxe-table';
import type { CustomerApi } from '#/api/license/customer';
import { useAccess } from '@vben/access';
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: '客户名称',
rules: 'required',
component: 'Input',
componentProps: {
placeholder: '请输入客户名称',
},
},
{
fieldName: 'code',
label: '客户编号',
rules: 'required',
component: 'Input',
componentProps: {
placeholder: '请输入客户编号',
},
},
{
fieldName: 'type',
label: '客户类型',
rules: 'required',
component: 'Select',
componentProps: {
options: getDictOptions(DICT_TYPE.LIC_CUSTOMER_TYPE, 'number'),
placeholder: '请选择客户类型',
},
},
{
fieldName: 'areaId',
label: '地区',
rules: 'required',
component: 'Input',
componentProps: {
placeholder: '请输入地区',
},
},
{
fieldName: 'contacts',
label: '联系人',
rules: 'required',
component: 'Input',
componentProps: {
placeholder: '请输入联系人',
},
},
{
fieldName: 'role',
label: '角色',
component: 'Input',
componentProps: {
placeholder: '请输入角色',
},
},
{
fieldName: 'phone',
label: '联系电话',
component: 'Input',
componentProps: {
placeholder: '请输入联系电话',
},
},
{
fieldName: 'email',
label: '邮箱',
component: 'Input',
componentProps: {
placeholder: '请输入邮箱',
},
},
{
fieldName: 'remark',
label: '备注',
component: 'Textarea',
componentProps: {
placeholder: '请输入备注',
},
},
];
}
/** 列表的搜索表单 */
export function useGridFormSchema(): VbenFormSchema[] {
return [
{
fieldName: 'name',
label: '客户名称',
component: 'Input',
componentProps: {
allowClear: true,
placeholder: '请输入客户名称',
},
},
{
fieldName: 'code',
label: '客户编号',
component: 'Input',
componentProps: {
allowClear: true,
placeholder: '请输入客户编号',
},
},
{
fieldName: 'type',
label: '客户类型',
component: 'Select',
componentProps: {
allowClear: true,
options: getDictOptions(DICT_TYPE.LIC_CUSTOMER_TYPE, 'number'),
placeholder: '请选择客户类型',
},
},
{
fieldName: 'areaId',
label: '地区',
component: 'Input',
componentProps: {
allowClear: true,
placeholder: '请输入地区',
},
},
{
fieldName: 'contacts',
label: '联系人',
component: 'Input',
componentProps: {
allowClear: true,
placeholder: '请输入联系人',
},
},
{
fieldName: 'createTime',
label: '创建时间',
component: 'RangePicker',
componentProps: {
...getRangePickerDefaultProps(),
allowClear: true,
},
},
];
}
/** 列表的字段 */
export function useGridColumns(
onActionClick?: OnActionClickFn<CustomerApi.Customer>,
): VxeTableGridOptions<CustomerApi.Customer>['columns'] {
return [
{
field: 'name',
title: '客户名称',
minWidth: 120,
},
{
field: 'code',
title: '客户编号',
minWidth: 120,
},
{
field: 'type',
title: '客户类型',
minWidth: 120,
cellRender: {
name: 'CellDict',
props: { type: DICT_TYPE.LIC_CUSTOMER_TYPE },
},
},
{
field: 'areaId',
title: '地区',
minWidth: 120,
},
{
field: 'contacts',
title: '联系人',
minWidth: 120,
},
{
field: 'role',
title: '角色',
minWidth: 120,
},
{
field: 'phone',
title: '联系电话',
minWidth: 120,
},
{
field: 'email',
title: '邮箱',
minWidth: 120,
},
{
field: 'remark',
title: '备注',
minWidth: 120,
},
{
field: 'createTime',
title: '创建时间',
minWidth: 120,
formatter: 'formatDateTime',
},
{
field: 'operation',
title: '操作',
minWidth: 200,
align: 'center',
fixed: 'right',
headerAlign: 'center',
showOverflow: false,
cellRender: {
attrs: {
nameField: 'id',
nameTitle: '客户',
onClick: onActionClick,
},
name: 'CellOperation',
options: [
{
code: 'edit',
show: hasAccessByCodes(['license:customer:update']),
},
{
code: 'delete',
show: hasAccessByCodes(['license:customer:delete']),
},
],
},
},
];
}