|
|
|
@ -7,6 +7,7 @@ import { Input, Spin, Pagination, Select } from "antd";
@@ -7,6 +7,7 @@ import { Input, Spin, Pagination, Select } from "antd";
|
|
|
|
|
import { EUserStatus, IColumn, IIps, IPListType } from "@/shared"; |
|
|
|
|
import { ActionBottomBar } from "./components"; |
|
|
|
|
import { voidColumn, VOID_COLUMN_KEY } from "./configs"; |
|
|
|
|
import moment from "moment"; |
|
|
|
|
|
|
|
|
|
interface IProps { |
|
|
|
|
tableName: string; |
|
|
|
@ -164,7 +165,9 @@ export const Table = ({
@@ -164,7 +165,9 @@ export const Table = ({
|
|
|
|
|
[e.target.name]: e.target.value, |
|
|
|
|
}); |
|
|
|
|
paginationList.setLoadParams({ |
|
|
|
|
[e.target.name]: new Date(e.target.value), |
|
|
|
|
[e.target.name]: moment( |
|
|
|
|
new Date(e.target.value) |
|
|
|
|
).format("MM DD YYYY"), |
|
|
|
|
}); |
|
|
|
|
}} |
|
|
|
|
value={tableFilter[item.column.key]} |
|
|
|
|