| 营业收入 (GMV) |
{{ dailyOrders }}单 × 30天 × {{ aov }}元 |
{{ Math.round(monthlyGMV).toLocaleString() }} |
{{ aov.toFixed(2) }} |
100.0% |
| 毛利额 |
GMV × 毛利率 ({{ grossMargin }}%) |
{{ Math.round(monthlyGrossProfit).toLocaleString() }} |
{{ (monthlyGrossProfit / monthlyOrders).toFixed(2) }} |
{{ grossMargin.toFixed(1) }}% |
| 减:商品进货成本 |
GMV × (1 - {{ grossMargin }}%) |
{{ Math.round(cogs).toLocaleString() }} |
{{ (cogs / monthlyOrders).toFixed(2) }} |
{{ (100 - grossMargin).toFixed(1) }}% |
| 减:配送成本 |
{{ monthlyOrders.toLocaleString() }}单 × {{ deliveryCost }}元 |
{{ Math.round(totalDeliveryCost).toLocaleString() }} |
{{ deliveryCost.toFixed(2) }} |
{{ (totalDeliveryCost / monthlyGMV * 100).toFixed(1) }}% |
| 减:平台抽佣 |
GMV × {{ platformRate }}% |
{{ Math.round(totalCommission).toLocaleString() }} |
{{ (totalCommission / monthlyOrders).toFixed(2) }} |
{{ platformRate.toFixed(1) }}% |
| 减:包装耗材 |
{{ monthlyOrders.toLocaleString() }}单 × {{ packagingCost }}元 |
{{ Math.round(totalPackaging).toLocaleString() }} |
{{ packagingCost.toFixed(2) }} |
{{ (totalPackaging / monthlyGMV * 100).toFixed(1) }}% |
| 减:月度人力成本 |
固定方案 |
{{ laborCost.toLocaleString() }} |
{{ (laborCost / monthlyOrders).toFixed(2) }} |
{{ (laborCost / monthlyGMV * 100).toFixed(1) }}% |
| 减:固定开支成本 |
房租/折旧/水电/杂费 |
{{ totalFixedCost.toLocaleString() }} |
{{ (totalFixedCost / monthlyOrders).toFixed(2) }} |
{{ (totalFixedCost / monthlyGMV * 100).toFixed(1) }}% |
| 月净利润 (Net Profit) |
收入 - 变动成本 - 人力 - 固定成本 |
{{ Math.round(netProfit).toLocaleString() }} |
{{ profitPerOrder.toFixed(2) }} |
{{ (netProfit / monthlyGMV * 100).toFixed(1) }}% |