mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-27 00:17:31 +00:00
89 lines
2.5 KiB
TypeScript
89 lines
2.5 KiB
TypeScript
import React, { useState } from 'react';
|
|
import { Table, Thead, Tbody, Tr, Th, Td, TableContainer, Flex, Box } from '@chakra-ui/react';
|
|
import { BillTypeMap } from '@/constants/user';
|
|
import { getUserBills } from '@/api/user';
|
|
import type { UserBillType } from '@/types/user';
|
|
import { usePagination } from '@/hooks/usePagination';
|
|
import { useLoading } from '@/hooks/useLoading';
|
|
import dayjs from 'dayjs';
|
|
import MyIcon from '@/components/Icon';
|
|
import DateRangePicker, { type DateRangeType } from '@/components/DateRangePicker';
|
|
import { addDays } from 'date-fns';
|
|
|
|
const BillTable = () => {
|
|
const { Loading } = useLoading();
|
|
const [dateRange, setDateRange] = useState<DateRangeType>({
|
|
from: addDays(new Date(), -7),
|
|
to: new Date()
|
|
});
|
|
|
|
const {
|
|
data: bills,
|
|
isLoading,
|
|
Pagination,
|
|
pageSize,
|
|
total,
|
|
getData
|
|
} = usePagination<UserBillType>({
|
|
api: getUserBills,
|
|
params: {
|
|
dateStart: dateRange.from,
|
|
dateEnd: dateRange.to
|
|
}
|
|
});
|
|
|
|
return (
|
|
<>
|
|
<TableContainer position={'relative'} minH={'100px'}>
|
|
<Table>
|
|
<Thead>
|
|
<Tr>
|
|
<Th>时间</Th>
|
|
<Th>类型</Th>
|
|
<Th>模型</Th>
|
|
<Th>内容长度</Th>
|
|
<Th>Tokens 长度</Th>
|
|
<Th>金额</Th>
|
|
</Tr>
|
|
</Thead>
|
|
<Tbody fontSize={'sm'}>
|
|
{bills.map((item) => (
|
|
<Tr key={item.id}>
|
|
<Td>{dayjs(item.time).format('YYYY/MM/DD HH:mm:ss')}</Td>
|
|
<Td>{BillTypeMap[item.type] || '-'}</Td>
|
|
<Td>{item.modelName}</Td>
|
|
<Td>{item.textLen}</Td>
|
|
<Td>{item.tokenLen}</Td>
|
|
<Td>{item.price}元</Td>
|
|
</Tr>
|
|
))}
|
|
</Tbody>
|
|
</Table>
|
|
</TableContainer>
|
|
|
|
{!isLoading && bills.length === 0 && (
|
|
<Flex h={'100%'} flexDirection={'column'} alignItems={'center'}>
|
|
<MyIcon name="empty" w={'48px'} h={'48px'} color={'transparent'} />
|
|
<Box mt={2} color={'myGray.500'}>
|
|
无使用记录~
|
|
</Box>
|
|
</Flex>
|
|
)}
|
|
<Flex w={'100%'} mt={4} justifyContent={'flex-end'}>
|
|
<DateRangePicker
|
|
defaultDate={dateRange}
|
|
position="top"
|
|
onChange={setDateRange}
|
|
onSuccess={() => getData(1)}
|
|
/>
|
|
<Box ml={2}>
|
|
<Pagination />
|
|
</Box>
|
|
</Flex>
|
|
<Loading loading={isLoading} fixed={false} />
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default BillTable;
|