You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jwl-applet/src/pages/questionBank/components/GradesChart.vue

92 lines
2.1 KiB

2 years ago
<template>
<view class="charts-box">
<qiun-data-charts
type="arcbar"
:opts="opts"
:chartData="chartData"
/>
</view>
</template>
<script>
export default {
2 years ago
props:{
color:{
type:String,
default:'#05C341'
},
titleName:{
type:String,
default:'80%'
},
actualValue:{
type:Number,
default:0.8
}
},
2 years ago
data() {
return {
chartData: {},
//您可以通过修改 config-ucharts.js 文件中下标为 ['arcbar'] 的节点来配置全局默认参数,如都是默认参数,此处可以不传 opts 。实际应用过程中 opts 只需传入与全局默认参数中不一致的【某一个属性】即可实现同类型的图表显示不同的样式,达到页面简洁的需求。
2 years ago
opts: {}
2 years ago
};
},
onReady() {
2 years ago
this.opts={
color: ["#1890FF","#91CB74","#FAC858","#EE6666","#73C0DE","#3CA272","#FC8452","#9A60B4","#ea7ccc"],
padding: undefined,
title: {
name: this.titleName,
fontSize: 35,
color: this.color
},
subtitle: {
name: "",
fontSize: 25,
color: this.color
},
extra: {
arcbar: {
type: "default",
width: 18,
backgroundColor: "#E9E9E9",
startAngle: 0.95,
endAngle: 0.05,
gap: 2
}
}
}
console.log(this.opts);
2 years ago
this.getServerData();
},
methods: {
getServerData() {
//模拟从服务器获取数据时的延时
setTimeout(() => {
//模拟服务器返回数据,如果数据格式和标准格式不同,需自行按下面的格式拼接
let res = {
series: [
{
name: "正确率",
2 years ago
color: this.color,
data: this.actualValue
2 years ago
}
]
};
this.chartData = JSON.parse(JSON.stringify(res));
}, 500);
},
}
};
</script>
<style scoped>
/* 请根据实际需求修改父元素尺寸,组件自动识别宽高 */
.charts-box {
width: 100%;
height: 346rpx;
background-color: #fdfdfd;
border-radius: 20rpx;
ppadding-top: 20rpx;
}
</style>