diff --git a/src/PagesStatistics/businessOverview.vue b/src/PagesStatistics/businessOverview.vue
index dba2a6e..32077f2 100644
--- a/src/PagesStatistics/businessOverview.vue
+++ b/src/PagesStatistics/businessOverview.vue
@@ -22,7 +22,7 @@
{{ item.name }}:{{ item.isBefore ? item.unit : "" }} {{ formatMoney(item.num, 0) }}
+ >{{ item.isBefore ? item.unit : "" }} {{ formatMoney(item.num, item.decimal) }}
{{ item.isBefore ? "" : item.unit }}
@@ -33,7 +33,7 @@
{{ item.name }}:
{{ item.isBefore ? item.unit : "" }} {{ formatMoney(item.num, 0) }}
+ >{{ item.isBefore ? item.unit : "" }} {{ formatMoney(item.num, item.decimal) }}
{{ item.isBefore ? "" : item.unit }}
@@ -43,7 +43,7 @@
{{ item.name }}:{{ item.isBefore ? item.unit : "" }} {{ formatMoney(item.num, 0)}}
+ >{{ item.isBefore ? item.unit : "" }} {{ formatMoney(item.num, item.decimal)}}
{{ item.isBefore ? "" : item.unit }}
@@ -117,6 +117,7 @@ const gridList1 = reactive([
num: "",
unit: "¥",
isBefore: true,
+ decimal: 2,
},
{
name: "出货收入",
@@ -124,6 +125,7 @@ const gridList1 = reactive([
num: "",
unit: "¥",
isBefore: true,
+ decimal: 2,
},
{
name: "其他收入",
@@ -131,6 +133,7 @@ const gridList1 = reactive([
num: "",
unit: "¥",
isBefore: true,
+ decimal: 2,
},
{},
{
@@ -139,6 +142,7 @@ const gridList1 = reactive([
num: "",
unit: "¥",
isBefore: true,
+ decimal: 2,
},
{
name: "收货支出",
@@ -146,6 +150,7 @@ const gridList1 = reactive([
num: "",
unit: "¥",
isBefore: true,
+ decimal: 2,
},
{
name: "其他支出",
@@ -153,6 +158,7 @@ const gridList1 = reactive([
num: "",
unit: "¥",
isBefore: true,
+ decimal: 2,
},
{
name: "杂费支出",
@@ -160,6 +166,7 @@ const gridList1 = reactive([
num: "",
unit: "¥",
isBefore: true,
+ decimal: 2,
},
{
name: "运费支出",
@@ -167,6 +174,7 @@ const gridList1 = reactive([
num: "",
unit: "¥",
isBefore: true,
+ decimal: 2,
},
]);
const gridList2 = reactive([