|
|
@@ -636,7 +636,7 @@ onUnmounted(() => {
|
|
|
<div v-show="activePanel === 'detail'" class="inventory-detail-layout">
|
|
|
<section class="inventory-detail-section">
|
|
|
<div class="inventory-detail-section__title">存货及变动情况</div>
|
|
|
- <el-table :data="detailTableData" border class="inventory-detail-table" height="100%">
|
|
|
+ <el-table :data="detailTableData" border class="inventory-detail-table">
|
|
|
<el-table-column
|
|
|
prop="beginningInventory"
|
|
|
label="年初存货"
|
|
|
@@ -661,7 +661,7 @@ onUnmounted(() => {
|
|
|
</section>
|
|
|
<section class="inventory-detail-section">
|
|
|
<div class="inventory-detail-section__title">账龄分析</div>
|
|
|
- <el-table :data="detailTableData" border class="inventory-detail-table" height="100%">
|
|
|
+ <el-table :data="detailTableData" border class="inventory-detail-table">
|
|
|
<el-table-column prop="withinOneYear" label="1年以内" min-width="82" align="center" />
|
|
|
<el-table-column prop="oneToTwoYears" label="1-2年" min-width="74" align="center" />
|
|
|
<el-table-column prop="twoToThreeYears" label="2-3年" min-width="74" align="center" />
|
|
|
@@ -737,7 +737,7 @@ onUnmounted(() => {
|
|
|
}
|
|
|
|
|
|
:deep(th.el-table__cell) {
|
|
|
- padding: calc(5px * var(--kb-scale, 1)) 0;
|
|
|
+ padding: calc(3px * var(--kb-scale, 1)) 0;
|
|
|
color: #073f8e;
|
|
|
font-size: calc(13px * var(--kb-scale, 1));
|
|
|
font-weight: 700;
|
|
|
@@ -752,7 +752,7 @@ onUnmounted(() => {
|
|
|
}
|
|
|
|
|
|
:deep(td.el-table__cell) {
|
|
|
- padding: calc(8px * var(--kb-scale, 1)) 0;
|
|
|
+ padding: calc(4px * var(--kb-scale, 1)) 0;
|
|
|
color: #1d2f46;
|
|
|
font-size: calc(13px * var(--kb-scale, 1));
|
|
|
border-color: rgb(31 91 184 / 20%);
|
|
|
@@ -790,7 +790,7 @@ onUnmounted(() => {
|
|
|
}
|
|
|
|
|
|
.inventory-detail-section .inventory-detail-table {
|
|
|
- flex: 1;
|
|
|
+ flex: none;
|
|
|
}
|
|
|
|
|
|
::v-deep .el-table {
|