fix(我的工作台): ui样式修改

--user=郭雨琦
This commit is contained in:
guoyuqi 2022-05-18 19:31:10 +08:00 committed by f2c-ci-robot[bot]
parent fb9f992b60
commit 42435874f8
1 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,5 @@
<template>
<ms-chart v-if="visible && pieData.length > 0" :options="options" :autoresize ="true" style="width: 100%"/>
<ms-chart v-if="visible && pieData.length > 0" :options="options" :autoresize ="true" :height="height" style="width: 100%"/>
</template>
<script>
@ -74,6 +74,9 @@ export default {
default() {
return []
}
},
height:{
type: [Number, String],
}
}
}