This commit is contained in:
2025-11-03 10:53:05 +08:00
parent a16d127512
commit e5c7af48a2
2 changed files with 5 additions and 3 deletions

View File

@@ -55,6 +55,8 @@ export default {
padding: 0 20px; padding: 0 20px;
background: #fff; background: #fff;
min-height: 0; /* 确保 flex 子元素可以收缩 */ min-height: 0; /* 确保 flex 子元素可以收缩 */
overflow-x: auto; /* 确保横向滚动条显示 */
overflow-y: auto; /* 确保纵向滚动条显示 */
} }
/* 固定分页区域 */ /* 固定分页区域 */
@@ -89,9 +91,9 @@ export default {
background: #a8a8a8; background: #a8a8a8;
} }
/* 确保表格在容器内正确显示 */ /* 确保表格在容器内正确显示,允许横向滚动 */
.table-section .el-table { .table-section .el-table {
width: 100%; min-width: 100%;
} }
/* 分页组件样式优化 */ /* 分页组件样式优化 */

View File

@@ -50,7 +50,7 @@
<!-- 表格区域 --> <!-- 表格区域 -->
<template #table> <template #table>
<el-table :data="list" v-loading="loading" border stripe :default-sort="{prop: 'createTime', order: 'descending'}" @sort-change="handleSortChange"> <el-table :data="list" v-loading="loading" border stripe :default-sort="{prop: 'createTime', order: 'descending'}" @sort-change="handleSortChange" style="width: 100%;">
<el-table-column label="ID" prop="id" width="80" /> <el-table-column label="ID" prop="id" width="80" />
<el-table-column label="内部单号" prop="remark" width="160" sortable/> <el-table-column label="内部单号" prop="remark" width="160" sortable/>