diff --git a/src/pages/fin/expense-item/ExpenseItem.vue b/src/pages/fin/expense-item/ExpenseItem.vue
index 5a23144..4cbf305 100644
--- a/src/pages/fin/expense-item/ExpenseItem.vue
+++ b/src/pages/fin/expense-item/ExpenseItem.vue
@@ -14,26 +14,30 @@
-
-
+
+
+
+ {{ row.taxRate == null ? '-' : row.taxRate + ' %' }}
+
+
- {{ row.unitPrice == null ? '-' : row.unitPrice + (row.expenseStrategy === expenseStrategy.DanJia || row.expenseStrategy === expenseStrategy.TanXing ? `元/${unit.txt(row.unit)}` : `元`) }}
+ {{ row.unitPrice == null ? '-' : row.unitPrice + (row.expenseStrategy === expenseStrategy.DanJia || row.expenseStrategy === expenseStrategy.TanXing ? ` 元/${unit.txt(row.unit)}` : ` 元`) }}
- {{ row.initialPrice == null ? '-' : row.initialPrice + unit.txt(row.unit) }}
+ {{ row.expenseStrategy !== expenseStrategy.TanXing || row.initialPrice == null ? '-' : row.initialPrice + ' ' + unit.txt(row.unit) }}
- {{ row.initialQuantity == null ? '-' : row.initialQuantity + unit.txt(row.unit) }}
+ {{ row.expenseStrategy !== expenseStrategy.TanXing || row.initialQuantity == null ? '-' : row.initialQuantity + ' ' + unit.txt(row.unit) }}
- {{ row.everyQuantity == null ? '-' : row.everyQuantity + unit.txt(row.unit) }}
+ {{ row.expenseStrategy !== expenseStrategy.TanXing || row.everyQuantity == null ? '-' : row.everyQuantity + ' ' + unit.txt(row.unit) }}