零售单据的页面宽度优化

This commit is contained in:
季圣华
2021-09-05 23:55:53 +08:00
parent fd1d91927b
commit 8a3b5f981e
3 changed files with 14 additions and 9 deletions

View File

@@ -34,7 +34,7 @@
<slot name="actionButtonAfter" :target="getVM()"/>
<div :id="`${caseId}inputTable`" class="input-table">
<div :id="`${caseId}inputTable`" class="input-table" :style="{'min-width':minWidth+'px'}">
<!-- 渲染表头 -->
<div class="thead" ref="thead">
<div class="tr" :style="{width: this.realTrWidth}">
@@ -814,6 +814,10 @@
default: false
},
// 页面是否在加载中
minWidth: {
type: Number,
default: 1550
},
maxHeight: {
type: Number,
default: 400
@@ -2758,7 +2762,6 @@
.input-table {
max-width: 100%;
min-width: 1550px;
overflow-x: hidden;
overflow-y: hidden;
position: relative;