Browse Source

地图柱状图

master
parent
commit
690f9404a2
  1. 2
      src/views/screen/compenonts/leftwrapper.vue
  2. 157
      src/views/screen/compenonts/map.vue
  3. 6
      src/views/screen/compenonts/tabber.vue

2
src/views/screen/compenonts/leftwrapper.vue

@ -94,7 +94,7 @@ const row1Options = ref({
} }
}, },
{ {
name: '主要任务类型占比', name: '任务类型占比',
type: 'scatter', type: 'scatter',
data: [100, 90, 10, 90, 90, 20, 56, 89], data: [100, 90, 10, 90, 90, 20, 56, 89],
symbol: symbol:

157
src/views/screen/compenonts/map.vue

@ -134,7 +134,7 @@ const mapOption: any = ref({
fontWeight: 'bold', fontWeight: 'bold',
fontSize: 14, fontSize: 14,
fontStyle: 'italic', fontStyle: 'italic',
formatter: (v) => { formatter: () => {
return `AQI 25` return `AQI 25`
} }
}, },
@ -321,7 +321,10 @@ const initMap = () => {
color: '#fff', color: '#fff',
fontSize: 10 fontSize: 10
}, },
data: [dataItem.name] nameTextStyle: {
color: '#fff'
},
data: [dataItem.name, '']
}) })
//y //y
mapOption.value.yAxis.push({ mapOption.value.yAxis.push({
@ -366,12 +369,53 @@ const initMap = () => {
itemStyle: { itemStyle: {
color: '#56ca00' color: '#56ca00'
}, },
label: { label: {
show: true, show: true,
position: 'top', position: 'top',
color: '#fff' color: '#fff'
}, },
data: [value1] data: [
{
value: value1,
itemStyle: {
color: 'rgba(251, 233, 71, 1)'
}
},
{
value: value2,
itemStyle: {
color: 'rgba(88, 215, 100, 1)'
}
}
]
})
mapOption.value.series.push({
name: `${dataItem.name}1`,
type: 'pictorialBar',
coordinateSystem: 'cartesian2d',
xAxisIndex: idx,
yAxisIndex: idx,
symbolSize: [6,3],
symbolOffset: [0, -1],
symbolPosition: 'end',
symbol: 'circle',
label: {
show: false,
},
data: [
{
value: value1,
itemStyle: {
color: 'rgba(251, 233, 71, 1)'
}
},
{
value: value2,
itemStyle: {
color: 'rgba(88, 215, 100, 1)'
}
}
]
}) })
mapOption.value.series.push({ mapOption.value.series.push({
name: `${dataItem.name}2`, name: `${dataItem.name}2`,
@ -381,17 +425,88 @@ const initMap = () => {
yAxisIndex: idx, yAxisIndex: idx,
zLevel: 3, zLevel: 3,
barWidth: 6, barWidth: 6,
itemStyle: {
color: '#ffe700',
fontSize:10,
},
label: { label: {
show: true, show: false,
position: 'top', position: 'top',
color: '#fff' color: '#fff'
}, },
data: [value2] barGap: '-100%',
data: [
{
value: 100,
itemStyle: {
color: 'rgba(251, 233, 71, .2)'
}
},
{
value: 100,
itemStyle: {
color: 'rgba(88, 215, 100, .2)'
}
}
]
})
mapOption.value.series.push({
name: `${dataItem.name}3`,
type: 'pictorialBar',
coordinateSystem: 'cartesian2d',
xAxisIndex: idx,
yAxisIndex: idx,
symbolPosition: 'end',
symbol: 'circle',
zLevel: 3,
label: {
show: false,
},
symbolSize: [6,3],
symbolOffset: [0, -1],
barGap: '-100%',
data: [
{
value: 100,
itemStyle: {
color: 'rgba(251, 233, 71, .2)'
}
},
{
value: 100,
itemStyle: {
color: 'rgba(88, 215, 100, .2)'
}
}
]
})
mapOption.value.series.push({
name: `${dataItem.name}3`,
type: 'pictorialBar',
coordinateSystem: 'cartesian2d',
xAxisIndex: idx,
yAxisIndex: idx,
zLevel: 3,
symbolPosition: 'end',
symbol: 'circle',
label: {
show: false,
},
barGap: '-100%',
symbolSize: [6,3],
symbolOffset: [0, -1],
data: [
{
value: 0,
itemStyle: {
color: 'rgba(251, 233, 71, 1)'
}
},
{
value: 0,
itemStyle: {
color: 'rgba(88, 215, 100, 1)'
}
}
]
}) })
}) })
} }
@ -411,6 +526,7 @@ onUnmounted(() => {
position: relative; position: relative;
width: 100%; width: 100%;
height: 100%; height: 100%;
&::before { &::before {
content: ''; content: '';
position: absolute; position: absolute;
@ -421,6 +537,7 @@ onUnmounted(() => {
background-position: center; background-position: center;
//animation: rotate 5s linear infinite; //animation: rotate 5s linear infinite;
} }
&::after { &::after {
content: ''; content: '';
position: absolute; position: absolute;
@ -431,6 +548,7 @@ onUnmounted(() => {
background-position: center; background-position: center;
//animation: rotate 5s linear infinite; //animation: rotate 5s linear infinite;
} }
.map { .map {
position: absolute; position: absolute;
inset: 0; inset: 0;
@ -438,35 +556,41 @@ onUnmounted(() => {
flex-flow: column nowrap; flex-flow: column nowrap;
padding: 12px; padding: 12px;
} }
.air-quality { .air-quality {
position: absolute; position: absolute;
left: 12px; left: 12px;
top: 0; top: 0;
} }
.nomr-box { .nomr-box {
position: absolute; position: absolute;
right: 12px; right: 12px;
top: 50%; top: 50%;
transform: translateY(-50%); transform: translateY(-50%);
} }
.weather { .weather {
position: absolute; position: absolute;
left: 50%; left: 50%;
top: 0; top: 0;
transform: translateX(-50%); transform: translateX(-50%);
} }
.num-box { .num-box {
position: absolute; position: absolute;
right: 12px; right: 12px;
top: 0; top: 0;
} }
.tabber-box { .tabber-box {
position: absolute; position: absolute;
left: 50%; left: 50%;
bottom: 0; bottom: 0;
transform: translateX(-50%); transform: translateX(-50%);
z-index: 2; z-index: 3;
} }
.block-box { .block-box {
border: 1px solid rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.15);
background: rgba(255, 255, 255, 0.02); background: rgba(255, 255, 255, 0.02);
@ -474,13 +598,16 @@ onUnmounted(() => {
z-index: 2; z-index: 2;
} }
} }
@keyframes rotate { @keyframes rotate {
from { from {
transform: rotateX(0deg) rotateZ(0); transform: rotateX(0deg) rotateZ(0);
} }
50% { 50% {
transform: rotateX(-30deg) rotateZ(30deg); transform: rotateX(-30deg) rotateZ(30deg);
} }
to { to {
transform: rotateX(0deg) rotateZ(0deg); transform: rotateX(0deg) rotateZ(0deg);
} }

6
src/views/screen/compenonts/tabber.vue

@ -17,6 +17,7 @@
v-for="(item, index) in tabberList" v-for="(item, index) in tabberList"
:key="index" :key="index"
@click="curTab = index" @click="curTab = index"
style="padding: 12px 16px;"
> >
{{ item }} {{ item }}
</section> </section>
@ -50,16 +51,15 @@ const curTab = ref(0)
flex-flow: row nowrap; flex-flow: row nowrap;
gap: 8px; gap: 8px;
width: fit-content; width: fit-content;
font-size: 12px;
.item { .item {
font-size: 1rem;
padding: 6px; padding: 6px;
white-space: nowrap; white-space: nowrap;
border: 1px solid rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.15);
transition: .2s all; transition: .2s all;
} }
.type-item{ .type-item{
font-size: 1rem; padding: 6px 16px;
padding: 8px;
white-space: nowrap; white-space: nowrap;
border: 1px solid rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.15);
transition: .2s all; transition: .2s all;

Loading…
Cancel
Save