Edit file: src/views/invoice/management/index.vue
undefined
**Chunk 1**
Lines added: 5, lines removed: 2
```diff
@@ -67,10 +67,13 @@
可开票金额:
- ¥{{ statisticsData.availableAmount }}
+ ¥{{
+ formatAmount(statisticsData.availableAmount)
+ }}
已开票金额:
- ¥{{ statisticsData.invoicedAmount }}
+ ¥{{
+ formatAmount(statisticsData.invoicedAmount) }}
```
---
现在添加金额格式化函数:
---