|
@@ -39,25 +39,19 @@ export default {
|
|
|
},
|
|
|
mixins: [resize],
|
|
|
mounted() {
|
|
|
- this.getList()
|
|
|
+ this.initChart()
|
|
|
// 每隔30秒请求一次数据
|
|
|
- window.setInterval(() => {undefined
|
|
|
- setTimeout(() => {undefined
|
|
|
+ window.setInterval(() => {
|
|
|
+ setTimeout(() => {
|
|
|
///调取接口获取数据
|
|
|
- this.getList();
|
|
|
+ this.initChart();
|
|
|
}, 0)
|
|
|
}, 20000)
|
|
|
},
|
|
|
methods: {
|
|
|
- /** 查询dashboard抓取数据列表 */
|
|
|
- getList()
|
|
|
- {
|
|
|
- this.initChart();
|
|
|
- },
|
|
|
initChart() {
|
|
|
// 基于准备好的dom,初始化echarts实例
|
|
|
this.chart = this.echarts.init(document.getElementById("productProportion"));
|
|
|
-
|
|
|
this.chart.setOption({
|
|
|
color: [
|
|
|
"#37a2da",
|