161 lines
4.1 KiB
Vue
161 lines
4.1 KiB
Vue
<script setup lang="ts">
|
|
import { Page, useVbenModal, type VbenFormProps } from '@vben/common-ui';
|
|
import { getVxePopupContainer } from '@vben/utils';
|
|
import { Modal, Popconfirm, Space } from 'ant-design-vue';
|
|
import { $t } from '@vben/locales';
|
|
import {
|
|
useVbenVxeGrid,
|
|
vxeCheckboxChecked,
|
|
type VxeGridProps
|
|
} from '#/adapter/vxe-table';
|
|
import {
|
|
orderChargeList,
|
|
orderChargeRemove,
|
|
} from '#/api/property/chargeManagement';
|
|
import type { OrderChargeForm } from '#/api/property/chargeManagement/model';
|
|
import orderChargeModal from './orderCharge-modal.vue';
|
|
import orderChargeDetail from './orderCharge-detail.vue';
|
|
import { columns, querySchema } from './data';
|
|
|
|
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,
|
|
},
|
|
columns,
|
|
height: 'auto',
|
|
keepSource: true,
|
|
pagerConfig: {},
|
|
proxyConfig: {
|
|
ajax: {
|
|
query: async ({ page }, formValues = {}) => {
|
|
return await orderChargeList({
|
|
pageNum: page.currentPage,
|
|
pageSize: page.pageSize,
|
|
...formValues,
|
|
});
|
|
},
|
|
},
|
|
},
|
|
rowConfig: {
|
|
keyField: 'id',
|
|
},
|
|
id: 'property-orderCharge-index'
|
|
};
|
|
|
|
const [BasicTable, tableApi] = useVbenVxeGrid({
|
|
formOptions,
|
|
gridOptions,
|
|
});
|
|
|
|
const [OrderChargeModal, modalApi] = useVbenModal({
|
|
connectedComponent: orderChargeModal,
|
|
});
|
|
|
|
const [orderChargeDetailModal, orderChargeDetailApi] = useVbenModal({
|
|
connectedComponent: orderChargeDetail,
|
|
});
|
|
|
|
async function handleInfo(row: Required<OrderChargeForm>) {
|
|
orderChargeDetailApi.setData({ id: row.id });
|
|
orderChargeDetailApi.open();
|
|
}
|
|
|
|
function handleAdd() {
|
|
modalApi.setData({});
|
|
modalApi.open();
|
|
}
|
|
|
|
async function handleEdit(row: Required<OrderChargeForm>) {
|
|
modalApi.setData({ id: row.id });
|
|
modalApi.open();
|
|
}
|
|
|
|
async function handleDelete(row: Required<OrderChargeForm>) {
|
|
await orderChargeRemove(row.id);
|
|
await tableApi.query();
|
|
}
|
|
|
|
function handleMultiDelete() {
|
|
const rows = tableApi.grid.getCheckboxRecords();
|
|
const ids = rows.map((row: Required<OrderChargeForm>) => row.id);
|
|
Modal.confirm({
|
|
title: '提示',
|
|
okType: 'danger',
|
|
content: `确认删除选中的${ids.length}条记录吗?`,
|
|
onOk: async () => {
|
|
await orderChargeRemove(ids);
|
|
await tableApi.query();
|
|
},
|
|
});
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<Page :auto-content-height="true">
|
|
<BasicTable table-title="订单收费列表">
|
|
<template #toolbar-tools>
|
|
<Space>
|
|
<a-button
|
|
:disabled="!vxeCheckboxChecked(tableApi)"
|
|
danger
|
|
type="primary"
|
|
v-access:code="['property:orderCharge:remove']"
|
|
@click="handleMultiDelete">
|
|
{{ $t('pages.common.delete') }}
|
|
</a-button>
|
|
<a-button
|
|
type="primary"
|
|
v-access:code="['property:orderCharge:add']"
|
|
@click="handleAdd"
|
|
>
|
|
{{ $t('pages.common.add') }}
|
|
</a-button>
|
|
</Space>
|
|
</template>
|
|
<template #action="{ row }">
|
|
<Space>
|
|
<ghost-button
|
|
@click.stop="handleInfo(row)"
|
|
>
|
|
{{ $t('pages.common.info') }}
|
|
</ghost-button>
|
|
<ghost-button
|
|
v-access:code="['property:orderCharge: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:orderCharge:remove']"
|
|
@click.stop=""
|
|
>
|
|
{{ $t('pages.common.delete') }}
|
|
</ghost-button>
|
|
</Popconfirm>
|
|
</Space>
|
|
</template>
|
|
</BasicTable>
|
|
<OrderChargeModal @reload="tableApi.query()" />
|
|
<orderChargeDetailModal/>
|
|
</Page>
|
|
</template>
|