feat: 新增收货计划功能并优化入库界面

fix(ui): 修正发货单和收货单界面显示问题

docs: 添加KLPTable组件使用文档

refactor: 重构入库记录显示为表格形式

style: 清理无用代码并统一命名规范
This commit is contained in:
砂糖
2025-11-29 17:24:46 +08:00
parent 1c10423429
commit 6c37c934bc
6 changed files with 497 additions and 92 deletions

View File

@@ -0,0 +1,4 @@
## 组件用法
1. 将原有的el-table标签改为KLPTable标签该组件已经全局注册可以直接使用无需带入。
2. 要展示浮层需要在表格组件上设置props,将floatLayer设置为true这时表格中有哪些列浮层就会展示哪些信息。
3. 如果需要单独设置浮层展示的信息例如展示表格中不存在但数据中存在的列需要在标签上增加一个props配置设置floatLayerConfig.columns为要展示的列示例[ { label: 'xxx', props: 'xxx.xxx' // 支持展示多层的数据 }, { label: '标签', props: 'xxx' } ]