194 lines
4.9 KiB
Vue
194 lines
4.9 KiB
Vue
<script lang="ts" setup>
|
|
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 {
|
|
ElButton,
|
|
ElLoading,
|
|
ElMessage,
|
|
ElTabPane,
|
|
ElTabs,
|
|
} from 'element-plus';
|
|
|
|
import { ACTION_ICON, TableAction, useVbenVxeGrid } from '#/adapter/vxe-table';
|
|
import { deleteClue, exportClue, getCluePage } from '#/api/crm/clue';
|
|
import { $t } from '#/locales';
|
|
|
|
import { useGridColumns, useGridFormSchema } from './data';
|
|
import Form from './modules/form.vue';
|
|
|
|
const { push } = useRouter();
|
|
const sceneType = ref('1');
|
|
|
|
const [FormModal, formModalApi] = useVbenModal({
|
|
connectedComponent: Form,
|
|
destroyOnClose: true,
|
|
});
|
|
|
|
/** 刷新表格 */
|
|
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();
|
|
}
|
|
|
|
/** 编辑线索 */
|
|
function handleEdit(row: CrmClueApi.Clue) {
|
|
formModalApi.setData(row).open();
|
|
}
|
|
|
|
/** 删除线索 */
|
|
async function handleDelete(row: CrmClueApi.Clue) {
|
|
const loadingInstance = ElLoading.service({
|
|
text: $t('ui.actionMessage.deleting', [row.name]),
|
|
});
|
|
try {
|
|
await deleteClue(row.id!);
|
|
ElMessage.success($t('ui.actionMessage.deleteSuccess', [row.name]));
|
|
handleRefresh();
|
|
} finally {
|
|
loadingInstance.close();
|
|
}
|
|
}
|
|
|
|
/** 查看线索详情 */
|
|
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(),
|
|
},
|
|
gridOptions: {
|
|
columns: useGridColumns(),
|
|
height: 'auto',
|
|
keepSource: true,
|
|
proxyConfig: {
|
|
ajax: {
|
|
query: async ({ page }, formValues) => {
|
|
return await getCluePage({
|
|
pageNo: page.currentPage,
|
|
pageSize: page.pageSize,
|
|
sceneType: sceneType.value,
|
|
...formValues,
|
|
});
|
|
},
|
|
},
|
|
},
|
|
rowConfig: {
|
|
keyField: 'id',
|
|
isHover: true,
|
|
},
|
|
toolbarConfig: {
|
|
refresh: true,
|
|
search: true,
|
|
},
|
|
} as VxeTableGridOptions<CrmClueApi.Clue>,
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<Page auto-content-height>
|
|
<template #doc>
|
|
<DocAlert
|
|
title="【线索】线索管理"
|
|
url="https://doc.iocoder.cn/crm/clue/"
|
|
/>
|
|
<DocAlert
|
|
title="【通用】数据权限"
|
|
url="https://doc.iocoder.cn/crm/permission/"
|
|
/>
|
|
</template>
|
|
|
|
<FormModal @success="handleRefresh" />
|
|
<Grid>
|
|
<template #toolbar-actions>
|
|
<ElTabs
|
|
class="w-full"
|
|
@tab-change="handleChangeSceneType"
|
|
v-model:model-value="sceneType"
|
|
>
|
|
<ElTabPane label="我负责的" name="1" />
|
|
<ElTabPane label="我参与的" name="2" />
|
|
<ElTabPane label="下属负责的" name="3" />
|
|
</ElTabs>
|
|
</template>
|
|
<template #toolbar-tools>
|
|
<TableAction
|
|
:actions="[
|
|
{
|
|
label: $t('ui.actionTitle.create', ['线索']),
|
|
type: 'primary',
|
|
icon: ACTION_ICON.ADD,
|
|
auth: ['crm:clue:create'],
|
|
onClick: handleCreate,
|
|
},
|
|
{
|
|
label: $t('ui.actionTitle.export'),
|
|
type: 'primary',
|
|
icon: ACTION_ICON.DOWNLOAD,
|
|
auth: ['crm:clue:export'],
|
|
onClick: handleExport,
|
|
},
|
|
]"
|
|
/>
|
|
</template>
|
|
<template #name="{ row }">
|
|
<ElButton type="primary" link @click="handleDetail(row)">
|
|
{{ row.name }}
|
|
</ElButton>
|
|
</template>
|
|
<template #actions="{ row }">
|
|
<TableAction
|
|
:actions="[
|
|
{
|
|
label: $t('common.edit'),
|
|
type: 'primary',
|
|
link: true,
|
|
icon: ACTION_ICON.EDIT,
|
|
auth: ['crm:clue:update'],
|
|
onClick: handleEdit.bind(null, row),
|
|
},
|
|
{
|
|
label: $t('common.delete'),
|
|
type: 'danger',
|
|
link: true,
|
|
icon: ACTION_ICON.DELETE,
|
|
auth: ['crm:clue:delete'],
|
|
popConfirm: {
|
|
title: $t('ui.actionMessage.deleteConfirm', [row.name]),
|
|
confirm: handleDelete.bind(null, row),
|
|
},
|
|
},
|
|
]"
|
|
/>
|
|
</template>
|
|
</Grid>
|
|
</Page>
|
|
</template>
|