diff --git a/src/views/iot-card/CardManagement/index.vue b/src/views/iot-card/CardManagement/index.vue
index 50435e0e..efb3d633 100644
--- a/src/views/iot-card/CardManagement/index.vue
+++ b/src/views/iot-card/CardManagement/index.vue
@@ -193,11 +193,11 @@
{{
- (
- (slotProps.usedFlow /
+ slotProps.totalFlow ? (
+ (slotProps.usedFlow /
slotProps.totalFlow) *
100
- ).toFixed(2)
+ ).toFixed(2) : '0.00'
}}
%
@@ -209,9 +209,9 @@
:strokeColor="'#ADC6FF'"
:showInfo="false"
:percent="
- (slotProps.usedFlow /
+ slotProps.totalFlow ? (slotProps.usedFlow /
slotProps.totalFlow) *
- 100
+ 100 : 0
"
/>