1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <script lang="ts" setup>
- import type { VxeGridProps } from '#/adapter/vxe-table';
- import { Page } from '@vben/common-ui';
- import { Button } from 'ant-design-vue';
- import { useVbenVxeGrid } from '#/adapter/vxe-table';
- import { getExampleTableApi } from '#/api';
- interface RowType {
- category: string;
- color: string;
- id: string;
- price: string;
- productName: string;
- releaseDate: string;
- }
- const gridOptions: VxeGridProps<RowType> = {
- checkboxConfig: {
- highlight: true,
- labelField: 'name',
- },
- columns: [
- { title: '序号', type: 'seq', width: 50 },
- { align: 'left', title: 'Name', type: 'checkbox', width: 100 },
- { field: 'category', title: 'Category' },
- { field: 'color', title: 'Color' },
- { field: 'productName', title: 'Product Name' },
- { field: 'price', title: 'Price' },
- { field: 'releaseDate', formatter: 'formatDateTime', title: 'DateTime' },
- ],
- exportConfig: {},
- height: 'auto',
- keepSource: true,
- proxyConfig: {
- ajax: {
- query: async ({ page }) => {
- return await getExampleTableApi({
- page: page.currentPage,
- pageSize: page.pageSize,
- });
- },
- },
- },
- toolbarConfig: {
- custom: true,
- export: true,
- // import: true,
- refresh: true,
- zoom: true,
- },
- };
- const [Grid, gridApi] = useVbenVxeGrid({
- gridOptions,
- });
- </script>
- <template>
- <Page auto-content-height>
- <Grid table-title="数据列表" table-title-help="提示">
- <template #toolbar-tools>
- <Button class="mr-2" type="primary" @click="() => gridApi.query()">
- 刷新当前页面
- </Button>
- <Button type="primary" @click="() => gridApi.reload()">
- 刷新并返回第一页
- </Button>
- </template>
- </Grid>
- </Page>
- </template>
|