feat:【antd】【crm】优化 clue 线索的列表界面

This commit is contained in:
YunaiV
2025-09-23 23:44:56 +08:00
parent b7bb7ecd5d
commit 634b5be676
2 changed files with 77 additions and 37 deletions

View File

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

View File

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