Browse Source

update src/views/mall/statistics/product/components/ProductSummary.vue.
商品统计计数显示有问题,数量显示成价格了

Signed-off-by: 山野羡民 <liyujiang_tk@yeah.net>

山野羡民 9 months ago
parent
commit
2101731f0b
1 changed files with 12 additions and 12 deletions
  1. 12 12
      src/views/mall/statistics/product/components/ProductSummary.vue

+ 12 - 12
src/views/mall/statistics/product/components/ProductSummary.vue

@@ -26,9 +26,9 @@
           icon="ep:view"
           icon="ep:view"
           icon-color="bg-blue-100"
           icon-color="bg-blue-100"
           icon-bg-color="text-blue-500"
           icon-bg-color="text-blue-500"
-          prefix=""
-          :decimals="2"
-          :value="fenToYuan(trendSummary?.value?.browseCount || 0)"
+          prefix=""
+          :decimals="0"
+          :value="trendSummary?.value?.browseCount || 0"
           :percent="
           :percent="
             calculateRelativeRate(
             calculateRelativeRate(
               trendSummary?.value?.browseCount,
               trendSummary?.value?.browseCount,
@@ -44,9 +44,9 @@
           icon="ep:user-filled"
           icon="ep:user-filled"
           icon-color="bg-purple-100"
           icon-color="bg-purple-100"
           icon-bg-color="text-purple-500"
           icon-bg-color="text-purple-500"
-          prefix=""
-          :decimals="2"
-          :value="fenToYuan(trendSummary?.value?.browseUserCount || 0)"
+          prefix=""
+          :decimals="0"
+          :value="trendSummary?.value?.browseUserCount || 0"
           :percent="
           :percent="
             calculateRelativeRate(
             calculateRelativeRate(
               trendSummary?.value?.browseUserCount,
               trendSummary?.value?.browseUserCount,
@@ -62,9 +62,9 @@
           icon="fa-solid:money-check-alt"
           icon="fa-solid:money-check-alt"
           icon-color="bg-yellow-100"
           icon-color="bg-yellow-100"
           icon-bg-color="text-yellow-500"
           icon-bg-color="text-yellow-500"
-          prefix=""
-          :decimals="2"
-          :value="fenToYuan(trendSummary?.value?.orderPayCount || 0)"
+          prefix=""
+          :decimals="0"
+          :value="trendSummary?.value?.orderPayCount || 0"
           :percent="
           :percent="
             calculateRelativeRate(
             calculateRelativeRate(
               trendSummary?.value?.orderPayCount,
               trendSummary?.value?.orderPayCount,
@@ -98,9 +98,9 @@
           icon="fa-solid:wallet"
           icon="fa-solid:wallet"
           icon-color="bg-cyan-100"
           icon-color="bg-cyan-100"
           icon-bg-color="text-cyan-500"
           icon-bg-color="text-cyan-500"
-          prefix=""
-          :decimals="2"
-          :value="fenToYuan(trendSummary?.value?.afterSaleCount || 0)"
+          prefix=""
+          :decimals="0"
+          :value="trendSummary?.value?.afterSaleCount || 0"
           :percent="
           :percent="
             calculateRelativeRate(
             calculateRelativeRate(
               trendSummary?.value?.afterSaleCount,
               trendSummary?.value?.afterSaleCount,