<template>
|
<div class="p-4 flex flex-col">
|
<div class="mb-4">
|
<a-button class="mr-2" @click="reloadTable"> 还原 </a-button>
|
<a-button class="mr-2" @click="changeLoading"> 开启loading </a-button>
|
<a-button class="mr-2" @click="changeColumns"> 更改Columns </a-button>
|
<a-button class="mr-2" @click="getColumn"> 获取Columns </a-button>
|
<a-button class="mr-2" @click="getTableData"> 获取表格数据 </a-button>
|
<a-button class="mr-2" @click="getTableRawData"> 获取接口原始数据 </a-button>
|
<a-button class="mr-2" @click="setPaginationInfo"> 跳转到第2页 </a-button>
|
</div>
|
<div class="mb-4">
|
<a-button class="mr-2" @click="getSelectRowList"> 获取选中行 </a-button>
|
<a-button class="mr-2" @click="getSelectRowKeyList"> 获取选中行Key </a-button>
|
<a-button class="mr-2" @click="setSelectedRowKeyList"> 设置选中行 </a-button>
|
<a-button class="mr-2" @click="clearSelect"> 清空选中行 </a-button>
|
<a-button class="mr-2" @click="getPagination"> 获取分页信息 </a-button>
|
</div>
|
<BasicTable @register="registerTable" />
|
</div>
|
</template>
|
<script lang="ts" setup>
|
import { BasicTable, ColumnChangeParam, useTable } from '@/components/Table';
|
import { getBasicColumns, getBasicShortColumns } from './tableData';
|
import { useMessage } from '@/hooks/web/useMessage';
|
import { demoListApi } from '@/api/demo/table';
|
|
const { createMessage } = useMessage();
|
function onChange() {
|
console.log('onChange', arguments);
|
}
|
const [
|
registerTable,
|
{
|
setLoading,
|
setProps,
|
getColumns,
|
getDataSource,
|
getRawDataSource,
|
reload,
|
getPaginationRef,
|
setPagination,
|
getSelectRows,
|
getSelectRowKeys,
|
setSelectedRowKeys,
|
clearSelectedRowKeys,
|
},
|
] = useTable({
|
canResize: true,
|
title: 'useTable示例',
|
titleHelpMessage: '使用useTable调用表格内方法',
|
api: demoListApi,
|
columns: getBasicColumns(),
|
defSort: {
|
field: 'name',
|
order: 'ascend',
|
},
|
rowKey: 'id',
|
showTableSetting: true,
|
onChange,
|
rowSelection: {
|
type: 'checkbox',
|
},
|
onColumnsChange: (data: ColumnChangeParam[]) => {
|
console.log('ColumnsChanged', data);
|
},
|
showSelectionBar: true, // 显示多选状态栏
|
});
|
|
function changeLoading() {
|
setLoading(true);
|
setTimeout(() => {
|
setLoading(false);
|
}, 1000);
|
}
|
function changeColumns() {
|
setProps({
|
columns: getBasicShortColumns(),
|
rowSelection: {
|
type: 'checkbox',
|
},
|
showIndexColumn: true,
|
});
|
}
|
function reloadTable() {
|
setProps({
|
columns: getBasicColumns(),
|
rowSelection: {
|
type: 'checkbox',
|
},
|
showIndexColumn: true,
|
});
|
reload({
|
page: 1,
|
});
|
}
|
function getColumn() {
|
createMessage.info('请在控制台查看!');
|
console.log(getColumns());
|
}
|
|
function getTableData() {
|
createMessage.info('请在控制台查看!');
|
console.log(getDataSource());
|
}
|
|
function getTableRawData() {
|
createMessage.info('请在控制台查看!');
|
console.log(getRawDataSource());
|
}
|
|
function getPagination() {
|
createMessage.info('请在控制台查看!');
|
console.log(getPaginationRef());
|
}
|
|
function setPaginationInfo() {
|
setPagination({
|
current: 2,
|
});
|
reload();
|
}
|
function getSelectRowList() {
|
createMessage.info('请在控制台查看!');
|
console.log(getSelectRows());
|
}
|
function getSelectRowKeyList() {
|
createMessage.info('请在控制台查看!');
|
console.log(getSelectRowKeys());
|
}
|
function setSelectedRowKeyList() {
|
setSelectedRowKeys(['0', '1', '2']);
|
}
|
function clearSelect() {
|
clearSelectedRowKeys();
|
}
|
</script>
|