export default{ data:{ echarts:'', panel:[], list:[], box:[], material:[] }, onLoad:function (){ Yunqi.use('/assets/js/echarts.min.js').then(res=>{ this.echarts=res; this.parseData(); }); }, methods:{ parseData:function (){ Yunqi.ajax.get('dashboard/index',{}).then(res=>{ this.panel=res.panel; this.list=res.variety; this.box=res.box; this.material=res.material; }); }, } }