✨(component): progress进度组件 新增环形进度条选项
#I5CB05 ISSUES CLOSED: #I5CB05
This commit is contained in:
parent
c6e70e54b9
commit
cd43b3803a
@ -38,3 +38,16 @@
|
|||||||
padding: 0 10px;
|
padding: 0 10px;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
.lay-progress-circle {
|
||||||
|
position: relative;
|
||||||
|
display: inline-block;
|
||||||
|
width: 120px;
|
||||||
|
height: 120px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.lay-progress-circle__text {
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
}
|
@ -15,6 +15,7 @@ export interface LayProgressProps {
|
|||||||
size?: string;
|
size?: string;
|
||||||
showText?: boolean;
|
showText?: boolean;
|
||||||
text?: string;
|
text?: string;
|
||||||
|
circle?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
const props = defineProps<LayProgressProps>();
|
const props = defineProps<LayProgressProps>();
|
||||||
@ -27,10 +28,78 @@ const styles = computed(() => {
|
|||||||
},
|
},
|
||||||
];
|
];
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const getStrokeDasharray = computed(() => {
|
||||||
|
let percent;
|
||||||
|
if (typeof props.percent == "string") {
|
||||||
|
percent = parseInt(props.percent);
|
||||||
|
} else {
|
||||||
|
percent = props.percent;
|
||||||
|
}
|
||||||
|
return `${percent * 31.4}` + "px 3140px";
|
||||||
|
});
|
||||||
|
|
||||||
|
const getCircleColor = computed(() => {
|
||||||
|
let color;
|
||||||
|
switch (props.theme) {
|
||||||
|
case "red":
|
||||||
|
color = "#ff5722";
|
||||||
|
break;
|
||||||
|
case "orange":
|
||||||
|
color = "#ffb800";
|
||||||
|
break;
|
||||||
|
case "green":
|
||||||
|
color = "#009688";
|
||||||
|
break;
|
||||||
|
case "cyan":
|
||||||
|
color = "#2f4056";
|
||||||
|
break;
|
||||||
|
case "blue":
|
||||||
|
color = "#1e9fff";
|
||||||
|
break;
|
||||||
|
case "black":
|
||||||
|
color = "#393d49";
|
||||||
|
break;
|
||||||
|
case "gray":
|
||||||
|
color = "#fafafa";
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
color = "var(--global-checked-color)";
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
color = props.color ? props.color : color;
|
||||||
|
return color;
|
||||||
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="layui-progress" :class="'layui-progress-' + size">
|
<template v-if="circle">
|
||||||
|
<div class="lay-progress-circle">
|
||||||
|
<svg viewBox="0 0 1060 1060">
|
||||||
|
<path
|
||||||
|
d="M 530 530 m 0, -500 a 500, 500 0 1, 1 0, 1000 a 500, 500 0 1, 1 0, -1000"
|
||||||
|
style="
|
||||||
|
fill: none;
|
||||||
|
stroke-width: 50px;
|
||||||
|
stroke: var(--global-neutral-color-3);
|
||||||
|
"
|
||||||
|
></path>
|
||||||
|
<path
|
||||||
|
d="M 530 530 m 0, -500 a 500, 500 0 1, 1 0, 1000 a 500, 500 0 1, 1 0, -1000"
|
||||||
|
style="
|
||||||
|
stroke-width: 51px;
|
||||||
|
fill: none;
|
||||||
|
stroke-linecap: round;
|
||||||
|
"
|
||||||
|
:style="{ strokeDasharray: getStrokeDasharray,stroke:getCircleColor }"
|
||||||
|
></path>
|
||||||
|
</svg>
|
||||||
|
<div class="lay-progress-circle__text" v-if="showText">
|
||||||
|
{{ text ? text : percent + "%" }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<div class="layui-progress" :class="'layui-progress-' + size" v-else>
|
||||||
<div
|
<div
|
||||||
class="layui-progress-bar"
|
class="layui-progress-bar"
|
||||||
:class="'layui-bg-' + theme"
|
:class="'layui-bg-' + theme"
|
||||||
|
@ -119,6 +119,31 @@ export default {
|
|||||||
|
|
||||||
:::
|
:::
|
||||||
|
|
||||||
|
::: title 环形进度条
|
||||||
|
:::
|
||||||
|
::: demo
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<lay-progress percent="70" circle :show-text="showText" style="margin-right:10px"></lay-progress>
|
||||||
|
<lay-progress percent="60" circle :show-text="showText" text="销售量"></lay-progress>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { ref } from 'vue'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
setup() {
|
||||||
|
|
||||||
|
const showText = ref(true)
|
||||||
|
|
||||||
|
return {
|
||||||
|
showText
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
:::
|
||||||
|
|
||||||
::: title Progress 属性
|
::: title Progress 属性
|
||||||
:::
|
:::
|
||||||
|
|
||||||
@ -132,6 +157,7 @@ export default {
|
|||||||
| text | 提示 | -- |
|
| text | 提示 | -- |
|
||||||
| color | 颜色 | -- |
|
| color | 颜色 | -- |
|
||||||
| showText | 展示描述 | -- |
|
| showText | 展示描述 | -- |
|
||||||
|
|circle | 环形进度条| 默认为 `false` |
|
||||||
|
|
||||||
:::
|
:::
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user