优化默认角色数据,增加表格多字段排序例子

This commit is contained in:
孟帅
2023-08-11 17:47:28 +08:00
parent 7fcf8fb73c
commit 8decde3f76
12 changed files with 526 additions and 337 deletions

5
web/types/table.d.ts vendored Normal file
View File

@@ -0,0 +1,5 @@
export interface Sorter {
columnKey: string;
sorter: string | boolean;
order: string | boolean;
}