feat(wms): 添加更多列显示选项和样式优化

- 在delivery/canuse页面添加moreColumn属性控制额外列显示
- 在coil/panels/base页面添加moreColumn属性和相关列显示逻辑
- 优化表格容器样式防止内容溢出
- 为表格添加边框样式
This commit is contained in:
2026-04-29 17:25:13 +08:00
parent 634adccce8
commit 89867e8d70
2 changed files with 20 additions and 5 deletions

View File

@@ -7,6 +7,7 @@
:showLength="showLength"
:canExportAll="canExportAll"
:leftWarehouseQuery="leftWarehouseQuery"
:moreColumn="moreColumn"
/>
</template>
@@ -33,7 +34,8 @@ export default {
showLength: true,
canExportAll: true,
showOrderBy: false,
leftWarehouseQuery: true
leftWarehouseQuery: true,
moreColumn: true,
}
}
}