179 lines
4.6 KiB
Vue
179 lines
4.6 KiB
Vue
<script lang="ts" setup>
|
|
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
|
|
import type { CrmBusinessApi } from '#/api/crm/business';
|
|
|
|
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 { ACTION_ICON, TableAction, useVbenVxeGrid } from '#/adapter/vxe-table';
|
|
import {
|
|
deleteBusiness,
|
|
exportBusiness,
|
|
getBusinessPage,
|
|
} from '#/api/crm/business';
|
|
import { $t } from '#/locales';
|
|
|
|
import { useGridColumns, useGridFormSchema } from './data';
|
|
import Form from './modules/form.vue';
|
|
|
|
const { push } = useRouter();
|
|
|
|
const [FormModal, formModalApi] = useVbenModal({
|
|
connectedComponent: Form,
|
|
destroyOnClose: true,
|
|
});
|
|
|
|
/** 刷新表格 */
|
|
function onRefresh() {
|
|
gridApi.query();
|
|
}
|
|
|
|
/** 导出表格 */
|
|
async function handleExport() {
|
|
const data = await exportBusiness(await gridApi.formApi.getValues());
|
|
downloadFileFromBlobPart({ fileName: '商机.xls', source: data });
|
|
}
|
|
|
|
/** 创建商机 */
|
|
function handleCreate() {
|
|
formModalApi.setData(null).open();
|
|
}
|
|
|
|
/** 编辑商机 */
|
|
function handleEdit(row: CrmBusinessApi.Business) {
|
|
formModalApi.setData(row).open();
|
|
}
|
|
|
|
/** 删除商机 */
|
|
async function handleDelete(row: CrmBusinessApi.Business) {
|
|
const hideLoading = message.loading({
|
|
content: $t('ui.actionMessage.deleting', [row.name]),
|
|
duration: 0,
|
|
key: 'action_process_msg',
|
|
});
|
|
try {
|
|
await deleteBusiness(row.id as number);
|
|
message.success($t('ui.actionMessage.deleteSuccess', [row.name]));
|
|
onRefresh();
|
|
} catch {
|
|
hideLoading();
|
|
}
|
|
}
|
|
|
|
/** 查看商机详情 */
|
|
function handleDetail(row: CrmBusinessApi.Business) {
|
|
push({ name: 'CrmBusinessDetail', params: { id: row.id } });
|
|
}
|
|
|
|
/** 查看客户详情 */
|
|
function handleCustomerDetail(row: CrmBusinessApi.Business) {
|
|
push({ name: 'CrmCustomerDetail', params: { id: row.customerId } });
|
|
}
|
|
|
|
const [Grid, gridApi] = useVbenVxeGrid({
|
|
formOptions: {
|
|
schema: useGridFormSchema(),
|
|
},
|
|
gridOptions: {
|
|
columns: useGridColumns(),
|
|
height: 'auto',
|
|
keepSource: true,
|
|
proxyConfig: {
|
|
ajax: {
|
|
query: async ({ page }, formValues) => {
|
|
return await getBusinessPage({
|
|
pageNo: page.currentPage,
|
|
pageSize: page.pageSize,
|
|
...formValues,
|
|
});
|
|
},
|
|
},
|
|
},
|
|
rowConfig: {
|
|
keyField: 'id',
|
|
},
|
|
toolbarConfig: {
|
|
refresh: true,
|
|
search: true,
|
|
},
|
|
} as VxeTableGridOptions<CrmBusinessApi.Business>,
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<Page auto-content-height>
|
|
<template #doc>
|
|
<DocAlert
|
|
title="【商机】商机管理、商机状态"
|
|
url="https://doc.iocoder.cn/crm/business/"
|
|
/>
|
|
<DocAlert
|
|
title="【通用】数据权限"
|
|
url="https://doc.iocoder.cn/crm/permission/"
|
|
/>
|
|
</template>
|
|
|
|
<FormModal @success="onRefresh" />
|
|
<Grid table-title="商机列表">
|
|
<template #toolbar-tools>
|
|
<TableAction
|
|
:actions="[
|
|
{
|
|
label: $t('ui.actionTitle.create', ['商机']),
|
|
type: 'primary',
|
|
icon: ACTION_ICON.ADD,
|
|
auth: ['crm:business:create'],
|
|
onClick: handleCreate,
|
|
},
|
|
{
|
|
label: $t('ui.actionTitle.export'),
|
|
type: 'primary',
|
|
icon: ACTION_ICON.DOWNLOAD,
|
|
auth: ['crm:business:export'],
|
|
onClick: handleExport,
|
|
},
|
|
]"
|
|
/>
|
|
</template>
|
|
<template #name="{ row }">
|
|
<Button type="link" @click="handleDetail(row)">
|
|
{{ row.name }}
|
|
</Button>
|
|
</template>
|
|
<template #customerName="{ row }">
|
|
<Button type="link" @click="handleCustomerDetail(row)">
|
|
{{ row.customerName }}
|
|
</Button>
|
|
</template>
|
|
<template #actions="{ row }">
|
|
<TableAction
|
|
:actions="[
|
|
{
|
|
label: $t('common.edit'),
|
|
type: 'link',
|
|
icon: ACTION_ICON.EDIT,
|
|
auth: ['crm:business:update'],
|
|
onClick: handleEdit.bind(null, row),
|
|
},
|
|
{
|
|
label: $t('common.delete'),
|
|
type: 'link',
|
|
danger: true,
|
|
icon: ACTION_ICON.DELETE,
|
|
auth: ['crm:business:delete'],
|
|
popConfirm: {
|
|
title: $t('ui.actionMessage.deleteConfirm', [row.name]),
|
|
confirm: handleDelete.bind(null, row),
|
|
},
|
|
},
|
|
]"
|
|
/>
|
|
</template>
|
|
</Grid>
|
|
</Page>
|
|
</template>
|