This commit is contained in:
13713575202 2025-04-30 14:29:59 +08:00
commit 4319058cd5
5 changed files with 225 additions and 79 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -7,7 +7,7 @@ import { cloneDeep } from 'lodash';
import { useEcharts } from '@/hooks/useEcharts'; import { useEcharts } from '@/hooks/useEcharts';
export default { export default {
name: 'customEchartWaterDroplet', name: 'CustomEchartWaterDroplet',
props: { props: {
chartData: { chartData: {
type: Array, type: Array,

View File

@ -171,10 +171,14 @@ const handleCommand = (data) => {
top: 50%; top: 50%;
transform: translateY(-50%); transform: translateY(-50%);
z-index: 2; z-index: 2;
border: 1px solid $color-custom-main;
border-radius: 4px;
padding: 6px;
text-align: center; text-align: center;
white-space: nowrap;
.el-dropdown {
border: 1px solid $color-custom-main;
padding: 6px;
border-radius: 4px;
}
} }
} }
</style> </style>

View File

@ -1,38 +1,65 @@
<template> <template>
<div class="business"> <div class="business">
<custom-echart-water-droplet width="100%" height="100%" :option="option" /> <div class="business-left">
<custom-echart-water-droplet width="100%" height="100%" :option="state.option" />
<div class="business-title">证件齐全率</div>
</div>
<div class="business-right">
<div class="business-title">临期预警</div>
<ul class="business-info">
<li class="success">
<b>正常</b>
<span>253</span>
</li>
<li class="warning">
<b>临期</b>
<span>5</span>
</li>
<li class="danger">
<b>已过期</b>
<span>0</span>
</li>
</ul>
</div>
</div> </div>
</template> </template>
<script setup> <script setup>
import { ref } from 'vue'; import { reactive, ref, watch } from 'vue';
let percent = ref(0.6); import { isEmpty } from '@/utils';
const option = ref({
const props = defineProps({
data: {
type: Object,
default: () => {},
},
});
const state = reactive({
option: {
backgroundColor: 'transparent', // backgroundColor: 'transparent', //
series: [ series: [
{ {
name: '预估量', name: '',
type: 'liquidFill', type: 'liquidFill',
radius: '80%', radius: '80%',
center: ['50%', '50%'], center: ['50%', '50%'],
backgroundStyle: { backgroundStyle: {
color: 'transparent', color: 'transparent',
}, },
data: [percent.value, percent.value], data: [],
amplitude: 12, // amplitude: 12, //
label: { label: {
//
position: ['50%', '45%'], position: ['50%', '45%'],
formatter: percent.value * 100 + '%', //, // formatter: 0.3998 * 100 + '%', //,
textStyle: { textStyle: {
fontSize: '20px', //, fontSize: '20px', //,
color: '#fff', color: '#fff',
}, },
}, },
outline: { outline: {
borderDistance: 3, borderDistance: 2,
itemStyle: { itemStyle: {
borderWidth: 1, borderWidth: 2,
borderColor: { borderColor: {
type: 'linear', type: 'linear',
x: 1, x: 1,
@ -42,15 +69,15 @@ const option = ref({
colorStops: [ colorStops: [
{ {
offset: 0, offset: 0,
color: 'rgba(255, 255, 255, 0.8)', color: 'rgba(71, 202, 219, 0.5)',
}, },
{ {
offset: 0.6, offset: 0.6,
color: 'rgba(255, 255, 255, 0.8)', color: 'rgba(45, 209, 185, 0.5)',
}, },
{ {
offset: 1, offset: 1,
color: 'rgba(255, 255, 255, 0.8)', color: 'rgba(13, 204, 163, 0.5)',
}, },
], ],
globalCoord: false, globalCoord: false,
@ -65,14 +92,119 @@ const option = ref({
x2: 0, x2: 0,
y2: 1, y2: 1,
colorStops: [ colorStops: [
{ offset: 0, color: '#45bfe9' }, { offset: 0, color: 'rgba(13, 204, 163, 0.6)' },
{ offset: 1, color: '#01589c' }, { offset: 1, color: 'rgba(71, 202, 219, 1)' },
], ],
global: false, // false global: false, // false
}, },
}, },
}, },
], ],
},
}); });
watch(
() => props.data,
(val) => {
if (!isEmpty(val)) {
state.option.series[0].data = [0, val.percent];
state.option.series[0].label.formatter = val.percent * 100 + '%';
}
},
{
deep: true,
immediate: true,
}
);
</script> </script>
<style lang="scss" scoped></style> <style lang="scss" scoped>
.business {
width: 100%;
height: 100%;
@include flex-row();
&-title {
width: 160px;
margin: 0 auto;
height: 32px;
line-height: 32px;
font-size: 16px;
font-weight: 400;
text-align: center;
color: #ffffff;
text-shadow: 2px 0px 10px 0px #01eeff;
background: url('@/assets/images/business/bg_title.png');
background-repeat: no-repeat;
background-size: contain;
text-shadow:
0 0 10px #01eeff,
0 0 20px #01eeff,
0 0 30px #01eeff,
0 0 40px #01eeff;
}
&-left,
&-right {
@include flex-column();
flex: 1;
}
&-info {
width: 100%;
@include flex-column();
text-align: center;
li {
@include flex-column();
font-size: 16px;
font-weight: 400;
color: #fff;
margin-top: 16px;
b {
margin-bottom: 10px;
&::before {
display: inline-block;
content: '';
width: 12px;
height: 12px;
border-radius: 6px;
margin-right: 10px;
}
}
&.success {
span {
color: #02fd94;
}
b {
&::before {
background-color: #02fd94;
}
}
}
&.warning {
span {
color: #fef906;
}
b {
&::before {
background-color: #fef906;
}
}
}
&.danger {
span {
color: #fc0003;
}
b {
&::before {
background-color: #fc0003;
}
}
}
}
}
}
</style>

View File

@ -9,7 +9,23 @@
</customBack> </customBack>
</div> </div>
<div class="left-charts-item"> <div class="left-charts-item">
<customBack top-title="生产经营主体数量" :top-postion="'left'"> <customBack
top-title="生产经营主体数量"
:top-postion="'left'"
:down-title="'农资企业'"
:label-field="'label'"
:value-field="'value'"
:down-width="'100px'"
:options="[
{ value: 1, label: '农企/合作社' },
{ value: 2, label: '农资企业' },
{ value: 3, label: '种源企业' },
{ value: 4, label: '生产加工企业' },
{ value: 5, label: '农户' },
]"
:is-down="true"
@command="handleCommand"
>
<template #back> <template #back>
<businessTwo :data="state.data.two" :query="state.queryCode" /> <businessTwo :data="state.data.two" :query="state.queryCode" />
</template> </template>
@ -111,18 +127,12 @@ const loadData = async () => {
{ value: 150, name: '2024' }, { value: 150, name: '2024' },
{ value: 80, name: '2025' }, { value: 80, name: '2025' },
], ],
four: [ four: {
{ value: 58.9, label: '灌溉水田' }, percent: 0.3998,
{ value: 56.1, label: '基地地' }, success: 253,
{ value: 60.8, label: '望天田' }, warning: 5,
{ value: 60.6, label: '水浇地' }, danger: 0,
{ value: 32.6, label: '林地' }, },
{ value: 25.8, label: '育苗地' },
{ value: 56.0, label: '果园' },
{ value: 52.4, label: '草地' },
{ value: 6.3, label: '观测用地' },
{ value: 6.1, label: '监测用地' },
],
five: [ five: [
{ name: '耿马镇', value: 87.84 }, { name: '耿马镇', value: 87.84 },
{ name: '勐撒镇', value: 60.7 }, { name: '勐撒镇', value: 60.7 },