mirror of
https://github.com/labring/FastGPT.git
synced 2025-12-25 20:02:47 +00:00
bill detail modal
This commit is contained in:
parent
e02e969fbe
commit
844c18d393
|
|
@ -9,6 +9,7 @@
|
|||
"confirm_logout": "Confirm to log out?",
|
||||
"create_channel": "Add new channel",
|
||||
"create_model": "Add new model",
|
||||
"custom_domain": "Custom Domain",
|
||||
"custom_model": "custom model",
|
||||
"default_model": "Default model",
|
||||
"default_model_config": "Default model configuration",
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@
|
|||
"create_channel": "新增渠道",
|
||||
"create_model": "新增模型",
|
||||
"custom_config_details": "定制配置详情",
|
||||
"custom_domain": "自定义域名",
|
||||
"custom_model": "自定义模型",
|
||||
"day": "天",
|
||||
"default_model": "预设模型",
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@
|
|||
"create_channel": "新增管道",
|
||||
"create_model": "新增模型",
|
||||
"custom_config_details": "定制配置詳情",
|
||||
"custom_domain": "自定義域名",
|
||||
"custom_model": "自訂模型",
|
||||
"day": "天",
|
||||
"default_model": "預設模型",
|
||||
|
|
@ -114,4 +115,4 @@
|
|||
"website_sync_per_dataset": "站點同步最大頁數",
|
||||
"yes": "是",
|
||||
"yuan": "{{amount}}元"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -109,6 +109,13 @@ const BillDetailModal = ({ billId, onClose }: BillDetailModalProps) => {
|
|||
unit: 'h'
|
||||
});
|
||||
}
|
||||
if (config.customDomain !== undefined) {
|
||||
items.push({
|
||||
key: i18nT('account:custom_domain'),
|
||||
value: config.customDomain,
|
||||
unit: ''
|
||||
});
|
||||
}
|
||||
|
||||
return items;
|
||||
}, [bill?.couponDetail?.subscriptions]);
|
||||
|
|
|
|||
Loading…
Reference in New Issue