* Aiproxy (#3649) * model config * feat: model config ui * perf: rename variable * feat: custom request url * perf: model buffer * perf: init model * feat: json model config * auto login * fix: ts * update packages * package * fix: dockerfile * feat: usage filter & export & dashbord (#3538) * feat: usage filter & export & dashbord * adjust ui * fix tmb scroll * fix code & selecte all * merge * perf: usages list;perf: move components (#3654) * perf: usages list * team sub plan load * perf: usage dashboard code * perf: dashboard ui * perf: move components * add default model config (#3653) * 4.8.20 test (#3656) * provider * perf: model config * model perf (#3657) * fix: model * dataset quote * perf: model config * model tag * doubao model config * perf: config model * feat: model test * fix: POST 500 error on dingtalk bot (#3655) * feat: default model (#3662) * move model config * feat: default model * fix: false triggerd org selection (#3661) * export usage csv i18n (#3660) * export usage csv i18n * fix build * feat: markdown extension (#3663) * feat: markdown extension * media cros * rerank test * default price * perf: default model * fix: cannot custom provider * fix: default model select * update bg * perf: default model selector * fix: usage export * i18n * fix: rerank * update init extension * perf: ip limit check * doubao model order * web default modle * perf: tts selector * perf: tts error * qrcode package * reload buffer (#3665) * reload buffer * reload buffer * tts selector * fix: err tip (#3666) * fix: err tip * perf: training queue * doc * fix interactive edge (#3659) * fix interactive edge * fix * comment * add gemini model * fix: chat model select * perf: supplement assistant empty response (#3669) * perf: supplement assistant empty response * check array * perf: max_token count;feat: support resoner output;fix: member scroll (#3681) * perf: supplement assistant empty response * check array * perf: max_token count * feat: support resoner output * member scroll * update provider order * i18n * fix: stream response (#3682) * perf: supplement assistant empty response * check array * fix: stream response * fix: model config cannot set to null * fix: reasoning response (#3684) * perf: supplement assistant empty response * check array * fix: reasoning response * fix: reasoning response * doc (#3685) * perf: supplement assistant empty response * check array * doc * lock * animation * update doc * update compose * doc * doc --------- Co-authored-by: heheer <heheer@sealos.io> Co-authored-by: a.e. <49438478+I-Info@users.noreply.github.com>
89 lines
3.0 KiB
TypeScript
89 lines
3.0 KiB
TypeScript
import { Box, Button, Flex } from '@chakra-ui/react';
|
|
import FillRowTabs from '@fastgpt/web/components/common/Tabs/FillRowTabs';
|
|
import dynamic from 'next/dynamic';
|
|
import { useState } from 'react';
|
|
import { useTranslation } from 'next-i18next';
|
|
import ApplyInvoiceModal from '@/pageComponents/account/bill/ApplyInvoiceModal';
|
|
import { useRouter } from 'next/router';
|
|
import AccountContainer from '@/pageComponents/account/AccountContainer';
|
|
import { serviceSideProps } from '@fastgpt/web/common/system/nextjs';
|
|
|
|
export enum InvoiceTabEnum {
|
|
bill = 'bill',
|
|
invoice = 'invoice',
|
|
invoiceHeader = 'invoiceHeader'
|
|
}
|
|
|
|
const BillTable = dynamic(() => import('@/pageComponents/account/bill/BillTable'));
|
|
const InvoiceHeaderForm = dynamic(() => import('@/pageComponents/account/bill/InvoiceHeaderForm'));
|
|
const InvoiceTable = dynamic(() => import('@/pageComponents/account/bill/InvoiceTable'));
|
|
const BillAndInvoice = () => {
|
|
const { t } = useTranslation();
|
|
const router = useRouter();
|
|
const { invoiceTab = InvoiceTabEnum.bill } = router.query as { invoiceTab: `${InvoiceTabEnum}` };
|
|
|
|
const [isOpenInvoiceModal, setIsOpenInvoiceModal] = useState(false);
|
|
|
|
return (
|
|
<AccountContainer>
|
|
<Box p={['1rem', '2rem']}>
|
|
<Flex justifyContent={'space-between'} alignItems={'center'} pb={'0.75rem'}>
|
|
<FillRowTabs
|
|
list={[
|
|
{ label: t('account_bill:bill_record'), value: InvoiceTabEnum.bill },
|
|
{
|
|
label: t('account_bill:support_wallet_bill_tag_invoice'),
|
|
value: InvoiceTabEnum.invoice
|
|
},
|
|
{
|
|
label: t('account_bill:default_header'),
|
|
value: InvoiceTabEnum.invoiceHeader
|
|
}
|
|
]}
|
|
value={invoiceTab}
|
|
onChange={(e) => {
|
|
router.replace({
|
|
query: {
|
|
...router.query,
|
|
invoiceTab: e
|
|
}
|
|
});
|
|
}}
|
|
></FillRowTabs>
|
|
{invoiceTab !== InvoiceTabEnum.invoiceHeader && (
|
|
<Button variant={'primary'} px="0" onClick={() => setIsOpenInvoiceModal(true)}>
|
|
<Flex alignItems={'center'} px={'20px'}>
|
|
<Box px={'1.25rem'} py={'0.5rem'}>
|
|
{t('account_bill:support_wallet_invoicing')}
|
|
</Box>
|
|
</Flex>
|
|
</Button>
|
|
)}
|
|
</Flex>
|
|
<Box h={'100%'}>
|
|
{invoiceTab === InvoiceTabEnum.bill && <BillTable />}
|
|
{invoiceTab === InvoiceTabEnum.invoice && <InvoiceTable />}
|
|
{invoiceTab === InvoiceTabEnum.invoiceHeader && <InvoiceHeaderForm />}
|
|
</Box>
|
|
{isOpenInvoiceModal && (
|
|
<ApplyInvoiceModal
|
|
onClose={() => {
|
|
setIsOpenInvoiceModal(false);
|
|
}}
|
|
/>
|
|
)}
|
|
</Box>
|
|
</AccountContainer>
|
|
);
|
|
};
|
|
|
|
export async function getServerSideProps(content: any) {
|
|
return {
|
|
props: {
|
|
...(await serviceSideProps(content, ['account_bill', 'account']))
|
|
}
|
|
};
|
|
}
|
|
|
|
export default BillAndInvoice;
|