设备管理

This commit is contained in:
FLL
2025-07-17 17:26:32 +08:00
parent 3389a864d1
commit 06e72f6e51
9 changed files with 552 additions and 136 deletions

View File

@@ -1,27 +1,20 @@
<script setup lang="ts">
import type { Recordable } from '@vben/types';
import { ref } from 'vue';
import { Page, useVbenModal, type VbenFormProps } from '@vben/common-ui';
import { getVxePopupContainer } from '@vben/utils';
import { Modal, Popconfirm, Space } from 'ant-design-vue';
import dayjs from 'dayjs';
import {
import {
useVbenVxeGrid,
vxeCheckboxChecked,
type VxeGridProps
type VxeGridProps
} from '#/adapter/vxe-table';
import {
costItemSettingExport,
costItemSettingList,
costItemSettingRemove,
} from '#/api/property/costItemSetting';
import type { CostItemSettingForm } from '#/api/property/costItemSetting/model';
import { commonDownloadExcel } from '#/utils/file/download';
} from '#/api/property/costManagement/costItemSetting';
import type { CostItemSettingForm } from '#/api/property/costManagement/costItemSetting/model';
import costItemSettingModal from './costItemSetting-modal.vue';
import { columns, querySchema } from './data';
@@ -35,15 +28,6 @@ const formOptions: VbenFormProps = {
},
schema: querySchema(),
wrapperClass: 'grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4',
// 处理区间选择器RangePicker时间格式 将一个字段映射为两个字段 搜索/导出会用到
// 不需要直接删除
// fieldMappingTime: [
// [
// 'createTime',
// ['params[beginTime]', 'params[endTime]'],
// ['YYYY-MM-DD 00:00:00', 'YYYY-MM-DD 23:59:59'],
// ],
// ],
};
const gridOptions: VxeGridProps = {
@@ -116,12 +100,6 @@ function handleMultiDelete() {
},
});
}
function handleDownloadExcel() {
commonDownloadExcel(costItemSettingExport, '费用项设置数据', tableApi.formApi.form.values, {
fieldMappingTime: formOptions.fieldMappingTime,
});
}
</script>
<template>
@@ -129,17 +107,11 @@ function handleDownloadExcel() {
<BasicTable table-title="费用项设置列表">
<template #toolbar-tools>
<Space>
<a-button
v-access:code="['property:costItemSetting:export']"
@click="handleDownloadExcel"
>
{{ $t('pages.common.export') }}
</a-button>
<a-button
:disabled="!vxeCheckboxChecked(tableApi)"
danger
type="primary"
v-access:code="['property:costItemSetting:remove']"
type="primary"
v-access:code="['property:costItemSetting:remove']"
@click="handleMultiDelete">
{{ $t('pages.common.delete') }}
</a-button>