forked from WeBankFinTech/Scriptis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.vue
More file actions
41 lines (40 loc) · 1.08 KB
/
index.vue
File metadata and controls
41 lines (40 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<template>
<div
class="circle-progress"
:style="{'width': width, 'height': height}">
<svg viewBox="0 0 104 104">
<path
d="M 52 52 m 0 -47 a 47 47 0 1 1 0 94 a 47 47 0 1 1 0 -94"
class="circle-progress__track">
</path>
<path
d="M 52 52 m 0 -47 a 47 47 0 1 1 0 94 a 47 47 0 1 1 0 -94"
class="circle-progress__path"
:style="{'stroke-dashoffset': (1-percent)*299.08+'px'}">
</path>
</svg>
<span class="circle-progress__perent">{{ formattedPercent }}%</span>
<span class="circle-progress__text">{{ used }}{{ suffixe }}/{{ max }}{{ suffixe }}</span>
<span class="circle-progress__title">{{ title }}</span>
</div>
</template>
<script>
export default {
props: {
percent: Number,
used: String,
max: String,
suffixe: String,
title: String,
width: String,
height: String,
},
computed: {
formattedPercent() {
return (this.percent * 100).toFixed(0);
},
},
};
</script>
<style lang="scss" src="./index.scss">
</style>