232 lines
5.1 KiB
TypeScript
232 lines
5.1 KiB
TypeScript
import type { VbenFormSchema } from '#/adapter/form';
|
|
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
|
|
|
|
import { BizTypeEnum, PermissionLevelEnum } from '#/api/crm/permission';
|
|
import { getSimpleUserList } from '#/api/system/user';
|
|
import { DICT_TYPE, getDictOptions } from '#/utils';
|
|
|
|
/** 新增/修改的表单 */
|
|
export function useTransferFormSchema(): VbenFormSchema[] {
|
|
return [
|
|
{
|
|
fieldName: 'id',
|
|
component: 'Input',
|
|
dependencies: {
|
|
triggerFields: [''],
|
|
show: () => false,
|
|
},
|
|
},
|
|
{
|
|
fieldName: 'newOwnerUserId',
|
|
label: '选择新负责人',
|
|
component: 'ApiSelect',
|
|
componentProps: {
|
|
api: getSimpleUserList,
|
|
labelField: 'nickname',
|
|
valueField: 'id',
|
|
},
|
|
rules: 'required',
|
|
},
|
|
{
|
|
fieldName: 'oldOwnerHandler',
|
|
label: '老负责人',
|
|
component: 'RadioGroup',
|
|
componentProps: {
|
|
options: [
|
|
{
|
|
label: '加入团队',
|
|
value: true,
|
|
},
|
|
{
|
|
label: '移除',
|
|
value: false,
|
|
},
|
|
],
|
|
},
|
|
rules: 'required',
|
|
},
|
|
{
|
|
fieldName: 'oldOwnerPermissionLevel',
|
|
label: '老负责人权限级别',
|
|
component: 'RadioGroup',
|
|
componentProps: {
|
|
options: getDictOptions(
|
|
DICT_TYPE.CRM_PERMISSION_LEVEL,
|
|
'number',
|
|
).filter((dict) => dict.value !== PermissionLevelEnum.OWNER),
|
|
},
|
|
dependencies: {
|
|
triggerFields: ['oldOwnerHandler'],
|
|
show: (values) => values.oldOwnerHandler,
|
|
trigger(values) {
|
|
if (!values.oldOwnerHandler) {
|
|
values.oldOwnerPermissionLevel = undefined;
|
|
}
|
|
},
|
|
},
|
|
rules: 'required',
|
|
},
|
|
{
|
|
fieldName: 'toBizTypes',
|
|
label: '同时转移',
|
|
component: 'CheckboxGroup',
|
|
componentProps: {
|
|
options: [
|
|
{
|
|
label: '联系人',
|
|
value: BizTypeEnum.CRM_CONTACT,
|
|
},
|
|
{
|
|
label: '商机',
|
|
value: BizTypeEnum.CRM_BUSINESS,
|
|
},
|
|
{
|
|
label: '合同',
|
|
value: BizTypeEnum.CRM_CONTRACT,
|
|
},
|
|
],
|
|
},
|
|
},
|
|
];
|
|
}
|
|
|
|
/** 新增/修改的表单 */
|
|
export function useFormSchema(): VbenFormSchema[] {
|
|
return [
|
|
{
|
|
fieldName: 'bizId',
|
|
component: 'Input',
|
|
dependencies: {
|
|
triggerFields: [''],
|
|
show: () => false,
|
|
},
|
|
},
|
|
{
|
|
fieldName: 'ids',
|
|
component: 'Input',
|
|
dependencies: {
|
|
triggerFields: [''],
|
|
show: () => false,
|
|
},
|
|
},
|
|
{
|
|
fieldName: 'userId',
|
|
label: '选择人员',
|
|
component: 'ApiSelect',
|
|
componentProps: {
|
|
api: getSimpleUserList,
|
|
labelField: 'nickname',
|
|
valueField: 'id',
|
|
},
|
|
dependencies: {
|
|
triggerFields: ['ids'],
|
|
show: (values) => {
|
|
return values.ids === undefined;
|
|
},
|
|
},
|
|
},
|
|
{
|
|
fieldName: 'level',
|
|
label: '权限级别',
|
|
component: 'RadioGroup',
|
|
componentProps: {
|
|
options: getDictOptions(
|
|
DICT_TYPE.CRM_PERMISSION_LEVEL,
|
|
'number',
|
|
).filter((dict) => dict.value !== PermissionLevelEnum.OWNER),
|
|
},
|
|
rules: 'required',
|
|
},
|
|
{
|
|
fieldName: 'bizType',
|
|
label: 'Crm 类型',
|
|
component: 'RadioGroup',
|
|
componentProps: {
|
|
options: [
|
|
{
|
|
label: '联系人',
|
|
value: BizTypeEnum.CRM_CONTACT,
|
|
},
|
|
{
|
|
label: '商机',
|
|
value: BizTypeEnum.CRM_BUSINESS,
|
|
},
|
|
{
|
|
label: '合同',
|
|
value: BizTypeEnum.CRM_CONTRACT,
|
|
},
|
|
],
|
|
},
|
|
dependencies: {
|
|
triggerFields: [''],
|
|
show: () => false,
|
|
},
|
|
},
|
|
{
|
|
fieldName: 'toBizTypes',
|
|
label: '同时添加至',
|
|
component: 'CheckboxGroup',
|
|
componentProps: {
|
|
options: [
|
|
{
|
|
label: '联系人',
|
|
value: BizTypeEnum.CRM_CONTACT,
|
|
},
|
|
{
|
|
label: '商机',
|
|
value: BizTypeEnum.CRM_BUSINESS,
|
|
},
|
|
{
|
|
label: '合同',
|
|
value: BizTypeEnum.CRM_CONTRACT,
|
|
},
|
|
],
|
|
},
|
|
dependencies: {
|
|
triggerFields: ['ids', 'bizType'],
|
|
show: (values) => {
|
|
return (
|
|
values.ids === undefined &&
|
|
values.bizType === BizTypeEnum.CRM_CUSTOMER
|
|
);
|
|
},
|
|
},
|
|
},
|
|
];
|
|
}
|
|
|
|
/** 列表的字段 */
|
|
export function useGridColumns(): VxeTableGridOptions['columns'] {
|
|
return [
|
|
{
|
|
type: 'checkbox',
|
|
width: 50,
|
|
},
|
|
{
|
|
field: 'nickname',
|
|
title: '姓名',
|
|
},
|
|
{
|
|
field: 'deptName',
|
|
title: '部门',
|
|
},
|
|
{
|
|
field: 'postNames',
|
|
title: '岗位',
|
|
},
|
|
{
|
|
field: 'level',
|
|
title: '权限级别',
|
|
cellRender: {
|
|
name: 'CellDict',
|
|
props: { type: DICT_TYPE.CRM_PERMISSION_LEVEL },
|
|
},
|
|
},
|
|
{
|
|
field: 'createTime',
|
|
title: '加入时间',
|
|
formatter: 'formatDateTime',
|
|
},
|
|
];
|
|
}
|