133 lines
3.8 KiB
Vue
133 lines
3.8 KiB
Vue
<template>
|
|
<div class="p-4">
|
|
<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="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">
|
|
import { defineComponent } from 'vue';
|
|
import { BasicTable, useTable } from '/@/components/Table';
|
|
import { getBasicColumns, getBasicShortColumns } from './tableData';
|
|
import { useMessage } from '/@/hooks/web/useMessage';
|
|
import { demoListApi } from '/@/api/demo/table';
|
|
export default defineComponent({
|
|
components: { BasicTable },
|
|
setup() {
|
|
const { createMessage } = useMessage();
|
|
function onChange() {
|
|
console.log('onChange', arguments);
|
|
}
|
|
const [
|
|
registerTable,
|
|
{
|
|
setLoading,
|
|
setColumns,
|
|
getColumns,
|
|
getDataSource,
|
|
reload,
|
|
getPaginationRef,
|
|
setPagination,
|
|
getSelectRows,
|
|
getSelectRowKeys,
|
|
setSelectedRowKeys,
|
|
clearSelectedRowKeys,
|
|
},
|
|
] = useTable({
|
|
canResize: true,
|
|
title: 'useTable示例',
|
|
titleHelpMessage: '使用useTable调用表格内方法',
|
|
api: demoListApi,
|
|
columns: getBasicColumns(),
|
|
rowKey: 'id',
|
|
showTableSetting: true,
|
|
onChange,
|
|
rowSelection: {
|
|
type: 'checkbox',
|
|
},
|
|
});
|
|
|
|
function changeLoading() {
|
|
setLoading(true);
|
|
setTimeout(() => {
|
|
setLoading(false);
|
|
}, 1000);
|
|
}
|
|
function changeColumns() {
|
|
setColumns(getBasicShortColumns());
|
|
}
|
|
function reloadTable() {
|
|
setColumns(getBasicColumns());
|
|
|
|
reload({
|
|
page: 1,
|
|
});
|
|
}
|
|
function getColumn() {
|
|
createMessage.info('请在控制台查看!');
|
|
console.log(getColumns());
|
|
}
|
|
|
|
function getTableData() {
|
|
createMessage.info('请在控制台查看!');
|
|
console.log(getDataSource());
|
|
}
|
|
|
|
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();
|
|
}
|
|
|
|
return {
|
|
registerTable,
|
|
changeLoading,
|
|
changeColumns,
|
|
reloadTable,
|
|
getColumn,
|
|
getTableData,
|
|
getPagination,
|
|
setPaginationInfo,
|
|
getSelectRowList,
|
|
getSelectRowKeyList,
|
|
setSelectedRowKeyList,
|
|
clearSelect,
|
|
onChange,
|
|
};
|
|
},
|
|
});
|
|
</script>
|