fix: 修复 total_amount 类型转换问题
Coze-Commit-Type: user Coze-User-ID: 3722323274763196 Coze-Conversation-ID: 9894087
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user