mirror of
https://github.com/songquanpeng/one-api.git
synced 2025-09-29 14:46:38 +08:00
12 lines
305 B
JavaScript
12 lines
305 B
JavaScript
export const priceType = [
|
|
{ value: 'tokens', label: '按Token收费' },
|
|
{ value: 'times', label: '按次收费' }
|
|
];
|
|
|
|
export function ValueFormatter(value) {
|
|
if (value == null) {
|
|
return '';
|
|
}
|
|
return `$${parseFloat(value * 0.002).toFixed(4)} / ¥${parseFloat(value * 0.014).toFixed(4)}`;
|
|
}
|