fix: 修复 total_amount 类型转换问题

Coze-Commit-Type: user
Coze-User-ID: 3722323274763196
Coze-Conversation-ID: 9894087
This commit is contained in:
user9994793890
2026-07-13 14:31:13 +08:00
parent ce5431c753
commit d57776e11d
2 changed files with 1 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

View File

@@ -2228,7 +2228,7 @@
const configName = item.config_name || '-';
const splitValue = item.split_name || '-';
const totalOrders = item.total_orders || 0;
const totalAmount = item.total_amount ? item.total_amount.toFixed(2) : '0.00';
const totalAmount = item.total_amount ? parseFloat(item.total_amount).toFixed(2) : '0.00';
return `
<tr>