| | |
| | | </span> |
| | | </el-dialog> |
| | | <!-- echarts组件--> |
| | | <div> |
| | | <div style="margin-top: 15px"> |
| | | <lineChart v-for="(item,index) in lineList" :key="index" :chartName="item.menuName" |
| | | :lineData="item.menuData"></lineChart> |
| | | <pieChart v-for="(item,index) in pieList" :key="index" :chartName="item.menuName" |
| | |
| | | import pieChart from "../../components/StatisticsComponent/pieChart" |
| | | import ColumnarChart from "../../components/StatisticsComponent/ColumnarChart" |
| | | import mixCart from "../../components/StatisticsComponent/mixCart" |
| | | |
| | | import {getStatisticAnalysis} from "@/api/statistic/chart" |
| | | export default { |
| | | components: { |
| | | lineChart, |
| | |
| | | //新增 |
| | | addHandler() { |
| | | this.addVisible = true; |
| | | getStatisticAnalysis({btmNames:'part'} ).then(res=>{ |
| | | console.log(res) |
| | | }) |
| | | }, |
| | | //取消 |
| | | escHandler() { |
| | |
| | | } |
| | | </script> |
| | | |
| | | <style scoped> |
| | | <style scoped lang="scss"> |
| | | |
| | | </style> |