From 92921431668181fb6d3387368c751ccc40aba8cf Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期五, 28 十一月 2025 17:14:32 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/dev-dataBoard'
---
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