diff --git a/pages/index/index.vue b/pages/index/index.vue
index 7882b02..09dd28e 100644
--- a/pages/index/index.vue
+++ b/pages/index/index.vue
@@ -1,150 +1,100 @@
-
-
-
-
@@ -158,7 +108,7 @@
},
data() {
return {
- flag:false
+ flag: true
}
},
methods: {
@@ -166,19 +116,38 @@
let _this = this
const option = {
+ grid: {
+ left: 0,
+ right: 0,
+ top: 10,
+ bottom: 0,
+ containLabel: true,
+ },
xAxis: {
type: 'category',
- data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
+ data: ['Mon', '', 'Wed', '', 'Fri', '', 'Sun']
},
yAxis: {
type: 'value',
- boundaryGap: ['10%', '20%',]
+ min: 0,
+ max: 100,
+ interval: 20,
+ axisLabel: {
+ formatter: '{value}%'
+ }
},
series: [{
- data: [120, 200, 150, 80, 70, 110, 130],
- type: 'bar'
+ data: [90, 45, 66, 82, 37, 65, 40],
+ type: 'bar',
+ itemStyle: {
+ normal: {
+ color: '#2D7CE6',
+ barBorderRadius: [5, 5, 0, 0] // 设置四个角的半径,都为10像素
+ }
+ }
}]
- }
+ };
+
const chart = await this.$refs.chart.init(echarts);
chart.setOption(option)
@@ -189,280 +158,224 @@
}
-
+
\ No newline at end of file