bill detail modal

This commit is contained in:
heheer 2025-12-09 14:25:43 +08:00
parent e02e969fbe
commit 844c18d393
No known key found for this signature in database
GPG Key ID: 37DCB43201661540
4 changed files with 11 additions and 1 deletions

View File

@ -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",

View File

@ -14,6 +14,7 @@
"create_channel": "新增渠道",
"create_model": "新增模型",
"custom_config_details": "定制配置详情",
"custom_domain": "自定义域名",
"custom_model": "自定义模型",
"day": "天",
"default_model": "预设模型",

View File

@ -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}}元"
}
}

View File

@ -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]);