Browse Source

统计分析图形调整

wangxy
wangxy 2 years ago
parent
commit
2ce3c307a9
3 changed files with 13 additions and 5 deletions
  1. +1
    -1
      src/views/plan/workbench/homePage/formal/analysis/commonLineChart.vue
  2. +11
    -3
      src/views/plan/workbench/homePage/formal/analysis/index.vue
  3. +1
    -1
      src/views/plan/workbench/homePage/formal/analysis/lineBarChart.vue

+ 1
- 1
src/views/plan/workbench/homePage/formal/analysis/commonLineChart.vue View File

@ -1,5 +1,5 @@
<template> <template>
<div style="height:250px;width:100%;margin-top: 30px;" />
<div style="height:150px;width:100%;margin-top: 0px;" />
</template> </template>
<script> <script>


+ 11
- 3
src/views/plan/workbench/homePage/formal/analysis/index.vue View File

@ -1,6 +1,6 @@
<template> <template>
<div class="formal-analysis-container"> <div class="formal-analysis-container">
<el-row>
<el-row style="height: 100%;">
<el-col :span="4"> <el-col :span="4">
<div class="formal-search-wrap"> <div class="formal-search-wrap">
<el-form class="clearfix"> <el-form class="clearfix">
@ -59,7 +59,15 @@
</el-table> </el-table>
</div> </div>
</el-col> </el-col>
<el-col :span="allTheSingle === '2' ? 9 : 11">
<el-col :span="allTheSingle === '2' ? 16 : 20">
<div class="">
<CommonLineChart :dataList="dataList.PerCustomerDeviationDetailItem|| []" />
</div>
<div class="">
<LineBarChart :dataList="dataList.CustomerDeviationDetailItem || []" />
</div>
</el-col>
<!-- <el-col :span="allTheSingle === '2' ? 9 : 11">
<div class=""> <div class="">
<CommonLineChart :dataList="dataList.PerCustomerDeviationDetailItem|| []" /> <CommonLineChart :dataList="dataList.PerCustomerDeviationDetailItem|| []" />
</div> </div>
@ -68,7 +76,7 @@
<div class=""> <div class="">
<LineBarChart :dataList="dataList.CustomerDeviationDetailItem || []" /> <LineBarChart :dataList="dataList.CustomerDeviationDetailItem || []" />
</div> </div>
</el-col>
</el-col> -->
</el-row> </el-row>
</div> </div>
</template> </template>


+ 1
- 1
src/views/plan/workbench/homePage/formal/analysis/lineBarChart.vue View File

@ -1,5 +1,5 @@
<template> <template>
<div style="height:250px;width:100%;margin-top:30px;" />
<div style="height:150px;width:100%;margin-top:10px;" />
</template> </template>
<script> <script>


Loading…
Cancel
Save