mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
fix: chart & qrcode demo error
This commit is contained in:
parent
df0cf9f72b
commit
fad054e8df
@ -92,7 +92,7 @@ export function useEcharts(el: Ref<HTMLElement | null>, chartOptions: Ref<ECOpti
|
|||||||
|
|
||||||
function update(updateOptions: ECOption) {
|
function update(updateOptions: ECOption) {
|
||||||
if (isRendered.value)
|
if (isRendered.value)
|
||||||
chart!.setOption({ ...updateOptions, backgroundColor: 'transparent' })
|
chart!.setOption({ ...updateOptions })
|
||||||
}
|
}
|
||||||
|
|
||||||
function destroy() {
|
function destroy() {
|
||||||
|
@ -6,3 +6,9 @@
|
|||||||
.v-x-scroll {
|
.v-x-scroll {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* 解决二维码尺寸问题 */
|
||||||
|
.n-qr-code{
|
||||||
|
height: unset !important;
|
||||||
|
width: unset !important;;
|
||||||
|
}
|
||||||
|
@ -7,6 +7,7 @@ const pieOptions = ref<ECOption>({
|
|||||||
title: {
|
title: {
|
||||||
text: '饼图',
|
text: '饼图',
|
||||||
},
|
},
|
||||||
|
backgroundColor: 'transparent',
|
||||||
color: [
|
color: [
|
||||||
'#37a2da',
|
'#37a2da',
|
||||||
'#32c5e9',
|
'#32c5e9',
|
||||||
@ -53,15 +54,36 @@ const pieOptions = ref<ECOption>({
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
}) as Ref<ECOption>
|
})
|
||||||
const pieRef = ref<HTMLElement | null>(null)
|
const pieRef = ref<HTMLElement | null>(null)
|
||||||
useEcharts(pieRef, pieOptions)
|
const { update } = useEcharts(pieRef, pieOptions)
|
||||||
|
|
||||||
|
const randomValue = () => Math.round(Math.random() * 100)
|
||||||
|
function updatePieChart() {
|
||||||
|
pieOptions.value.series = [
|
||||||
|
{
|
||||||
|
data: [
|
||||||
|
{ value: randomValue(), name: 'rose1' },
|
||||||
|
{ value: randomValue(), name: 'rose2' },
|
||||||
|
{ value: randomValue(), name: 'rose3' },
|
||||||
|
{ value: randomValue(), name: 'rose4' },
|
||||||
|
{ value: randomValue(), name: 'rose5' },
|
||||||
|
{ value: randomValue(), name: 'rose6' },
|
||||||
|
{ value: randomValue(), name: 'rose7' },
|
||||||
|
{ value: randomValue(), name: 'rose8' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
]
|
||||||
|
|
||||||
|
update(pieOptions.value)
|
||||||
|
}
|
||||||
|
|
||||||
// 折线图
|
// 折线图
|
||||||
const lineOptions = ref<ECOption>({
|
const lineOptions = ref<ECOption>({
|
||||||
title: {
|
title: {
|
||||||
text: '折线图',
|
text: '折线图',
|
||||||
},
|
},
|
||||||
|
backgroundColor: 'transparent',
|
||||||
tooltip: {
|
tooltip: {
|
||||||
trigger: 'axis',
|
trigger: 'axis',
|
||||||
axisPointer: {
|
axisPointer: {
|
||||||
@ -245,7 +267,7 @@ const lineOptions = ref<ECOption>({
|
|||||||
data: [820, 932, 901, 934, 1290, 1330, 1320],
|
data: [820, 932, 901, 934, 1290, 1330, 1320],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
}) as Ref<ECOption>
|
})
|
||||||
const lineRef = ref<HTMLElement | null>(null)
|
const lineRef = ref<HTMLElement | null>(null)
|
||||||
useEcharts(lineRef, lineOptions)
|
useEcharts(lineRef, lineOptions)
|
||||||
|
|
||||||
@ -254,6 +276,7 @@ const barOptions = ref<ECOption>({
|
|||||||
title: {
|
title: {
|
||||||
text: '柱状图',
|
text: '柱状图',
|
||||||
},
|
},
|
||||||
|
backgroundColor: 'transparent',
|
||||||
tooltip: {},
|
tooltip: {},
|
||||||
grid: {
|
grid: {
|
||||||
top: '8%',
|
top: '8%',
|
||||||
@ -386,7 +409,7 @@ const barOptions = ref<ECOption>({
|
|||||||
data: [200, 382, 102, 267, 186, 315, 316],
|
data: [200, 382, 102, 267, 186, 315, 316],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
}) as Ref<ECOption>
|
})
|
||||||
const barRef = ref<HTMLElement | null>(null)
|
const barRef = ref<HTMLElement | null>(null)
|
||||||
useEcharts(barRef, barOptions)
|
useEcharts(barRef, barOptions)
|
||||||
|
|
||||||
@ -395,6 +418,7 @@ const radarOptions = ref<ECOption>({
|
|||||||
title: {
|
title: {
|
||||||
text: 'Multiple Radar',
|
text: 'Multiple Radar',
|
||||||
},
|
},
|
||||||
|
backgroundColor: 'transparent',
|
||||||
tooltip: {},
|
tooltip: {},
|
||||||
legend: {
|
legend: {
|
||||||
left: 'center',
|
left: 'center',
|
||||||
@ -480,7 +504,7 @@ const radarOptions = ref<ECOption>({
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
}) as Ref<ECOption>
|
})
|
||||||
const radarRef = ref<HTMLElement | null>(null)
|
const radarRef = ref<HTMLElement | null>(null)
|
||||||
useEcharts(radarRef, radarOptions)
|
useEcharts(radarRef, radarOptions)
|
||||||
</script>
|
</script>
|
||||||
@ -491,6 +515,9 @@ useEcharts(radarRef, radarOptions)
|
|||||||
:size="16"
|
:size="16"
|
||||||
>
|
>
|
||||||
<n-card>
|
<n-card>
|
||||||
|
<n-button @click="updatePieChart">
|
||||||
|
手动更新图表
|
||||||
|
</n-button>
|
||||||
<div
|
<div
|
||||||
ref="pieRef"
|
ref="pieRef"
|
||||||
class="h-400px"
|
class="h-400px"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user