Files
admin-vben5/apps/web-antd/src/views/property/businessManagement/workOrders/index.vue

222 lines
5.8 KiB
Vue
Raw Normal View History

2025-07-09 10:36:42 +08:00
<script setup lang="ts">
2025-07-09 18:12:28 +08:00
import {Page, useVbenModal, type VbenFormProps} from '@vben/common-ui';
import {getVxePopupContainer} from '@vben/utils';
2025-07-09 10:36:42 +08:00
2025-07-09 18:12:28 +08:00
import {Modal, Popconfirm, Space, RadioGroup, RadioButton} from 'ant-design-vue';
2025-07-09 10:36:42 +08:00
import {
useVbenVxeGrid,
vxeCheckboxChecked,
type VxeGridProps
} from '#/adapter/vxe-table';
import {
workOrdersExport,
workOrdersList,
workOrdersRemove,
} from '#/api/property/businessManagement/workOrders';
2025-07-09 18:12:28 +08:00
import type {WorkOrdersForm} from '#/api/property/businessManagement/workOrders/model';
import {commonDownloadExcel} from '#/utils/file/download';
2025-07-09 10:36:42 +08:00
import workOrdersModal from './workOrders-modal.vue';
2025-07-09 18:12:28 +08:00
import workOrdersDetail from './work-orders-detail.vue';
import {columns, querySchema} from './data';
import {onMounted, ref} from "vue";
import {workOrdersTypeList} from "#/api/property/businessManagement/workOrdersType";
2025-07-09 10:36:42 +08:00
2025-07-09 18:12:28 +08:00
const ordersTypeList = ref<any[]>([]);
const ordersType = ref<string>('0');
2025-07-09 10:36:42 +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',
},
columns,
height: 'auto',
keepSource: true,
pagerConfig: {},
proxyConfig: {
ajax: {
2025-07-09 18:12:28 +08:00
query: async ({page}, formValues = {}) => {
2025-07-09 10:36:42 +08:00
return await workOrdersList({
pageNum: page.currentPage,
pageSize: page.pageSize,
...formValues,
});
},
},
},
rowConfig: {
keyField: 'id',
},
// 表格全局唯一表示 保存列配置需要用到
id: 'property-workOrders-index'
};
const [BasicTable, tableApi] = useVbenVxeGrid({
formOptions,
gridOptions,
});
const [WorkOrdersModal, modalApi] = useVbenModal({
connectedComponent: workOrdersModal,
});
2025-07-09 18:12:28 +08:00
const [WorkOrdersDetail, detailApi] = useVbenModal({
connectedComponent: workOrdersDetail,
});
2025-07-09 10:36:42 +08:00
function handleAdd() {
modalApi.setData({});
modalApi.open();
}
2025-07-09 18:12:28 +08:00
function handleInfo(row) {
detailApi.setData({id:row.id});
detailApi.open();
}
2025-07-09 10:36:42 +08:00
async function handleEdit(row: Required<WorkOrdersForm>) {
2025-07-09 18:12:28 +08:00
modalApi.setData({id: row.id});
2025-07-09 10:36:42 +08:00
modalApi.open();
}
async function handleDelete(row: Required<WorkOrdersForm>) {
await workOrdersRemove(row.id);
await tableApi.query();
}
function handleMultiDelete() {
const rows = tableApi.grid.getCheckboxRecords();
const ids = rows.map((row: Required<WorkOrdersForm>) => row.id);
Modal.confirm({
title: '提示',
okType: 'danger',
content: `确认删除选中的${ids.length}条记录吗?`,
onOk: async () => {
await workOrdersRemove(ids);
await tableApi.query();
},
});
}
function handleDownloadExcel() {
commonDownloadExcel(workOrdersExport, '工单处理数据', tableApi.formApi.form.values, {
fieldMappingTime: formOptions.fieldMappingTime,
});
}
2025-07-09 18:12:28 +08:00
async function queryOrderType() {
let params = {
pageSize: 1000,
pageNum: 1
}
const res = await workOrdersTypeList(params)
ordersTypeList.value = res.rows.map((item) => ({
label: item.orderTypeName,
value: item.id,
}));
ordersTypeList.value.unshift({
label: '全部工单',
value: '0',
})
}
onMounted(async () => {
await queryOrderType()
});
async function changeOrdersType(val: string) {
await tableApi.formApi.setValues({
type: val === '0' ? undefined : val, // '0' 表示全部工单,传 undefined 或清除该字段
});
console.log(tableApi.formApi.getValues(),'==================')
await tableApi.query()
}
2025-07-09 10:36:42 +08:00
</script>
<template>
<Page :auto-content-height="true">
<BasicTable table-title="工单处理列表">
2025-07-09 18:12:28 +08:00
<template #table-title>
<RadioGroup v-model:value="ordersType" button-style="solid" @change="changeOrdersType">
<RadioButton v-for="item in ordersTypeList"
:value="item.value">{{ item.label }}
</RadioButton>
</RadioGroup>
</template>
2025-07-09 10:36:42 +08:00
<template #toolbar-tools>
<Space>
<a-button
v-access:code="['property:workOrders:export']"
@click="handleDownloadExcel"
>
{{ $t('pages.common.export') }}
</a-button>
<a-button
:disabled="!vxeCheckboxChecked(tableApi)"
danger
type="primary"
v-access:code="['property:workOrders:remove']"
@click="handleMultiDelete">
{{ $t('pages.common.delete') }}
</a-button>
<a-button
type="primary"
v-access:code="['property:workOrders:add']"
@click="handleAdd"
>
{{ $t('pages.common.add') }}
</a-button>
</Space>
</template>
<template #action="{ row }">
<Space>
2025-07-09 18:12:28 +08:00
<ghost-button
v-access:code="['property:workOrders:info']"
@click.stop="handleInfo(row)"
>
{{ $t('pages.common.info') }}
</ghost-button>
2025-07-09 10:36:42 +08:00
<ghost-button
v-access:code="['property:workOrders:edit']"
@click.stop="handleEdit(row)"
>
{{ $t('pages.common.edit') }}
</ghost-button>
<Popconfirm
:get-popup-container="getVxePopupContainer"
placement="left"
title="确认删除?"
@confirm="handleDelete(row)"
>
<ghost-button
danger
v-access:code="['property:workOrders:remove']"
@click.stop=""
>
{{ $t('pages.common.delete') }}
</ghost-button>
</Popconfirm>
</Space>
</template>
</BasicTable>
2025-07-09 18:12:28 +08:00
<WorkOrdersModal @reload="tableApi.query()"/>
<WorkOrdersDetail/>
2025-07-09 10:36:42 +08:00
</Page>
</template>