2026-03-25 14:54:15 +08:00
|
|
|
<template>
|
2026-03-27 16:01:49 +08:00
|
|
|
<ChartCard margin="30rpx 0 0 0" title="QC活动数">
|
2026-03-25 14:54:15 +08:00
|
|
|
<view class="inspection ">
|
2026-03-26 14:49:26 +08:00
|
|
|
<qiun-data-charts type="column" :canvas2d="false" :opts="opts" :chartData="chartData" @getIndex="handleTap" />
|
2026-03-25 14:54:15 +08:00
|
|
|
</view>
|
|
|
|
|
</ChartCard>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
|
import ChartCard from '@/components/chartCard.vue'
|
|
|
|
|
import {
|
2026-03-26 14:49:26 +08:00
|
|
|
ref,onMounted
|
2026-03-25 14:54:15 +08:00
|
|
|
} from 'vue';
|
|
|
|
|
|
|
|
|
|
const opts = ref({
|
|
|
|
|
padding: [15, 15, 0, 5],
|
|
|
|
|
enableScroll: false,
|
|
|
|
|
legend: {show: false},
|
|
|
|
|
xAxis: {
|
|
|
|
|
disableGrid: true
|
|
|
|
|
},
|
|
|
|
|
yAxis: {
|
|
|
|
|
showTitle: true,
|
|
|
|
|
data: [{
|
|
|
|
|
title: "单位:项"
|
|
|
|
|
}]
|
|
|
|
|
},
|
|
|
|
|
extra: {
|
|
|
|
|
column: {
|
|
|
|
|
type: "group",
|
|
|
|
|
width: 30,
|
|
|
|
|
activeBgColor: "#000000",
|
|
|
|
|
activeBgOpacity: 0.08,
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
const chartData = ref({})
|
|
|
|
|
|
|
|
|
|
const handleTap = (e) => {
|
|
|
|
|
console.log(e)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2026-03-26 14:49:26 +08:00
|
|
|
onMounted(() => {
|
2026-03-25 14:54:15 +08:00
|
|
|
let res = {
|
2026-03-27 16:01:49 +08:00
|
|
|
categories: ["省部级奖数量", "集团级奖项数量", "企业级奖项数量"],
|
2026-03-25 14:54:15 +08:00
|
|
|
series: [{
|
|
|
|
|
color: "#27c9cb",
|
|
|
|
|
name: '',
|
|
|
|
|
data: [100, 542, 685]
|
|
|
|
|
},
|
|
|
|
|
]
|
|
|
|
|
};
|
|
|
|
|
chartData.value = JSON.parse(JSON.stringify(res));
|
|
|
|
|
})
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
.inspection {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 300rpx;
|
|
|
|
|
}
|
|
|
|
|
</style>
|