feat(ui): 新增弹窗及时间格式化

This commit is contained in:
廖彦棋
2024-03-07 09:23:45 +08:00
parent f2cfcfeefc
commit a36f14eb94
11 changed files with 217 additions and 4 deletions

View File

@@ -5,9 +5,9 @@ import { useTableScroll } from "@/components/SearchTable/utils";
import { Message } from "@arco-design/web-vue";
import type { TableRequest, TableOriginalProps } from "./useAsyncTable";
export interface SimpleTable extends TableOriginalProps {
export interface SimpleTable extends /* @vue-ignore */ TableOriginalProps {
request: TableRequest<Record<string, unknown>>;
params: Record<string, unknown>;
params?: Record<string, unknown>;
}
const props = defineProps<SimpleTable>();