fix(view/stock) 表头锁定异常

入库 物资管理 表头锁定异常

el-table 加入 height="1000px"属性解决
This commit is contained in:
2026-02-12 11:34:44 +08:00
2 changed files with 2 additions and 2 deletions

View File

@@ -45,7 +45,7 @@
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar> <right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
</el-row> </el-row>
<el-table v-loading="loading" :data="inList" @selection-change="handleSelectionChange"> <el-table v-loading="loading" height="1000px" :data="inList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" /> <el-table-column type="selection" width="55" align="center" />
<el-table-column label="序号" align="center" prop="stockInCode" /> <el-table-column label="序号" align="center" prop="stockInCode" />
<el-table-column label="单据日期" align="center" prop="docDate" /> <el-table-column label="单据日期" align="center" prop="docDate" />

View File

@@ -107,7 +107,7 @@
</el-dialog> </el-dialog>
<!-- 物资管理记录导入对话框 --> <!-- 物资管理记录导入对话框 -->
<el-dialog :title="upload.title" v-model="upload.open" width="400px" append-to-body> <el-dialog :title="upload.title" height="1000px" v-model="upload.open" width="400px" append-to-body>
<el-upload ref="uploadRef" :limit="1" accept=".xlsx, .xls" :headers="upload.headers" <el-upload ref="uploadRef" :limit="1" accept=".xlsx, .xls" :headers="upload.headers"
:action="upload.url + '?updateSupport=' + upload.updateSupport" :disabled="upload.isUploading" :action="upload.url + '?updateSupport=' + upload.updateSupport" :disabled="upload.isUploading"
:on-progress="handleFileUploadProgress" :on-success="handleFileSuccess" :auto-upload="false" drag> :on-progress="handleFileUploadProgress" :on-success="handleFileSuccess" :auto-upload="false" drag>