Commit 941401b8 authored by peco's avatar peco

fix: 解决部分机型进度条显示不全的问题

parent b7d9ea83
...@@ -36,12 +36,13 @@ ...@@ -36,12 +36,13 @@
inited(canvas, width, height, canvasDpr) { inited(canvas, width, height, canvasDpr) {
var scale = 1.0 var scale = 1.0
const { windowWidth } = uni.getSystemInfoSync() const { windowWidth } = uni.getSystemInfoSync()
if (windowWidth < 330) { console.log('window width is : ', windowWidth)
scale = 1.1 if (windowWidth < 400) {
scale = 1.25
} }
chart = this.$echarts.init(canvas, null, { chart = this.$echarts.init(canvas, null, {
width: width * scale, width: width * scale,
height: height, height: height * scale,
devicePixelRatio: canvasDpr devicePixelRatio: canvasDpr
}) })
canvas.setChart(chart) canvas.setChart(chart)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment