2023-04-06 20:20:00 +08:00

125 lines
3.4 KiB
Vue

<template>
<div class="fillingDegree">
<div class="item">
<canvas v-if="!fillDegreePath" class="fillDegree" canvas-id="fillDegree" id="fillDegree"/>
<image v-if="fillDegreePath" class="fillDegree" :src="fillDegreePath"></image>
</div>
</div>
</template>
<script>
import uCharts from '@/components/u-charts.js';
var uChartsInstance = {};
export default {
name: "fillingDegree",
data() {
return {
width:0,
fillDegreePath:''
}
},
props: {
data: {
type: Object,
default: () => {}
}
},
watch: {
data: {
handler(value) {
console.log('carDatawatch', value)
this.handleCarData(value)
},
immediate: true
}
},
methods: {
// 处理传入的数据
handleCarData(value) {
let res = value
this.drawCharts('fillDegree', res)
},
drawCharts(id, data) {
const ctx = uni.createCanvasContext(id, this);
let _this = this
let phoneInfo = uni.getStorageSync('phoneInfo')
this.width = phoneInfo.screenWidth - 32
uChartsInstance[id] = new uCharts({
type: "ring",
context: ctx,
width: _this.width,
height: 289,
series: data.series,
animation: false,
rotate: false,
rotateLock: false,
background: "#FFFFFF",
color: ["#1E80FF", "#00C2FF","#6B6FFF","#38C275","#F3BC1B","#ED6B5A","#FF9845","#74839D","#ACB9CD","#CAD0DA"],
padding: [5, 5, 5, 5],
dataLabel: true,
enableScroll: false,
title: {
name:'盈足',
fontSize: 16,
color: "#341D00"
},
legend: {
show: true,
position: "bottom",
lineHeight: 25,
float: 'left'
},
extra: {
ring: {
ringWidth: 20,
activeOpacity: 0.5,
activeRadius: 10,
offsetAngle: -45,
labelWidth: 15,
border: false,
borderWidth: 3,
borderColor: "#FFFFFF"
}
}
});
setTimeout( ()=>{
this.canvasToTempImage('fillDegree')
},2000)
},
canvasToTempImage(id){
uni.canvasToTempFilePath({
canvasId:id,
complete:(res)=>{
if (res.tempFilePath){
uni.getFileSystemManager().readFile({
filePath: res.tempFilePath,
encoding: 'base64',
success: res => {
let base64 = 'data:image/png;base64,' + res.data;
this.fillDegreePath = base64
}
})
}
}
},this)
},
}
}
</script>
<style scoped lang="scss">
.fillingDegree{
width: 100%;
margin-top: 12px;
.item{
width: 100%;
height: 280px;
.fillDegree{
width: 100%;
height: 100%;
}
}
}
</style>