| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <script lang="ts" setup>
- import type { VxeGridProps } from '#/adapter/vxe-table';
- import { Page } from '@vben/common-ui';
- 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> = {
- columns: [
- { title: '序号', type: 'seq', width: 50 },
- { editRender: { name: 'input' }, field: 'category', title: 'Category' },
- { editRender: { name: 'input' }, field: 'color', title: 'Color' },
- {
- editRender: { name: 'input' },
- field: 'productName',
- title: 'Product Name',
- },
- { field: 'price', title: 'Price' },
- { field: 'releaseDate', formatter: 'formatDateTime', title: 'Date' },
- ],
- editConfig: {
- mode: 'cell',
- trigger: 'click',
- },
- height: 'auto',
- pagerConfig: {},
- proxyConfig: {
- ajax: {
- query: async ({ page }) => {
- return await getExampleTableApi({
- page: page.currentPage,
- pageSize: page.pageSize,
- });
- },
- },
- },
- showOverflow: true,
- };
- const [Grid] = useVbenVxeGrid({ gridOptions });
- </script>
- <template>
- <Page auto-content-height>
- <Grid />
- </Page>
- </template>
|