Files
agt-web/apps/web-antd/src/views/license/customer/index.vue
2025-09-12 09:47:09 +08:00

189 lines
4.8 KiB
Vue

<script lang="ts" setup>
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
import type { CustomerApi } from '#/api/license/customer';
import { useAccess } from '@vben/access';
import { Page, useVbenModal } from '@vben/common-ui';
import { downloadFileFromBlobPart } from '@vben/utils';
import { message } from 'ant-design-vue';
import { ACTION_ICON, TableAction, useVbenVxeGrid } from '#/adapter/vxe-table';
import {
deleteCustomer,
exportCustomer,
getCustomerPage,
} from '#/api/license/customer';
import { $t } from '#/locales';
import { useGridColumns, useGridFormSchema } from './data';
import Form from './modules/form.vue';
import ImportForm from './modules/import-form.vue';
const { hasAccessByRoles } = useAccess();
const [FormModal, formModalApi] = useVbenModal({
connectedComponent: Form,
destroyOnClose: true,
});
const [ImportModal, importModalApi] = useVbenModal({
connectedComponent: ImportForm,
destroyOnClose: true,
});
/** 刷新表格 */
function onRefresh() {
gridApi.query();
}
/** 创建客户 */
function onCreate() {
formModalApi.setData({}).open();
}
/** 编辑客户 */
function onEdit(row: CustomerApi.Customer) {
formModalApi.setData(row).open();
}
/** 删除客户 */
async function onDelete(row: CustomerApi.Customer) {
const hideLoading = message.loading({
content: $t('ui.actionMessage.deleting', [row.name]),
duration: 0,
key: 'action_process_msg',
});
try {
await deleteCustomer(row.id as number);
hideLoading();
message.success($t('ui.actionMessage.deleteSuccess', [row.name]));
onRefresh();
} catch {
hideLoading();
}
}
/** 导出表格 */
async function onExport() {
const data = await exportCustomer(await gridApi.formApi.getValues());
downloadFileFromBlobPart({
fileName: `${$t('customer.customer')}.xlsx`,
source: data,
});
}
/** 导入客户 */
function handleImport() {
importModalApi.open();
}
const [Grid, gridApi] = useVbenVxeGrid({
formOptions: {
schema: useGridFormSchema(),
submitOnEnter: true,
wrapperClass: 'grid-cols-1 md:grid-cols-2 lg:grid-cols-4',
},
gridOptions: {
columns: useGridColumns(),
height: 'auto',
pagerConfig: {
enabled: true,
},
id: 'license-customer-list',
customConfig: {
storage: true,
visibleMethod({ column }) {
if (!hasAccessByRoles(['business'])) {
// 商务角色不显示序号列
return (
column.field !== 'contacts' &&
column.field !== 'role' &&
column.field !== 'phone'
);
}
return true;
},
},
proxyConfig: {
ajax: {
query: async ({ page }, formValues) => {
return await getCustomerPage({
pageNo: page.currentPage,
pageSize: page.pageSize,
...formValues,
});
},
},
},
rowConfig: {
keyField: 'id',
isHover: true,
},
toolbarConfig: {
refresh: { code: 'query' },
search: true,
},
} as VxeTableGridOptions<CustomerApi.Customer>,
});
</script>
<template>
<Page auto-content-height>
<FormModal @success="onRefresh" />
<ImportModal @success="onRefresh" />
<Grid :table-title="$t('customer.customerList')">
<template #toolbar-tools>
<TableAction
:actions="[
{
label: $t('ui.actionTitle.create', [$t('customer.customer')]),
type: 'primary',
icon: ACTION_ICON.ADD,
auth: ['license:customer:create'],
onClick: onCreate,
},
{
label: $t('ui.actionTitle.export'),
type: 'primary',
icon: ACTION_ICON.DOWNLOAD,
auth: ['license:customer:export'],
onClick: onExport,
},
// {
// label: $t('ui.actionTitle.import', [$t('customer.customer')]),
// type: 'primary',
// icon: ACTION_ICON.UPLOAD,
// auth: ['license:customer:import'],
// onClick: handleImport,
// },
]"
/>
</template>
<template #actions="{ row }">
<TableAction
:actions="[
{
label: $t('common.edit'),
type: 'link',
auth: ['license:customer:update'],
onClick: onEdit.bind(null, row),
},
{
label: $t('common.delete'),
type: 'link',
danger: true,
auth: ['license:customer:delete'],
popConfirm: {
title: $t('ui.actionMessage.deleteConfirm', [row.name]),
confirm: onDelete.bind(null, row),
},
},
]"
/>
</template>
</Grid>
</Page>
</template>