|
@@ -7,7 +7,10 @@
|
|
|
<TitleInfo :content="titleList[0]"></TitleInfo>
|
|
|
</div>
|
|
|
<div>
|
|
|
- <CustomerInfo :customerId="customerId" :key="customerId"></CustomerInfo>
|
|
|
+ <CustomerInfo
|
|
|
+ :customerId="customerId"
|
|
|
+ :key="customerId"
|
|
|
+ ></CustomerInfo>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -17,7 +20,10 @@
|
|
|
<TitleInfo :content="titleList[1]"></TitleInfo>
|
|
|
</div>
|
|
|
<div class="content-box">
|
|
|
- <LatestProgress :customerId="customerId" :key="customerId"></LatestProgress>
|
|
|
+ <LatestProgress
|
|
|
+ :customerId="customerId"
|
|
|
+ :key="customerId"
|
|
|
+ ></LatestProgress>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -29,7 +35,10 @@
|
|
|
<TitleInfo :content="titleList[2]"></TitleInfo>
|
|
|
</div>
|
|
|
<div class="content-box">
|
|
|
- <SaleStatistics :customerId="customerId" :key="customerId"></SaleStatistics>
|
|
|
+ <SaleStatistics
|
|
|
+ :customerId="customerId"
|
|
|
+ :key="customerId"
|
|
|
+ ></SaleStatistics>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -49,7 +58,10 @@
|
|
|
<TitleInfo :content="titleList[4]"></TitleInfo>
|
|
|
</div>
|
|
|
<div class="content-box">
|
|
|
- <SalesDetails :customerId="customerId" :key="customerId"></SalesDetails>
|
|
|
+ <SalesDetails
|
|
|
+ :customerId="customerId"
|
|
|
+ :key="customerId"
|
|
|
+ ></SalesDetails>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -88,6 +100,7 @@ onMounted(() => {
|
|
|
margin-bottom: 10px;
|
|
|
min-height: 300px;
|
|
|
box-sizing: border-box;
|
|
|
+ overflow: auto;
|
|
|
}
|
|
|
.bottom {
|
|
|
flex: 1;
|