| 12345678910111213141516171819202122232425262728 |
- <?php /*a:2:{s:68:"D:\phpEnv\www\Gong-Ying-Lian-API\app\admin\view\dashboard\index.html";i:1751886234;s:63:"D:\phpEnv\www\Gong-Ying-Lian-API\app\admin\view\layout\vue.html";i:1751866917;}*/ ?>
- 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;
- });
- },
- }
- }
|