87 lines
1.5 KiB
Vue
87 lines
1.5 KiB
Vue
<template>
|
|
<ChartCard margin="30rpx 0 30rpx 0" title="领导级安全检查数">
|
|
<view class="big-crisis" @click="router.push('/pages/quality/leader/index')">
|
|
<qiun-data-charts type="column" :opts="opts" :canvas2d="false" :chartData="chartData" @getIndex="handleTap" />
|
|
</view>
|
|
</ChartCard>
|
|
</template>
|
|
|
|
<script setup>
|
|
import ChartCard from '@/components/chartCard.vue';
|
|
import { ref, watch } from 'vue';
|
|
import { router } from '@/utils';
|
|
let props = defineProps({
|
|
qualityProblemData: {
|
|
type: Array,
|
|
default: () => []
|
|
},
|
|
qualityProblemDatas: {
|
|
type: Array,
|
|
default: () => []
|
|
}
|
|
});
|
|
|
|
const opts = ref({
|
|
padding: [15, 15, 0, 5],
|
|
enableScroll: false,
|
|
legend: {
|
|
show: true
|
|
},
|
|
xAxis: {
|
|
disableGrid: true
|
|
},
|
|
yAxis: {
|
|
data: [
|
|
{
|
|
min: 0
|
|
}
|
|
]
|
|
},
|
|
extra: {
|
|
column: {
|
|
type: 'group',
|
|
width: 20,
|
|
activeBgColor: '#000000',
|
|
activeBgOpacity: 0.08,
|
|
seriesGap:3
|
|
}
|
|
}
|
|
});
|
|
|
|
const chartData = ref({});
|
|
|
|
const handleTap = (e) => {
|
|
console.log(e);
|
|
};
|
|
watch(
|
|
() => props.qualityProblemData,
|
|
(newVal) => {
|
|
if (newVal && newVal.length) {
|
|
// 只有当数据存在时才赋值
|
|
let res = {
|
|
categories: ['集团检查数', '企业检查数', '分支机构检查数'],
|
|
series: [
|
|
{
|
|
name: '总数',
|
|
data: newVal
|
|
},
|
|
{
|
|
name: '未完成',
|
|
data: props.qualityProblemDatas
|
|
}
|
|
]
|
|
};
|
|
chartData.value = JSON.parse(JSON.stringify(res));
|
|
}
|
|
},
|
|
{ deep: true, immediate: true }
|
|
);
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.big-crisis {
|
|
width: 100%;
|
|
height: 400rpx;
|
|
}
|
|
</style>
|