From 002207ca5633a180568edf1932926219728515fa Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期五, 28 十一月 2025 16:27:11 +0800
Subject: [PATCH] fix: bug
---
src/views/DataBoard/components/DataBoardDataInfoItem.vue | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/views/DataBoard/components/DataBoardDataInfoItem.vue b/src/views/DataBoard/components/DataBoardDataInfoItem.vue
index 5826b80..9f04cb2 100644
--- a/src/views/DataBoard/components/DataBoardDataInfoItem.vue
+++ b/src/views/DataBoard/components/DataBoardDataInfoItem.vue
@@ -7,7 +7,7 @@
>
<div class="data-board-data-info-item-label">{{ label }}</div>
<div class="data-board-data-info-item-value">
- <el-statistic :value="value" />
+ <el-statistic :value="_value" />
</div>
</div>
</template>
@@ -28,9 +28,9 @@
const value = defineModel<number>('value');
-// const _value = useTransition(value, {
-// duration: 500,
-// });
+const _value = useTransition(value, {
+ duration: 500,
+});
</script>
<style lang="scss" scoped>
--
Gitblit v1.9.1