feat: 模态框选择表格

This commit is contained in:
2023-07-21 21:41:51 +08:00
parent 49a39a22bb
commit 88ea85a136
4 changed files with 262 additions and 5 deletions

9
types/page.d.ts vendored Normal file
View File

@ -0,0 +1,9 @@
/** 通用分页模型 */
declare interface Page<T = any[]> {
code: number
/** 分页数据 */
rows: T
/** 总页数 */
total: number
message: string
}