This commit is contained in:
xingyu4j
2025-09-24 14:17:22 +08:00
7 changed files with 108 additions and 74 deletions

View File

@@ -18,7 +18,7 @@ const routes: RouteRecordRaw[] = [
title: '线索详情', title: '线索详情',
activePath: '/crm/clue', activePath: '/crm/clue',
}, },
component: () => import('#/views/crm/clue/modules/detail.vue'), component: () => import('#/views/crm/clue/detail/index.vue'),
}, },
{ {
path: 'customer/detail/:id', path: 'customer/detail/:id',

View File

@@ -140,6 +140,7 @@ export function useGridFormSchema(): VbenFormSchema[] {
{ label: '已转化', value: true }, { label: '已转化', value: true },
], ],
}, },
defaultValue: false,
}, },
{ {
fieldName: 'mobile', fieldName: 'mobile',
@@ -170,7 +171,7 @@ export function useGridColumns(): VxeTableGridOptions['columns'] {
field: 'name', field: 'name',
title: '线索名称', title: '线索名称',
fixed: 'left', fixed: 'left',
minWidth: 240, minWidth: 160,
slots: { slots: {
default: 'name', default: 'name',
}, },
@@ -178,7 +179,7 @@ export function useGridColumns(): VxeTableGridOptions['columns'] {
{ {
field: 'source', field: 'source',
title: '线索来源', title: '线索来源',
minWidth: 120, minWidth: 100,
cellRender: { cellRender: {
name: 'CellDict', name: 'CellDict',
props: { type: DICT_TYPE.CRM_CUSTOMER_SOURCE }, props: { type: DICT_TYPE.CRM_CUSTOMER_SOURCE },
@@ -192,22 +193,22 @@ export function useGridColumns(): VxeTableGridOptions['columns'] {
{ {
field: 'telephone', field: 'telephone',
title: '电话', title: '电话',
minWidth: 120, minWidth: 130,
}, },
{ {
field: 'email', field: 'email',
title: '邮箱', title: '邮箱',
minWidth: 120, minWidth: 180,
}, },
{ {
field: 'detailAddress', field: 'detailAddress',
title: '地址', title: '地址',
minWidth: 120, minWidth: 180,
}, },
{ {
field: 'industryId', field: 'industryId',
title: '客户行业', title: '客户行业',
minWidth: 120, minWidth: 100,
cellRender: { cellRender: {
name: 'CellDict', name: 'CellDict',
props: { type: DICT_TYPE.CRM_CUSTOMER_INDUSTRY }, props: { type: DICT_TYPE.CRM_CUSTOMER_INDUSTRY },
@@ -216,34 +217,44 @@ export function useGridColumns(): VxeTableGridOptions['columns'] {
{ {
field: 'level', field: 'level',
title: '客户级别', title: '客户级别',
minWidth: 120, minWidth: 135,
cellRender: { cellRender: {
name: 'CellDict', name: 'CellDict',
props: { type: DICT_TYPE.CRM_CUSTOMER_LEVEL }, props: { type: DICT_TYPE.CRM_CUSTOMER_LEVEL },
}, },
}, },
{
field: 'ownerUserName',
title: '负责人',
minWidth: 120,
},
{
field: 'ownerUserDeptName',
title: '所属部门',
minWidth: 120,
},
{ {
field: 'contactNextTime', field: 'contactNextTime',
title: '下次联系时间', title: '下次联系时间',
formatter: 'formatDateTime', formatter: 'formatDateTime',
minWidth: 180, minWidth: 180,
}, },
{
field: 'remark',
title: '备注',
minWidth: 200,
},
{ {
field: 'contactLastTime', field: 'contactLastTime',
title: '最后跟进时间', title: '最后跟进时间',
formatter: 'formatDateTime', formatter: 'formatDateTime',
minWidth: 180, minWidth: 180,
}, },
{
field: 'contactLastContent',
title: '最后跟进记录',
minWidth: 200,
},
{
field: 'ownerUserName',
title: '负责人',
minWidth: 100,
},
{
field: 'ownerUserDeptName',
title: '所属部门',
minWidth: 100,
},
{ {
field: 'updateTime', field: 'updateTime',
title: '更新时间', title: '更新时间',
@@ -254,12 +265,7 @@ export function useGridColumns(): VxeTableGridOptions['columns'] {
field: 'createTime', field: 'createTime',
title: '创建时间', title: '创建时间',
formatter: 'formatDateTime', formatter: 'formatDateTime',
minWidth: 120, minWidth: 180,
},
{
field: 'creatorName',
title: '创建人',
minWidth: 120,
}, },
{ {
title: '操作', title: '操作',

View File

@@ -66,7 +66,11 @@ export function useDetailBaseSchema(): DescriptionItemSchema[] {
{ {
field: 'areaName', field: 'areaName',
label: '地址', label: '地址',
content: (data) => data?.areaName + data?.detailAddress, content: (data) => {
const areaName = data.areaName ?? '';
const detailAddress = data?.detailAddress ?? '';
return [areaName, detailAddress].filter((item) => !!item).join(' ');
},
}, },
{ {
field: 'qq', field: 'qq',

View File

@@ -7,7 +7,7 @@ import { useRoute, useRouter } from 'vue-router';
import { confirm, Page, useVbenModal } from '@vben/common-ui'; import { confirm, Page, useVbenModal } from '@vben/common-ui';
import { useTabs } from '@vben/hooks'; import { useTabs } from '@vben/hooks';
import { ArrowLeft } from '@vben/icons'; import { IconifyIcon } from '@vben/icons';
import { Button, Card, message, Tabs } from 'ant-design-vue'; import { Button, Card, message, Tabs } from 'ant-design-vue';
@@ -15,14 +15,15 @@ import { getClue, transformClue } from '#/api/crm/clue';
import { getOperateLogPage } from '#/api/crm/operateLog'; import { getOperateLogPage } from '#/api/crm/operateLog';
import { BizTypeEnum } from '#/api/crm/permission'; import { BizTypeEnum } from '#/api/crm/permission';
import { useDescription } from '#/components/description'; import { useDescription } from '#/components/description';
// TODO @ AsyncOperateLog
import { AsyncOperateLog } from '#/components/operate-log'; import { AsyncOperateLog } from '#/components/operate-log';
import { FollowUp } from '#/views/crm/followup'; import { FollowUp } from '#/views/crm/followup';
import { PermissionList, TransferForm } from '#/views/crm/permission'; import { PermissionList, TransferForm } from '#/views/crm/permission';
import { useDetailSchema } from './detail-data'; import ClueForm from '../modules/form.vue';
import ClueForm from './form.vue'; import { useDetailSchema } from './data';
const ClueDetailsInfo = defineAsyncComponent(() => import('./detail-info.vue')); const ClueInfo = defineAsyncComponent(() => import('./modules/info.vue'));
const loading = ref(false); const loading = ref(false);
@@ -30,13 +31,12 @@ const route = useRoute();
const router = useRouter(); const router = useRouter();
const tabs = useTabs(); const tabs = useTabs();
const clueId = ref(0); const clueId = ref(0); // 线
const clue = ref<CrmClueApi.Clue>({} as CrmClueApi.Clue); // 线
const clue = ref<CrmClueApi.Clue>({} as CrmClueApi.Clue); const logList = ref<SystemOperateLogApi.OperateLog[]>([]); //
const clueLogList = ref<SystemOperateLogApi.OperateLog[]>([]);
const permissionListRef = ref<InstanceType<typeof PermissionList>>(); // Ref const permissionListRef = ref<InstanceType<typeof PermissionList>>(); // Ref
// /** 校验负责人权限和编辑权限 */
const validateOwnerUser = computed( const validateOwnerUser = computed(
() => permissionListRef.value?.validateOwnerUser, () => permissionListRef.value?.validateOwnerUser,
); );
@@ -62,18 +62,20 @@ const [TransferModal, transferModalApi] = useVbenModal({
}); });
/** 加载线索详情 */ /** 加载线索详情 */
async function loadClueDetail() { async function getClueDetail() {
loading.value = true; loading.value = true;
const data = await getClue(clueId.value); try {
clue.value = data; clue.value = await getClue(clueId.value);
// //
const logList = await getOperateLogPage({ const res = await getOperateLogPage({
bizType: BizTypeEnum.CRM_CLUE, bizType: BizTypeEnum.CRM_CLUE,
bizId: clueId.value, bizId: clueId.value,
}); });
clueLogList.value = logList.list; logList.value = res.list;
} finally {
loading.value = false; loading.value = false;
} }
}
/** 返回列表页 */ /** 返回列表页 */
function handleBack() { function handleBack() {
@@ -100,7 +102,6 @@ async function handleTransform(): Promise<boolean | undefined> {
.then(async () => { .then(async () => {
const res = await transformClue(clueId.value); const res = await transformClue(clueId.value);
if (res) { if (res) {
//
message.success('转化客户成功'); message.success('转化客户成功');
resolve(true); resolve(true);
} else { } else {
@@ -113,21 +114,21 @@ async function handleTransform(): Promise<boolean | undefined> {
}); });
} }
// /** 加载数据 */
onMounted(() => { onMounted(() => {
clueId.value = Number(route.params.id); clueId.value = route.params.id as number;
loadClueDetail(); getClueDetail();
}); });
</script> </script>
<template> <template>
<Page auto-content-height :title="clue?.name" :loading="loading"> <Page auto-content-height :title="clue?.name" :loading="loading">
<FormModal @success="loadClueDetail" /> <FormModal @success="getClueDetail" />
<TransferModal @success="loadClueDetail" /> <TransferModal @success="getClueDetail" />
<template #extra> <template #extra>
<div class="flex items-center gap-2"> <div class="flex items-center gap-2">
<Button @click="handleBack"> <Button @click="handleBack">
<ArrowLeft class="size-5" /> <IconifyIcon icon="lucide:arrow-left" />
返回 返回
</Button> </Button>
<Button <Button
@@ -154,13 +155,13 @@ onMounted(() => {
<Descriptions :data="clue" /> <Descriptions :data="clue" />
</Card> </Card>
<Card class="mt-4 min-h-[60%]"> <Card class="mt-4 min-h-[60%]">
<Tabs> <Tabs class="tabs-tight" :tab-bar-gutter="16">
<Tabs.TabPane tab="详细资料" key="1" :force-render="true"> <Tabs.TabPane tab="跟进记录" key="1" :force-render="true">
<ClueDetailsInfo :clue="clue" />
</Tabs.TabPane>
<Tabs.TabPane tab="线索跟进" key="2" :force-render="true">
<FollowUp :biz-id="clueId" :biz-type="BizTypeEnum.CRM_CLUE" /> <FollowUp :biz-id="clueId" :biz-type="BizTypeEnum.CRM_CLUE" />
</Tabs.TabPane> </Tabs.TabPane>
<Tabs.TabPane tab="基本信息" key="2" :force-render="true">
<ClueInfo :clue="clue" />
</Tabs.TabPane>
<Tabs.TabPane tab="团队成员" key="3" :force-render="true"> <Tabs.TabPane tab="团队成员" key="3" :force-render="true">
<PermissionList <PermissionList
ref="permissionListRef" ref="permissionListRef"
@@ -171,7 +172,7 @@ onMounted(() => {
/> />
</Tabs.TabPane> </Tabs.TabPane>
<Tabs.TabPane tab="操作日志" key="4" :force-render="true"> <Tabs.TabPane tab="操作日志" key="4" :force-render="true">
<AsyncOperateLog :log-list="clueLogList" /> <AsyncOperateLog :log-list="logList" />
</Tabs.TabPane> </Tabs.TabPane>
</Tabs> </Tabs>
</Card> </Card>

View File

@@ -6,10 +6,10 @@ import { Divider } from 'ant-design-vue';
import { useDescription } from '#/components/description'; import { useDescription } from '#/components/description';
import { useFollowUpDetailSchema } from '#/views/crm/followup/data'; import { useFollowUpDetailSchema } from '#/views/crm/followup/data';
import { useDetailBaseSchema } from './detail-data'; import { useDetailBaseSchema } from '../data';
defineProps<{ defineProps<{
clue: CrmClueApi.Clue; // 线 clue: CrmClueApi.Clue;
}>(); }>();
const [BaseDescriptions] = useDescription({ const [BaseDescriptions] = useDescription({
@@ -34,6 +34,7 @@ const [SystemDescriptions] = useDescription({
</script> </script>
<template> <template>
<!-- TODO @芋艿为什么 p-4 -->
<div class="p-4"> <div class="p-4">
<BaseDescriptions :data="clue" /> <BaseDescriptions :data="clue" />
<Divider /> <Divider />

View File

@@ -2,12 +2,13 @@
import type { VxeTableGridOptions } from '#/adapter/vxe-table'; import type { VxeTableGridOptions } from '#/adapter/vxe-table';
import type { CrmClueApi } from '#/api/crm/clue'; import type { CrmClueApi } from '#/api/crm/clue';
import { ref } from 'vue';
import { useRouter } from 'vue-router'; import { useRouter } from 'vue-router';
import { DocAlert, Page, useVbenModal } from '@vben/common-ui'; import { DocAlert, Page, useVbenModal } from '@vben/common-ui';
import { downloadFileFromBlobPart } from '@vben/utils'; import { downloadFileFromBlobPart } from '@vben/utils';
import { Button, message } from 'ant-design-vue'; import { Button, message, Tabs } from 'ant-design-vue';
import { ACTION_ICON, TableAction, useVbenVxeGrid } from '#/adapter/vxe-table'; import { ACTION_ICON, TableAction, useVbenVxeGrid } from '#/adapter/vxe-table';
import { deleteClue, exportClue, getCluePage } from '#/api/crm/clue'; import { deleteClue, exportClue, getCluePage } from '#/api/crm/clue';
@@ -17,6 +18,7 @@ import { useGridColumns, useGridFormSchema } from './data';
import Form from './modules/form.vue'; import Form from './modules/form.vue';
const { push } = useRouter(); const { push } = useRouter();
const sceneType = ref('1');
const [FormModal, formModalApi] = useVbenModal({ const [FormModal, formModalApi] = useVbenModal({
connectedComponent: Form, connectedComponent: Form,
@@ -24,10 +26,19 @@ const [FormModal, formModalApi] = useVbenModal({
}); });
/** 刷新表格 */ /** 刷新表格 */
function onRefresh() { function handleRefresh() {
gridApi.query(); gridApi.query();
} }
/** 导出表格 */
async function handleExport() {
const data = await exportClue({
sceneType: sceneType.value,
...(await gridApi.formApi.getValues()),
});
downloadFileFromBlobPart({ fileName: '线索.xls', source: data });
}
/** 创建线索 */ /** 创建线索 */
function handleCreate() { function handleCreate() {
formModalApi.setData(null).open(); formModalApi.setData(null).open();
@@ -46,26 +57,24 @@ async function handleDelete(row: CrmClueApi.Clue) {
}); });
try { try {
await deleteClue(row.id as number); await deleteClue(row.id as number);
message.success({ message.success($t('ui.actionMessage.deleteSuccess', [row.name]));
content: $t('ui.actionMessage.deleteSuccess', [row.name]), handleRefresh();
});
onRefresh();
} catch { } catch {
hideLoading(); hideLoading();
} }
} }
/** 导出表格 */
async function handleExport() {
const data = await exportClue(await gridApi.formApi.getValues());
downloadFileFromBlobPart({ fileName: '线索.xls', source: data });
}
/** 查看线索详情 */ /** 查看线索详情 */
function handleDetail(row: CrmClueApi.Clue) { function handleDetail(row: CrmClueApi.Clue) {
push({ name: 'CrmClueDetail', params: { id: row.id } }); push({ name: 'CrmClueDetail', params: { id: row.id } });
} }
/** 处理场景类型的切换 */
function handleChangeSceneType(key: number | string) {
sceneType.value = key.toString();
gridApi.query();
}
const [Grid, gridApi] = useVbenVxeGrid({ const [Grid, gridApi] = useVbenVxeGrid({
formOptions: { formOptions: {
schema: useGridFormSchema(), schema: useGridFormSchema(),
@@ -80,6 +89,7 @@ const [Grid, gridApi] = useVbenVxeGrid({
return await getCluePage({ return await getCluePage({
pageNo: page.currentPage, pageNo: page.currentPage,
pageSize: page.pageSize, pageSize: page.pageSize,
sceneType: sceneType.value,
...formValues, ...formValues,
}); });
}, },
@@ -87,6 +97,7 @@ const [Grid, gridApi] = useVbenVxeGrid({
}, },
rowConfig: { rowConfig: {
keyField: 'id', keyField: 'id',
isHover: true,
}, },
toolbarConfig: { toolbarConfig: {
refresh: true, refresh: true,
@@ -109,8 +120,15 @@ const [Grid, gridApi] = useVbenVxeGrid({
/> />
</template> </template>
<FormModal @success="onRefresh" /> <FormModal @success="handleRefresh" />
<Grid table-title="线索列表"> <Grid>
<template #top>
<Tabs class="-mt-11" @change="handleChangeSceneType">
<Tabs.TabPane tab="我负责的" key="1" />
<Tabs.TabPane tab="我参与的" key="2" />
<Tabs.TabPane tab="下属负责的" key="3" />
</Tabs>
</template>
<template #toolbar-tools> <template #toolbar-tools>
<TableAction <TableAction
:actions="[ :actions="[
@@ -163,3 +181,8 @@ const [Grid, gridApi] = useVbenVxeGrid({
</Grid> </Grid>
</Page> </Page>
</template> </template>
<style scoped>
:deep(.vxe-toolbar div) {
z-index: 1;
}
</style>

View File

@@ -28,7 +28,6 @@ const [Form, formApi] = useVbenForm({
}, },
labelWidth: 100, labelWidth: 100,
}, },
// 一共3列
wrapperClass: 'grid-cols-2', wrapperClass: 'grid-cols-2',
layout: 'horizontal', layout: 'horizontal',
schema: useFormSchema(), schema: useFormSchema(),