|
|
@@ -28,7 +28,7 @@
|
|
|
<template slot="content">
|
|
|
<div style="display: flex;justify-content: space-between" :style="{height:heightDiv}">
|
|
|
<div ref="statisticsOfCustomerChart" :style="{height: heightChart}"></div>
|
|
|
- <div style="width: 70%" :style="{height: heightDiv}">
|
|
|
+ <div :style="{height: heightDiv,width:windowWidth > 1646 ? '70%' : '50%'}">
|
|
|
<tableDetail :layout="tablecols" :data="tableList" :opwidth="200" :custom="true" fixed-name="operation" :height="heightTable">
|
|
|
<template v-slot:customcol="scope">
|
|
|
<div v-if="scope.column.columnname === 'tag'">
|
|
|
@@ -75,6 +75,7 @@ import {Pie} from "@antv/g2plot";
|
|
|
import fullScreen from "@/views/salesData/components/fullScreen";
|
|
|
export default {
|
|
|
name: "statisticsOfCustomer",
|
|
|
+ props:['windowWidth'],
|
|
|
components:{dataTemPlate,btnSelect,fullScreen,
|
|
|
drawerTemp:() => import('@/components/normal-basic-layout/drawerDetail/index')},
|
|
|
data() {
|