shawko 475955660d
Some checks failed
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / Lint (ubuntu-latest) (push) Has been cancelled
CI / Lint (windows-latest) (push) Has been cancelled
CI / Check (ubuntu-latest) (push) Has been cancelled
CI / Check (windows-latest) (push) Has been cancelled
CI / CI OK (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
Deploy Website on push / Deploy Push Playground Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Docs Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Antd Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Element Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Naive Ftp (push) Has been cancelled
Deploy Website on push / Rerun on failure (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
Lock Threads / action (push) Has been cancelled
Issue Close Require / close-issues (push) Has been cancelled
Close stale issues / stale (push) Has been cancelled
‘add第一次提交’
2026-05-09 16:58:26 +08:00

53 lines
1.3 KiB
Vue

<script lang="ts" setup>
import type { EchartsUIType } from '@vben/plugins/echarts'
import { onMounted, ref } from 'vue'
import { EchartsUI, useEcharts } from '@vben/plugins/echarts'
const props = defineProps({
chartDetail: {
type: Object,
default: () => {},
},
})
const chartRef = ref<EchartsUIType>()
const { renderEcharts } = useEcharts(chartRef)
onMounted(() => {
renderEcharts({
series: [
{
animationDelay() {
return Math.random() * 400
},
animationEasing: 'exponentialInOut',
animationType: 'scale',
center: ['50%', '50%'],
color: ['#5ab1ef', '#b6a2de', '#67e0e3', '#2ec7c9'],
data: [
{ name: '未提交', value: props.chartDetail?.status0Count || 0 },
{ name: '已提交', value: props.chartDetail?.status1Count || 0 },
{ name: '已批改', value: props.chartDetail?.status2Count || 0 },
// { name: '远程', value: props.chartDetail?.remoteCount || 0 },
].sort((a, b) => {
return a.value - b.value
}),
name: '提交情况',
radius: '80%',
roseType: 'radius',
type: 'pie',
},
],
tooltip: {
trigger: 'item',
},
})
})
</script>
<template>
<EchartsUI ref="chartRef" />
</template>