Files
admin-vben5/apps/web-antd/src/views/property/assetManage/application/index.vue

199 lines
5.4 KiB
Vue
Raw Normal View History

2025-06-23 09:27:28 +08:00
<script setup lang="ts">
2025-08-04 17:27:37 +08:00
import {Page, useVbenModal, type VbenFormProps} from '@vben/common-ui';
import {getVxePopupContainer} from '@vben/utils';
2025-06-23 09:27:28 +08:00
2025-08-04 17:27:37 +08:00
import {Modal, Popconfirm, Space} from 'ant-design-vue';
2025-06-23 09:27:28 +08:00
2025-06-24 14:52:45 +08:00
import {
2025-06-23 09:27:28 +08:00
useVbenVxeGrid,
vxeCheckboxChecked,
2025-06-24 14:52:45 +08:00
type VxeGridProps
2025-06-23 09:27:28 +08:00
} from '#/adapter/vxe-table';
import {
applicationExport,
applicationList,
2025-08-04 17:27:37 +08:00
applicationRemove, applicationUpdate,
2025-06-24 14:52:45 +08:00
} from '#/api/property/assetManage/application';
2025-08-04 17:27:37 +08:00
import type {ApplicationForm} from '#/api/property/assetManage/application/model';
import {commonDownloadExcel} from '#/utils/file/download';
2025-06-23 09:27:28 +08:00
import applicationModal from './application-modal.vue';
2025-08-04 17:27:37 +08:00
import {columns, querySchema} from './data';
import {useUserStore} from "@vben/stores";
import { cloneDeep } from '@vben/utils';
2025-06-23 09:27:28 +08:00
const formOptions: VbenFormProps = {
commonConfig: {
labelWidth: 80,
componentProps: {
allowClear: true,
},
},
schema: querySchema(),
wrapperClass: 'grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4',
};
const gridOptions: VxeGridProps = {
checkboxConfig: {
// 高亮
highlight: true,
// 翻页时保留选中状态
reserve: true,
// 点击行选中
// trigger: 'row',
},
// 需要使用i18n注意这里要改成getter形式 否则切换语言不会刷新
// columns: columns(),
columns,
height: 'auto',
keepSource: true,
pagerConfig: {},
proxyConfig: {
ajax: {
2025-08-04 17:27:37 +08:00
query: async ({page}, formValues = {}) => {
2025-06-23 09:27:28 +08:00
return await applicationList({
pageNum: page.currentPage,
pageSize: page.pageSize,
...formValues,
});
},
},
},
rowConfig: {
keyField: 'id',
},
// 表格全局唯一表示 保存列配置需要用到
id: 'property-application-index'
};
const [BasicTable, tableApi] = useVbenVxeGrid({
formOptions,
gridOptions,
});
const [ApplicationModal, modalApi] = useVbenModal({
connectedComponent: applicationModal,
});
function handleAdd() {
modalApi.setData({});
modalApi.open();
}
async function handleEdit(row: Required<ApplicationForm>) {
2025-08-04 17:27:37 +08:00
modalApi.setData({id: row.id});
2025-06-23 09:27:28 +08:00
modalApi.open();
}
async function handleDelete(row: Required<ApplicationForm>) {
await applicationRemove(row.id);
await tableApi.query();
}
2025-08-04 17:27:37 +08:00
const userStore = useUserStore();
async function handleAudit(row: Required<ApplicationForm>, status: number) {
const info = cloneDeep(row)
info.state = status
info.acceptanceTime = new Date()
info.acceptanceUserId = userStore.userInfo?.userId
await applicationUpdate(info)
await tableApi.query();
}
2025-06-23 09:27:28 +08:00
function handleMultiDelete() {
const rows = tableApi.grid.getCheckboxRecords();
const ids = rows.map((row: Required<ApplicationForm>) => row.id);
Modal.confirm({
title: '提示',
okType: 'danger',
content: `确认删除选中的${ids.length}条记录吗?`,
onOk: async () => {
await applicationRemove(ids);
await tableApi.query();
},
});
}
function handleDownloadExcel() {
commonDownloadExcel(applicationExport, '资产领用数据', tableApi.formApi.form.values, {
fieldMappingTime: formOptions.fieldMappingTime,
});
}
</script>
<template>
<Page :auto-content-height="true">
<BasicTable table-title="资产领用列表">
<template #toolbar-tools>
<Space>
<a-button
v-access:code="['property:application:export']"
@click="handleDownloadExcel"
>
{{ $t('pages.common.export') }}
</a-button>
<a-button
:disabled="!vxeCheckboxChecked(tableApi)"
danger
2025-06-24 14:52:45 +08:00
type="primary"
v-access:code="['property:application:remove']"
2025-06-23 09:27:28 +08:00
@click="handleMultiDelete">
{{ $t('pages.common.delete') }}
</a-button>
<a-button
type="primary"
v-access:code="['property:application:add']"
@click="handleAdd"
>
{{ $t('pages.common.add') }}
</a-button>
</Space>
</template>
<template #action="{ row }">
<Space>
2025-08-04 17:27:37 +08:00
<!-- <ghost-button-->
<!-- v-access:code="['property:application:edit']"-->
<!-- @click.stop="handleEdit(row)"-->
<!-- >-->
<!-- {{ $t('pages.common.edit') }}-->
<!-- </ghost-button>-->
<Popconfirm
:get-popup-container="getVxePopupContainer"
placement="left"
title="资产领用审核"
@confirm="handleAudit(row,1)"
cancelText="不通过"
okText="通过"
@cancel="handleAudit(row,2)"
2025-06-23 09:27:28 +08:00
>
2025-08-04 17:27:37 +08:00
<ghost-button
v-access:code="['property:application:edit']"
@click.stop=""
:disabled="row.state!=0"
>
审核
</ghost-button>
</Popconfirm>
2025-06-23 09:27:28 +08:00
<Popconfirm
:get-popup-container="getVxePopupContainer"
placement="left"
title="确认删除?"
@confirm="handleDelete(row)"
>
<ghost-button
danger
v-access:code="['property:application:remove']"
@click.stop=""
>
{{ $t('pages.common.delete') }}
</ghost-button>
</Popconfirm>
</Space>
</template>
</BasicTable>
2025-08-04 17:27:37 +08:00
<ApplicationModal @reload="tableApi.query()"/>
2025-06-23 09:27:28 +08:00
</Page>
</template>