Vue3统计数值(Statistic)

可自定义设置以下属性:

  • 数值的标题(title),类型:string | slot,默认:‘’
  • 数值的内容(value),类型:string | number,默认:‘’
  • 设置数值的样式(valueStyle),类型:CSSProperties,默认:{}
  • 数值精度(precision),类型:number,默认:0
  • 设置数值的前缀(prefix),类型:string | slot,默认:‘’
  • 设置数值的后缀(suffix),类型:string | slot,默认:‘’
  • 设置千分位标识符(separator),类型:string,默认:‘,’
  • 自定义数值展示(formatter),类型:Function,默认:(value: string) => value

效果如下图:

在这里插入图片描述
在这里插入图片描述

创建统计数值组件Statistic.vue

<script setup lang="ts">
import { ref, computed, onMounted } from 'vue'
import type { CSSProperties } from 'vue'
import { moneyFormat } from '../index'
interface Props {title?: string // 数值的标题 string | slotvalue?: string|number // 数值的内容valueStyle?: CSSProperties // 设置数值的样式precision?: number //	数值精度prefix?: string // 设置数值的前缀 string | slotsuffix?: string // 设置数值的后缀 string | slotseparator?: string // 设置千分位标识符formatter?: Function // 自定义数值展示
}
const props = withDefaults(defineProps<Props>(), {title: '',value: '',valueStyle: () => { return {} },precision: 0,prefix: '',suffix: '',separator: ',',formatter: (value: string) => value
})
const showValue = computed(() => {return props.formatter(moneyFormat(props.value, props.precision, props.separator))
})
const prefixRef = ref() // 声明一个同名的模板引用
const showPrefix = ref(1)
const suffixRef = ref() // 声明一个同名的模板引用
const showSuffix = ref(1)
onMounted(() => {showPrefix.value = prefixRef.value.offsetHeightshowSuffix.value = suffixRef.value.offsetHeight
})
</script>
<template><div class="m-statistic"><div class="u-title"><slot name="title">{{ title }}</slot></div><div class="m-content" :style="valueStyle"><span ref="prefixRef" class="u-prefix" v-if="showPrefix"><slot name="prefix">{{ prefix }}</slot></span><span class="u-content-value">{{ showValue }}</span><span ref="suffixRef" class="u-suffix" v-if="showSuffix"><slot name="suffix">{{ suffix }}</slot></span></div></div>
</template>
<style lang="less" scoped>
.m-statistic {font-size: 14px;color: rgba(0, 0, 0, 0.88);line-height: 1.5714285714285714;.u-title {margin-bottom: 4px;color: rgba(0, 0, 0, 0.45);font-size: 14px;}.m-content {color: rgba(0, 0, 0, 0.88);font-size: 24px;.u-prefix {display: inline-block;margin-inline-end: 4px;}.u-content-value {display: inline-block;direction: ltr;}.u-suffix {display: inline-block;margin-inline-start: 4px;}}
}
</style>

在要使用的页面引入

其中引入使用了 Vue3栅格(Grid) Vue3卡片(Card)

<script setup lang="ts">
import Statistic from './Statistic.vue'
function formatter (value: string): string {console.log('value', value)return '1年有 ' + value + ' 天'
}
</script>
<template><div><h1>Statistic 统计数值</h1><h2 class="mt30 mb10">基本使用</h2><Row><Col :span="12"><Statistic title="Active Users" :value="112893" /></Col><Col :span="12"><Statistic title="Account Balance (CNY)" :precision="2" :value="112893" /></Col></Row><h2 class="mt30 mb10">添加前缀和后缀</h2><Row :gutter="16"><Col :span="12"><Statistic title="Feedback" :value="1128"><template #suffix><svg focusable="false" class="u-svg" data-icon="like" width="1em" height="1em" fill="currentColor" aria-hidden="true" viewBox="64 64 896 896"><path d="M885.9 533.7c16.8-22.2 26.1-49.4 26.1-77.7 0-44.9-25.1-87.4-65.5-111.1a67.67 67.67 0 00-34.3-9.3H572.4l6-122.9c1.4-29.7-9.1-57.9-29.5-79.4A106.62 106.62 0 00471 99.9c-52 0-98 35-111.8 85.1l-85.9 311H144c-17.7 0-32 14.3-32 32v364c0 17.7 14.3 32 32 32h601.3c9.2 0 18.2-1.8 26.5-5.4 47.6-20.3 78.3-66.8 78.3-118.4 0-12.6-1.8-25-5.4-37 16.8-22.2 26.1-49.4 26.1-77.7 0-12.6-1.8-25-5.4-37 16.8-22.2 26.1-49.4 26.1-77.7-.2-12.6-2-25.1-5.6-37.1zM184 852V568h81v284h-81zm636.4-353l-21.9 19 13.9 25.4a56.2 56.2 0 016.9 27.3c0 16.5-7.2 32.2-19.6 43l-21.9 19 13.9 25.4a56.2 56.2 0 016.9 27.3c0 16.5-7.2 32.2-19.6 43l-21.9 19 13.9 25.4a56.2 56.2 0 016.9 27.3c0 22.4-13.2 42.6-33.6 51.8H329V564.8l99.5-360.5a44.1 44.1 0 0142.2-32.3c7.6 0 15.1 2.2 21.1 6.7 9.9 7.4 15.2 18.6 14.6 30.5l-9.6 198.4h314.4C829 418.5 840 436.9 840 456c0 16.5-7.2 32.1-19.6 43z"></path></svg></template></Statistic></Col><Col :span="12"><Statistic title="Unmerged" :value="90"><template #suffix><span>%</span></template></Statistic></Col></Row><h2 class="mt30 mb10">在卡片中使用</h2><div style="width: 425px; background: #ececec; padding: 30px"><Row :gutter="16"><Col :span="12"><Card><Statistictitle="Feedback":value="11.28":precision="2"suffix="%":value-style="{ color: '#3f8600' }"style="margin-right: 50px"><template #prefix><svg focusable="false" class="u-svg" data-icon="arrow-up" width="1em" height="1em" fill="currentColor" aria-hidden="true" viewBox="64 64 896 896"><path d="M868 545.5L536.1 163a31.96 31.96 0 00-48.3 0L156 545.5a7.97 7.97 0 006 13.2h81c4.6 0 9-2 12.1-5.5L474 300.9V864c0 4.4 3.6 8 8 8h60c4.4 0 8-3.6 8-8V300.9l218.9 252.3c3 3.5 7.4 5.5 12.1 5.5h81c6.8 0 10.5-8 6-13.2z"></path></svg></template></Statistic></Card></Col><Col :span="12"><Card><Statistictitle="Idle":value="9.3":precision="2"suffix="%"class="demo-class":value-style="{ color: '#cf1322' }"><template #prefix><svg focusable="false" class="u-svg" data-icon="arrow-down" width="1em" height="1em" fill="currentColor" aria-hidden="true" viewBox="64 64 896 896"><path d="M862 465.3h-81c-4.6 0-9 2-12.1 5.5L550 723.1V160c0-4.4-3.6-8-8-8h-60c-4.4 0-8 3.6-8 8v563.1L255.1 470.8c-3-3.5-7.4-5.5-12.1-5.5h-81c-6.8 0-10.5 8.1-6 13.2L487.9 861a31.96 31.96 0 0048.3 0L868 478.5c4.5-5.2.8-13.2-6-13.2z"></path></svg></template></Statistic></Card></Col></Row></div><h2 class="mt30 mb10">自定义数值样式</h2><Statistictitle="Worth":value="1600000":value-style="{ color: '#3f8600' }"prefix="$"suffix="/ 天" /><h2 class="mt30 mb10">设置数值精度</h2><Statistictitle="Precision":value="100000000.1":precision="2" /><h2 class="mt30 mb10">自定义千分位标识符</h2><Statistictitle="Precision":value="100000000.1"separator=";":precision="3" /><h2 class="mt30 mb10">自定义数值展示</h2><Statistictitle="Formatter":value="365":value-style="{ color: '#1677ff' }":formatter="formatter" /></div>
</template>
<style lang="less" scoped>
.u-svg {display: inline-flex;align-items: center;color: inherit;text-align: center;vertical-align: -0.125em;
}
</style>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/27385.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【程序人生】如何在工作中保持稳定的情绪?

前言 在工作中保持稳定的情绪是现代生活中一个备受关注的话题。随着职场压力和工作挑战的增加&#xff0c;我们常常发现自己情绪波动不定&#xff0c;甚至受到负面情绪的困扰。然而&#xff0c;保持稳定的情绪对于我们的工作效率、人际关系和整体幸福感都至关重要。 无论你是…

Delete `␍`eslint(prettier/prettier)报错的终极解决方案

1.背景 在进行代码仓库clone打开后&#xff0c;vscode报错全屏的 Delete ␍eslint(prettier/prettier)问题 原因是因为&#xff1a; 罪魁祸首是git的一个配置属性&#xff1a; 由于历史原因&#xff0c;windows下和linux下的文本文件的换行符不一致。* Windows在换行的时候&…

Spring 框架——事件驱动模型

目录 1.概述2.三种角色2.1.事件角色2.2.事件监听者角色2.3.事件发布者角色 3.示例 1.概述 &#xff08;1&#xff09;Spring 事件驱动模型是 Spring 框架中的一种编程模型&#xff0c;也被称为发布/订阅模型&#xff0c;通过使用观察者模式和事件机制&#xff0c;实现了组件之…

优化CSS重置过程:探索CSS层叠技术的应用与优势

目录 下面是正文~~ CSS重置方法 方法的结合 合并方法的问题 通用移除样式 顺序很重要 CSS 优先级 我们的CSS特异性冲突 CSS Layers 来拯救 Sass 预处理器支持 浏览器支持 总结 这篇文章介绍了一种名为CSS层叠的技术&#xff0c;用于优化CSS重置过程。它解释了CSS重…

re学习(18)[ACTF新生赛2020]rome1(Z3库+window远程调试)

参考视频: Jamiexu793的个人空间-Jamiexu793个人主页-哔哩哔哩视频 代码分析&#xff1a; 其主要内容在两个while循环中&#xff08;从定义中可知flag位16个字符&#xff09;。 看第二个循环&#xff0c;可知是比较result和经过第一个循环得到的v1比较&#xff08;就是flag…

免费使用Elasticsearch官网15天

注册登录 点击创建索引时候会给你展示一个密钥。这个密钥就是你的用户密码 如下图 你的服务地址大致样式如下 https://huihai.es.us-central1.gcp.cloud.es.io 这里需要你输入用户密码,上面图4&#xff08;图中&#xff09;&#xff0c;下载时候的用户密码 登录完成 这样就能…

使用docker的常见bug

BUG1&#xff1a;磁盘被占满导致docker无法使用 docker ps 【查看docker能否正常使用】 正常的话会打印下图信息: 不正常的话打印如下图信息&#xff1a; journalctl -u docker 【查看docker无法正常使用的原因】&#xff0c;本次测试中遇到下图bug&#xff0c;意思是/var/l…

Flutter 跳转应用市场评分——超简洁实现

最近在做flutter跳转去应用市场评分的功能&#xff0c;虽然是一个很小的功能&#xff0c;但是要做的既简单又高效&#xff0c;同时又能把细节考虑到&#xff0c;还是有坑要走的&#xff0c;这边记录一下。 背景 做应用市场相关的运营&#xff0c;在app内增加评分引导&#xf…

前端学习——JS进阶 (Day3)

编程思想 面向过程编程 面向对象编程 (oop) 构造函数 <!DOCTYPE html> <html lang"en"><head><meta charset"UTF-8"><meta http-equiv"X-UA-Compatible" content"IEedge"><meta name"viewport…

python+allure+jenkins

目录 前言 在 python 中使用 allure 1. 安装 pytest 2. 安装 pytest-allure-adaptor 3. 使用 pytest 执行测试用例并生成 allure 中间报告&#xff08;此步骤可以省略&#xff0c;因为在 jenkins job 中会配置执行类似的命令&#xff09; 4. Jenkins 中安装Allure Jenkin…

行业追踪,2023-07-17,静待减速器macd反转

自动复盘 2023-07-17 凡所有相&#xff0c;皆是虚妄。若见诸相非相&#xff0c;即见如来。 k 线图是最好的老师&#xff0c;每天持续发布板块的rps排名&#xff0c;追踪板块&#xff0c;板块来开仓&#xff0c;板块去清仓&#xff0c;丢弃自以为是的想法&#xff0c;板块去留让…

Spring源码学习-核心注解,架构以及整体流程

目录 核心注解核心组件接口分析基础接口ResourceResourceLoaderResourceResourceLoader BeanFactory结构解析图示核心的子接口 BeanDefinition加载注册流程(xml形式的) BeanDefinitionReaderBeanDefinitionRegistryApplicationContext类结构图示结构解析 Aware接口类图xxAware是…