From 8a331158e5453f8d3a06cbe26a1a7b3c7cc207ba Mon Sep 17 00:00:00 2001
From: ll <1079863556@qq.com>
Date: Thu, 5 Mar 2026 11:29:31 +0800
Subject: [PATCH] =?UTF-8?q?=E5=A5=B6=E5=93=81=E7=AE=A1=E7=90=86=E9=94=80?=
=?UTF-8?q?=E5=94=AE=E7=AE=A1=E7=90=86=E5=9B=BA=E5=AE=9A=E8=A1=A8=E5=A4=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../dryMatterCorrection/index.vue | 92 ++++--
.../freshMilkTest/freshMilkTest/index.vue | 268 ++++++++++--------
.../milkInOutStore/milkInOutStore/index.vue | 90 ++++--
.../milkProdclasses/milkProdclasses/index.vue | 76 +++--
.../dairyProducts/parityCorrection/index.vue | 61 +++-
.../rawMilkTest/rawMilkTest/index.vue | 117 +++++---
.../dairyProducts/sheepMilkAnalysis/index.vue | 51 +++-
.../dairyProducts/weightCorrection/index.vue | 84 ++++--
.../yogurtTest/yogurtTest/index.vue | 267 +++++++++--------
src/views/sale/customer/index.vue | 93 ++++--
.../sale/saleRecord/saleRecord/index.vue | 143 ++++++----
11 files changed, 836 insertions(+), 506 deletions(-)
diff --git a/src/views/dairyProducts/dryMatterCorrection/index.vue b/src/views/dairyProducts/dryMatterCorrection/index.vue
index 4e76b4b..e7f8da9 100644
--- a/src/views/dairyProducts/dryMatterCorrection/index.vue
+++ b/src/views/dairyProducts/dryMatterCorrection/index.vue
@@ -69,37 +69,40 @@
-
-
-
-
- {{ parseTime(scope.row.datetime, '{y}-{m}') }}
-
-
-
-
-
-
-
-
-
-
-
- {{ formatCoefficient(scope.row.coefficient) }}
-
-
-
-
- 修改
- 删除
-
-
-
-
+
+
+
+
+
+ {{ parseTime(scope.row.datetime, '{y}-{m}') }}
+
+
+
+
+
+
+
+
+
+
+
+ {{ formatCoefficient(scope.row.coefficient) }}
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/dairyProducts/freshMilkTest/freshMilkTest/index.vue b/src/views/dairyProducts/freshMilkTest/freshMilkTest/index.vue
index 170c2bf..453262b 100644
--- a/src/views/dairyProducts/freshMilkTest/freshMilkTest/index.vue
+++ b/src/views/dairyProducts/freshMilkTest/freshMilkTest/index.vue
@@ -75,126 +75,128 @@
-
-
-
-
-
- {{ formatDate(scope.row.datetime) }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+ {{ formatDate(scope.row.datetime) }}
+
+
-
-
-
-
- {{ formatDateTime(scope.row.createTime) }}
-
-
-
-
- 修改
- 删除
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ formatDateTime(scope.row.createTime) }}
+
+
+
+
+ 修改
+ 删除
+
+
+
+
{
.el-dialog__body {
padding: 15px 20px;
}
+
+
+/* 1. 将整个页面容器变为弹性布局,并固定总高度 */
+.app-container {
+ /* calc(100vh - 84px) 中的 84px 是顶部导航栏和标签栏的大致高度,
+ 如果你的系统顶部更高或更低,可以适当调整这个数值(例如 100px 或 120px) */
+ height: calc(100vh - 84px);
+ display: flex;
+ flex-direction: column;
+ overflow: hidden;
+}
+
+/* 2. 让搜索表单、操作按钮、应用筛选提示、分页组件 不被挤压变形 */
+.el-form,
+.mb8,
+.applied-filters,
+.pagination-container {
+ flex-shrink: 0;
+}
+
+/* 3. 让刚刚新增的表格包裹层自动撑满中间的所有剩余空间 */
+.table-wrapper {
+ flex: 1; /* 占据所有剩余空间 */
+ min-height: 0; /* 🌟 关键:防止 flex 子项高度无限撑开导致页面出现滚动条 */
+ overflow: hidden;
+ display: flex;
+ flex-direction: column;
+}
\ No newline at end of file
diff --git a/src/views/dairyProducts/milkInOutStore/milkInOutStore/index.vue b/src/views/dairyProducts/milkInOutStore/milkInOutStore/index.vue
index 208e356..8531f54 100644
--- a/src/views/dairyProducts/milkInOutStore/milkInOutStore/index.vue
+++ b/src/views/dairyProducts/milkInOutStore/milkInOutStore/index.vue
@@ -49,36 +49,38 @@
-
-
-
- {{ row.datetime ? row.datetime.substring(0, 10) : '' }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+ {{ row.datetime ? row.datetime.substring(0, 10) : '' }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
{
.mb-4 {
margin-bottom: 16px;
}
+
+
+/* 1. 将整个页面容器变为弹性布局,并固定总高度 */
+.app-container {
+ /* calc(100vh - 84px) 中的 84px 是顶部导航栏和标签栏的大致高度,
+ 如果你的系统顶部更高或更低,可以适当调整这个数值(例如 100px 或 120px) */
+ height: calc(100vh - 84px);
+ display: flex;
+ flex-direction: column;
+ overflow: hidden;
+}
+
+/* 2. 让搜索表单、操作按钮、应用筛选提示、分页组件 不被挤压变形 */
+.el-form,
+.mb8,
+.applied-filters,
+.pagination-container {
+ flex-shrink: 0;
+}
+
+/* 3. 让刚刚新增的表格包裹层自动撑满中间的所有剩余空间 */
+.table-wrapper {
+ flex: 1; /* 占据所有剩余空间 */
+ min-height: 0; /* 🌟 关键:防止 flex 子项高度无限撑开导致页面出现滚动条 */
+ overflow: hidden;
+ display: flex;
+ flex-direction: column;
+}
\ No newline at end of file
diff --git a/src/views/dairyProducts/milkProdclasses/milkProdclasses/index.vue b/src/views/dairyProducts/milkProdclasses/milkProdclasses/index.vue
index 4c13fad..076b754 100644
--- a/src/views/dairyProducts/milkProdclasses/milkProdclasses/index.vue
+++ b/src/views/dairyProducts/milkProdclasses/milkProdclasses/index.vue
@@ -93,29 +93,31 @@
-
-
-
- {{ parseTime(row.datetime, '{y}-{m}-{d}') }}
-
-
-
-
-
-
-
-
-
-
- {{ row.milk ? Number(row.milk).toFixed(2) : '-' }}
-
-
-
-
- {{ row.correctedMilk ? Number(row.correctedMilk).toFixed(2) : '-' }}
-
-
-
+
+
+
+
+ {{ parseTime(row.datetime, '{y}-{m}-{d}') }}
+
+
+
+
+
+
+
+
+
+
+ {{ row.milk ? Number(row.milk).toFixed(2) : '-' }}
+
+
+
+
+ {{ row.correctedMilk ? Number(row.correctedMilk).toFixed(2) : '-' }}
+
+
+
+
\ No newline at end of file
diff --git a/src/views/dairyProducts/parityCorrection/index.vue b/src/views/dairyProducts/parityCorrection/index.vue
index 75155a9..a135583 100644
--- a/src/views/dairyProducts/parityCorrection/index.vue
+++ b/src/views/dairyProducts/parityCorrection/index.vue
@@ -48,20 +48,22 @@
-
-
-
-
-
-
-
-
- 修改
- 删除
-
-
-
-
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
\ No newline at end of file
+
+
+
\ No newline at end of file
diff --git a/src/views/dairyProducts/rawMilkTest/rawMilkTest/index.vue b/src/views/dairyProducts/rawMilkTest/rawMilkTest/index.vue
index 215579c..a5f4f78 100644
--- a/src/views/dairyProducts/rawMilkTest/rawMilkTest/index.vue
+++ b/src/views/dairyProducts/rawMilkTest/rawMilkTest/index.vue
@@ -75,48 +75,50 @@
-
-
-
-
- {{ parseTime(scope.row.datetime, '{y}-{m}-{d}') }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ parseTime(scope.row.createTime, '{y}-{m}-{d} {h}:{i}:{s}') }}
-
-
-
-
- 修改
- 删除
-
-
-
-
+
+
+
+
+
+ {{ parseTime(scope.row.datetime, '{y}-{m}-{d}') }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ parseTime(scope.row.createTime, '{y}-{m}-{d} {h}:{i}:{s}') }}
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
{
initVisibleColumns()
getList()
})
-
\ No newline at end of file
+
+
+
\ No newline at end of file
diff --git a/src/views/dairyProducts/sheepMilkAnalysis/index.vue b/src/views/dairyProducts/sheepMilkAnalysis/index.vue
index 6058e7f..2db816c 100644
--- a/src/views/dairyProducts/sheepMilkAnalysis/index.vue
+++ b/src/views/dairyProducts/sheepMilkAnalysis/index.vue
@@ -67,17 +67,19 @@
导出
-
-
-
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/dairyProducts/weightCorrection/index.vue b/src/views/dairyProducts/weightCorrection/index.vue
index ba8a12b..84264f0 100644
--- a/src/views/dairyProducts/weightCorrection/index.vue
+++ b/src/views/dairyProducts/weightCorrection/index.vue
@@ -69,33 +69,35 @@
-
-
-
-
- {{ parseTime(scope.row.datetime, '{y}-{m}-{d}') }}
-
-
-
-
-
-
-
-
-
-
-
- {{ scope.row.coefficient ? scope.row.coefficient.toFixed(2) : '' }}
-
-
-
-
- 修改
- 删除
-
-
-
-
+
+
+
+
+
+ {{ parseTime(scope.row.datetime, '{y}-{m}-{d}') }}
+
+
+
+
+
+
+
+
+
+
+
+ {{ scope.row.coefficient ? scope.row.coefficient.toFixed(2) : '' }}
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/dairyProducts/yogurtTest/yogurtTest/index.vue b/src/views/dairyProducts/yogurtTest/yogurtTest/index.vue
index 9959ffa..428c390 100644
--- a/src/views/dairyProducts/yogurtTest/yogurtTest/index.vue
+++ b/src/views/dairyProducts/yogurtTest/yogurtTest/index.vue
@@ -75,126 +75,128 @@
-
-
-
-
-
- {{ formatDate(scope.row.datetime) }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+ {{ formatDate(scope.row.datetime) }}
+
+
-
-
-
-
- {{ formatDateTime(scope.row.createTime) }}
-
-
-
-
- 修改
- 删除
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ formatDateTime(scope.row.createTime) }}
+
+
+
+
+ 修改
+ 删除
+
+
+
+
{
.el-dialog__body {
padding: 15px 20px;
}
+
+/* 1. 将整个页面容器变为弹性布局,并固定总高度 */
+.app-container {
+ /* calc(100vh - 84px) 中的 84px 是顶部导航栏和标签栏的大致高度,
+ 如果你的系统顶部更高或更低,可以适当调整这个数值(例如 100px 或 120px) */
+ height: calc(100vh - 84px);
+ display: flex;
+ flex-direction: column;
+ overflow: hidden;
+}
+
+/* 2. 让搜索表单、操作按钮、应用筛选提示、分页组件 不被挤压变形 */
+.el-form,
+.mb8,
+.applied-filters,
+.pagination-container {
+ flex-shrink: 0;
+}
+
+/* 3. 让刚刚新增的表格包裹层自动撑满中间的所有剩余空间 */
+.table-wrapper {
+ flex: 1; /* 占据所有剩余空间 */
+ min-height: 0; /* 🌟 关键:防止 flex 子项高度无限撑开导致页面出现滚动条 */
+ overflow: hidden;
+ display: flex;
+ flex-direction: column;
+}
\ No newline at end of file
diff --git a/src/views/sale/customer/index.vue b/src/views/sale/customer/index.vue
index 9af626f..a91c2d9 100644
--- a/src/views/sale/customer/index.vue
+++ b/src/views/sale/customer/index.vue
@@ -70,37 +70,39 @@
-
-
-
-
-
-
-
- {{ (scope.row.province || '') + (scope.row.city || '') + (scope.row.district || '') }}
-
-
-
-
-
-
-
-
-
- {{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}
-
-
+
+
+
+
+
+
+
+
+ {{ (scope.row.province || '') + (scope.row.city || '') + (scope.row.district || '') }}
+
+
+
+
+
+
+
+
+
+ {{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
-
-
-
-
- 修改
- 删除
-
-
-
-
\ No newline at end of file
+
+
+
\ No newline at end of file
diff --git a/src/views/sale/saleRecord/saleRecord/index.vue b/src/views/sale/saleRecord/saleRecord/index.vue
index 10ea8c0..7b40aba 100644
--- a/src/views/sale/saleRecord/saleRecord/index.vue
+++ b/src/views/sale/saleRecord/saleRecord/index.vue
@@ -180,63 +180,65 @@
-
-
-
-
-
-
- {{ parseTime(scope.row.saleDate, '{y}-{m}-{d}') }}
-
-
-
-
-
-
-
-
-
-
-
- {{ scope.row.unitPrice }}
- 元/kg
- 元
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ parseTime(scope.row.createdAt, '{y}-{m}-{d}') }}
-
-
-
-
-
- 修改
- 删除
-
-
-
+
+
+
+
+
+
+
+ {{ parseTime(scope.row.saleDate, '{y}-{m}-{d}') }}
+
+
+
+
+
+
+
+
+
+
+
+ {{ scope.row.unitPrice }}
+ 元/kg
+ 元
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ parseTime(scope.row.createdAt, '{y}-{m}-{d}') }}
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
@@ -815,4 +817,31 @@ function diseaseTypeFormat(row) {
background-color: #f5f7fa;
border-radius: 4px;
}
+
+/* 1. 将整个页面容器变为弹性布局,并固定总高度 */
+.app-container {
+ /* calc(100vh - 84px) 中的 84px 是顶部导航栏和标签栏的大致高度,
+ 如果你的系统顶部更高或更低,可以适当调整这个数值(例如 100px 或 120px) */
+ height: calc(100vh - 84px);
+ display: flex;
+ flex-direction: column;
+ overflow: hidden;
+}
+
+/* 2. 让搜索表单、操作按钮、应用筛选提示、分页组件 不被挤压变形 */
+.el-form,
+.mb8,
+.applied-filters,
+.pagination-container {
+ flex-shrink: 0;
+}
+
+/* 3. 让刚刚新增的表格包裹层自动撑满中间的所有剩余空间 */
+.table-wrapper {
+ flex: 1; /* 占据所有剩余空间 */
+ min-height: 0; /* 🌟 关键:防止 flex 子项高度无限撑开导致页面出现滚动条 */
+ overflow: hidden;
+ display: flex;
+ flex-direction: column;
+}
\ No newline at end of file