Some checks failed
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / Lint (ubuntu-latest) (push) Has been cancelled
CI / Lint (windows-latest) (push) Has been cancelled
CI / Check (ubuntu-latest) (push) Has been cancelled
CI / Check (windows-latest) (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
Deploy Website on push / Deploy Push Playground Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Docs Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Antd Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Element Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Naive Ftp (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
CI / CI OK (push) Has been cancelled
Deploy Website on push / Rerun on failure (push) Has been cancelled
Lock Threads / action (push) Has been cancelled
Issue Close Require / close-issues (push) Has been cancelled
Close stale issues / stale (push) Has been cancelled
68 lines
1.4 KiB
Vue
68 lines
1.4 KiB
Vue
<script lang="ts" setup>
|
|
import type { VxeGridProps } from '#/adapter/vxe-table';
|
|
|
|
import { Button } from 'ant-design-vue';
|
|
|
|
import { useVbenVxeGrid } from '#/adapter/vxe-table';
|
|
|
|
import { getExampleTableApi } from '../mock-api';
|
|
|
|
interface RowType {
|
|
category: string;
|
|
color: string;
|
|
id: string;
|
|
price: string;
|
|
productName: string;
|
|
releaseDate: string;
|
|
}
|
|
|
|
const gridOptions: VxeGridProps<RowType> = {
|
|
columns: [
|
|
{ fixed: 'left', title: '序号', type: 'seq', width: 50 },
|
|
{ field: 'category', title: 'Category', width: 300 },
|
|
{ field: 'color', title: 'Color', width: 300 },
|
|
{ field: 'productName', title: 'Product Name', width: 300 },
|
|
{ field: 'price', title: 'Price', width: 300 },
|
|
{
|
|
field: 'releaseDate',
|
|
formatter: 'formatDateTime',
|
|
title: 'DateTime',
|
|
width: 500,
|
|
},
|
|
{
|
|
field: 'action',
|
|
fixed: 'right',
|
|
slots: { default: 'action' },
|
|
title: '操作',
|
|
width: 120,
|
|
},
|
|
],
|
|
pagerConfig: {},
|
|
proxyConfig: {
|
|
ajax: {
|
|
query: async ({ page }) => {
|
|
return await getExampleTableApi({
|
|
page: page.currentPage,
|
|
pageSize: page.pageSize,
|
|
});
|
|
},
|
|
},
|
|
},
|
|
rowConfig: {
|
|
isHover: true,
|
|
},
|
|
};
|
|
|
|
const [Grid] = useVbenVxeGrid({ gridOptions });
|
|
</script>
|
|
|
|
<template>
|
|
<div class="vp-raw w-full">
|
|
<Grid>
|
|
<template #action>
|
|
<Button type="link">编辑</Button>
|
|
</template>
|
|
</Grid>
|
|
</div>
|
|
</template>
|