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

257 lines
6.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';
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';
2025-07-21 20:41:47 +08:00
import ordersModal from './orders-modal.vue';
2025-07-09 18:12:28 +08:00
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',
2025-07-10 16:13:53 +08:00
handleReset: async () => {
ordersType.value = '0';
const { formApi, reload } = tableApi;
await formApi.resetForm();
const formValues = formApi.form.values;
formApi.setLatestSubmissionValues(formValues);
await reload(formValues);
},
2025-07-09 10:36:42 +08:00
};
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-10 16:13:53 +08:00
formValues.type = ordersType.value=='0'?undefined:ordersType.value;
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-21 20:41:47 +08:00
const [OrdersModal, ordersApi] = useVbenModal({
connectedComponent: ordersModal,
});
2025-07-09 10:36:42 +08:00
function handleAdd() {
modalApi.setData({});
modalApi.open();
}
2025-07-21 20:41:47 +08:00
2025-07-10 16:13:53 +08:00
function handleInfo(row:any) {
2025-07-09 18:12:28 +08:00
detailApi.setData({id:row.id});
detailApi.open();
}
2025-07-09 10:36:42 +08:00
2025-07-21 20:41:47 +08:00
function handleOrders(row:any,mean:any) {
ordersApi.setData({id:row.id,mean:mean});
ordersApi.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()
});
2025-07-09 10:36:42 +08:00
</script>
<template>
<Page :auto-content-height="true">
2025-07-10 16:13:53 +08:00
<BasicTable table-title="工单处理列表" class="order-work-left-radio">
2025-07-09 18:12:28 +08:00
<template #table-title>
2025-07-10 16:13:53 +08:00
<RadioGroup v-model:value="ordersType" button-style="solid"
@change="() => tableApi.reload()">
2025-07-09 18:12:28 +08:00
<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-21 20:41:47 +08:00
<ghost-button
@click.stop="handleOrders(row,'group')"
>
{{ '派单' }}
</ghost-button>
<ghost-button
@click.stop="handleOrders(row,'rob')"
>
{{ '抢单' }}
</ghost-button>
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()"/>
2025-07-21 20:41:47 +08:00
<OrdersModal @reload="tableApi.query()"/>
2025-07-09 18:12:28 +08:00
<WorkOrdersDetail/>
2025-07-09 10:36:42 +08:00
</Page>
</template>
2025-07-10 16:13:53 +08:00
<style lang="scss" scoped>
:where(.css-dev-only-do-not-override-aza1th).ant-radio-group {
white-space: nowrap;
overflow-y: hidden;
margin-right: 10px;
}
</style>
<style lang="scss">
.order-work-left-radio{
.vxe-toolbar .vxe-buttons--wrapper, .vxe-toolbar .vxe-tools--wrapper {
max-width: 70% !important;
}
}
</style>