diff --git a/klp-ui/src/components/KLPService/BomPanel/BomItem.vue b/klp-ui/src/components/KLPService/BomPanel/BomItem.vue index 74658b00..7126648a 100644 --- a/klp-ui/src/components/KLPService/BomPanel/BomItem.vue +++ b/klp-ui/src/components/KLPService/BomPanel/BomItem.vue @@ -42,7 +42,7 @@ - + @@ -63,7 +63,7 @@ >删除 - + export default { - name: "klp-list", + name: "KLPList", components: {}, props: { /** 列表数据源(必传) */ @@ -76,11 +76,11 @@ export default { default: false }, - /** 标题最大宽度(像素),控制文字溢出 */ - titleMaxWidth: { + /** 标题最大宽度占容器的百分比(0-100),控制文字溢出 */ + titleMaxPercent: { type: Number, required: false, - default: 200 + default: 80 // 默认占容器80%宽度 } }, data() { @@ -88,7 +88,9 @@ export default { // 内部管理选中状态:存储当前选中项的唯一键值(单选中) selectedKey: null, // 文字溢出检测临时元素(避免重复创建) - overflowCheckElements: {} + overflowCheckElements: {}, + // 容器宽度缓存 + containerWidth: 0 }; }, methods: { @@ -107,9 +109,10 @@ export default { * @param {Object} item - 点击的列表项数据 */ handleItemClick(item) { - const itemKey = item[this.listKey]; + const itemKey = item[this.listKey]; // 单选中逻辑:点击已选中项取消选中,点击未选中项切换选中(取消其他项) - this.selectedKey = this.selectedKey === itemKey ? null : itemKey; + // this.selectedKey = this.selectedKey === itemKey ? null : itemKey; + this.selectedKey = itemKey; // 向父组件触发事件:传递当前选中项(null表示无选中) const selectedItem = this.selectedKey ? item : null; @@ -154,6 +157,15 @@ export default { // 内容为空时不显示Tooltip if (!content) return false; + // 获取容器宽度并增加存在性检查 + const container = this.$el.querySelector('.klp-list-container'); + if (!container) return false; // 容器不存在时直接返回 + this.containerWidth = container.clientWidth; + + // 计算标题内容最大可用宽度(减去标签和边距) + const labelWidth = this.$el.querySelector('.title-label')?.offsetWidth || 60; + const availableWidth = (this.containerWidth * this.titleMaxPercent / 100) - labelWidth - 20; + // 创建临时元素测量文字实际宽度(复用元素避免性能问题) if (!this.overflowCheckElements[itemKey]) { const tempEl = document.createElement("span"); @@ -171,9 +183,17 @@ export default { this.overflowCheckElements[itemKey] = tempEl; } - // 比较文字实际宽度与设定的最大宽度 + // 比较文字实际宽度与可用宽度 const tempEl = this.overflowCheckElements[itemKey]; - return tempEl.offsetWidth > this.titleMaxWidth; + return tempEl.offsetWidth > availableWidth; + }, + + /** + * 监听容器宽度变化 + */ + handleResize() { + // 宽度变化时重新计算溢出状态 + this.$forceUpdate(); } }, watch: { @@ -190,16 +210,29 @@ export default { } }, - /** 标题最大宽度变化时,强制重绘以重新计算溢出 */ - titleMaxWidth() { + /** 标题最大百分比变化时,重新计算溢出 */ + titleMaxPercent() { this.$forceUpdate(); } }, - /** 组件销毁时清理临时元素,避免内存泄漏 */ + mounted() { + this.$nextTick(() => { + const container = this.$el.querySelector('.klp-list-container'); + // 增加存在性检查 + this.containerWidth = container ? container.clientWidth : 0; + }); + + // 监听窗口大小变化 + window.addEventListener('resize', this.handleResize); + }, beforeDestroy() { + // 清理临时元素 Object.values(this.overflowCheckElements).forEach(el => { document.body.removeChild(el); }); + + // 移除事件监听 + window.removeEventListener('resize', this.handleResize); } }; @@ -211,6 +244,8 @@ export default { overflow-y: auto; padding-right: 8px; margin-top: 10px; + width: 100%; /* 确保容器宽度正确计算 */ + box-sizing: border-box; } /* 加载状态容器(避免加载时容器塌陷) */ @@ -229,6 +264,7 @@ export default { justify-content: space-between; align-items: center; box-sizing: border-box; + width: 100%; /* 确保列表项占满容器宽度 */ } /* 列表项选中状态(左侧高亮边框+背景色) */ @@ -242,6 +278,8 @@ export default { display: flex; align-items: center; flex: 1; + min-width: 0; /* 关键:允许flex项缩小到内容尺寸以下 */ + overflow: hidden; /* 确保内容不会超出容器 */ } /* 标题前置标签样式 */ @@ -250,6 +288,7 @@ export default { margin-right: 6px; font-size: 13px; white-space: nowrap; /* 标签不换行 */ + flex-shrink: 0; /* 标签不缩小 */ } /* 标题内容样式(溢出省略) */ @@ -260,7 +299,8 @@ export default { white-space: nowrap; /* 禁止换行 */ overflow: hidden; /* 超出部分隐藏 */ text-overflow: ellipsis; /* 超出部分显示省略号 */ - max-width: v-bind(titleMaxWidth + "px"); /* 绑定父组件传入的最大宽度 */ + flex: 1; /* 占据剩余空间 */ + min-width: 0; /* 关键:允许内容区域缩小 */ } /* 操作按钮组(按钮间距控制) */ @@ -268,6 +308,8 @@ export default { display: flex; align-items: center; gap: 4px; + flex-shrink: 0; /* 操作区不缩小 */ + margin-left: 8px; } /* 空状态样式(居中显示) */ @@ -275,4 +317,5 @@ export default { padding: 40px 0; text-align: center; } - \ No newline at end of file + + \ No newline at end of file diff --git a/klp-ui/src/components/KLPUI/KLPTable/index.vue b/klp-ui/src/components/KLPUI/KLPTable/index.vue index 62e8ba0d..fd0dbd30 100644 --- a/klp-ui/src/components/KLPUI/KLPTable/index.vue +++ b/klp-ui/src/components/KLPUI/KLPTable/index.vue @@ -1,148 +1,132 @@ + +/* 扩展样式:加载状态遮罩(后续可统一调整) */ +.table-loading { + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + background: rgba(255, 255, 255, 0.8); + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + z-index: 10; +} + +.loading-text { + margin-top: 12px; + color: #666; + font-size: 14px; +} + +/* 原生 Table 样式兼容:避免封装层影响原生样式 */ +.my-table { + width: 100%; +} + \ No newline at end of file diff --git a/klp-ui/src/components/ProcessViewer/index.vue b/klp-ui/src/components/ProcessViewer/index.vue index 3bc6594e..1462aeaa 100644 --- a/klp-ui/src/components/ProcessViewer/index.vue +++ b/klp-ui/src/components/ProcessViewer/index.vue @@ -22,7 +22,7 @@ - + @@ -34,7 +34,7 @@ {{scope.row.commentList&&scope.row.commentList[0]?scope.row.commentList[0].fullMessage:''}} - +
diff --git a/klp-ui/src/components/dvplanSelect/index.vue b/klp-ui/src/components/dvplanSelect/index.vue index c4389034..27b46584 100644 --- a/klp-ui/src/components/dvplanSelect/index.vue +++ b/klp-ui/src/components/dvplanSelect/index.vue @@ -29,7 +29,7 @@ - + - + - + @@ -45,7 +45,7 @@ - + - + - + 重置 - + - + 重置 - + @@ -79,7 +79,7 @@ {{ parseTime(scope.row.createTime) }} - + 重置 - + - + - + @@ -41,7 +41,7 @@ - + @@ -79,7 +79,7 @@ - + @@ -90,7 +90,7 @@ - + @@ -99,7 +99,7 @@ - + @@ -110,7 +110,7 @@ - + @@ -118,7 +118,7 @@ - + @@ -129,7 +129,7 @@ - + diff --git a/klp-ui/src/plugins/package/penal/listeners/ElementListeners.vue b/klp-ui/src/plugins/package/penal/listeners/ElementListeners.vue index 16f50995..82efae77 100644 --- a/klp-ui/src/plugins/package/penal/listeners/ElementListeners.vue +++ b/klp-ui/src/plugins/package/penal/listeners/ElementListeners.vue @@ -1,6 +1,6 @@ - +
添加监听器
@@ -102,7 +102,7 @@ 注入字段: 添加字段

- + @@ -114,7 +114,7 @@ 移除 - +
取 消 diff --git a/klp-ui/src/plugins/package/penal/listeners/UserTaskListeners.vue b/klp-ui/src/plugins/package/penal/listeners/UserTaskListeners.vue index c113af9f..42f4ce84 100644 --- a/klp-ui/src/plugins/package/penal/listeners/UserTaskListeners.vue +++ b/klp-ui/src/plugins/package/penal/listeners/UserTaskListeners.vue @@ -1,6 +1,6 @@ - +
添加监听器
@@ -126,7 +126,7 @@ 注入字段: 添加字段

- + @@ -138,7 +138,7 @@ 移除 - +
取 消 diff --git a/klp-ui/src/plugins/package/penal/properties/ElementProperties.vue b/klp-ui/src/plugins/package/penal/properties/ElementProperties.vue index edd9a369..fa3b0e7e 100644 --- a/klp-ui/src/plugins/package/penal/properties/ElementProperties.vue +++ b/klp-ui/src/plugins/package/penal/properties/ElementProperties.vue @@ -1,6 +1,6 @@ - +
添加属性
diff --git a/klp-ui/src/plugins/package/penal/signal-message/SignalAndMessage.vue b/klp-ui/src/plugins/package/penal/signal-message/SignalAndMessage.vue index 7ea59f61..d74650d2 100644 --- a/klp-ui/src/plugins/package/penal/signal-message/SignalAndMessage.vue +++ b/klp-ui/src/plugins/package/penal/signal-message/SignalAndMessage.vue @@ -4,20 +4,20 @@ 消息列表 创建新消息
- + - +
信号列表 创建新信号
- + - + diff --git a/klp-ui/src/plugins/package/penal/task/task-components/UserTask.vue b/klp-ui/src/plugins/package/penal/task/task-components/UserTask.vue index a0595891..e36d0c31 100644 --- a/klp-ui/src/plugins/package/penal/task/task-components/UserTask.vue +++ b/klp-ui/src/plugins/package/penal/task/task-components/UserTask.vue @@ -97,11 +97,11 @@ - + - + - + @@ -20,10 +20,10 @@ - + - + @@ -45,7 +45,7 @@ - +
diff --git a/klp-ui/src/views/demo/demo/index.vue b/klp-ui/src/views/demo/demo/index.vue index f496e69d..78b9a824 100644 --- a/klp-ui/src/views/demo/demo/index.vue +++ b/klp-ui/src/views/demo/demo/index.vue @@ -90,7 +90,7 @@ - + @@ -128,7 +128,7 @@ >删除 - + - 删除 - + diff --git a/klp-ui/src/views/finance/account/index.vue b/klp-ui/src/views/finance/account/index.vue index 9feebabd..9eab2e9c 100644 --- a/klp-ui/src/views/finance/account/index.vue +++ b/klp-ui/src/views/finance/account/index.vue @@ -55,7 +55,7 @@ - 删除 - + diff --git a/klp-ui/src/views/finance/document/components/FinanceVoucherTable.vue b/klp-ui/src/views/finance/document/components/FinanceVoucherTable.vue index 2dd803ed..f1211370 100644 --- a/klp-ui/src/views/finance/document/components/FinanceVoucherTable.vue +++ b/klp-ui/src/views/finance/document/components/FinanceVoucherTable.vue @@ -20,12 +20,12 @@
- + - +
diff --git a/klp-ui/src/views/finance/document/components/Voucher.vue b/klp-ui/src/views/finance/document/components/Voucher.vue index 7bdb9fa8..f353e12c 100644 --- a/klp-ui/src/views/finance/document/components/Voucher.vue +++ b/klp-ui/src/views/finance/document/components/Voucher.vue @@ -22,7 +22,7 @@ - + - + diff --git a/klp-ui/src/views/finance/document/components/detail.vue b/klp-ui/src/views/finance/document/components/detail.vue index 3f47782c..3ca2105c 100644 --- a/klp-ui/src/views/finance/document/components/detail.vue +++ b/klp-ui/src/views/finance/document/components/detail.vue @@ -113,7 +113,7 @@ - + @@ -146,7 +146,7 @@ >删除 - + - + @@ -85,7 +85,7 @@ 删除 - + diff --git a/klp-ui/src/views/finance/order/index.vue b/klp-ui/src/views/finance/order/index.vue index c3bbee02..9418b12d 100644 --- a/klp-ui/src/views/finance/order/index.vue +++ b/klp-ui/src/views/finance/order/index.vue @@ -72,7 +72,7 @@ - + @@ -89,10 +89,10 @@ - + - + @@ -109,15 +109,15 @@ - + - + - + diff --git a/klp-ui/src/views/finance/pay/index.vue b/klp-ui/src/views/finance/pay/index.vue index 3f63ac64..6b936701 100644 --- a/klp-ui/src/views/finance/pay/index.vue +++ b/klp-ui/src/views/finance/pay/index.vue @@ -68,7 +68,7 @@ - + @@ -107,7 +107,7 @@ >付款 - + - + @@ -107,7 +107,7 @@ >收款 - + - + - + - + @@ -46,7 +46,7 @@ >删除 - + - + @@ -44,7 +44,7 @@ >删除 - + - + - + - + @@ -65,7 +65,7 @@ >删除 - +
- + @@ -25,7 +25,7 @@ - + diff --git a/klp-ui/src/views/mes/dv/machinery/components/Repair.vue b/klp-ui/src/views/mes/dv/machinery/components/Repair.vue index a3c9f6e9..8d91b821 100644 --- a/klp-ui/src/views/mes/dv/machinery/components/Repair.vue +++ b/klp-ui/src/views/mes/dv/machinery/components/Repair.vue @@ -1,6 +1,6 @@ - + diff --git a/klp-ui/src/views/mes/dv/machinery/index.vue b/klp-ui/src/views/mes/dv/machinery/index.vue index 0c18e052..7490db45 100644 --- a/klp-ui/src/views/mes/dv/machinery/index.vue +++ b/klp-ui/src/views/mes/dv/machinery/index.vue @@ -108,7 +108,7 @@ - + - + - 删除 - + diff --git a/klp-ui/src/views/mes/dv/maintenrecord/index.vue b/klp-ui/src/views/mes/dv/maintenrecord/index.vue index 1d29a73c..0c34ae92 100644 --- a/klp-ui/src/views/mes/dv/maintenrecord/index.vue +++ b/klp-ui/src/views/mes/dv/maintenrecord/index.vue @@ -86,7 +86,7 @@ - + - + - + @@ -61,7 +61,7 @@ >删除 - + - + @@ -147,7 +147,7 @@ >删除 - + - + @@ -56,7 +56,7 @@ >删除 - + - + @@ -189,7 +189,7 @@ >删除 - + - + @@ -114,7 +114,7 @@ >删除 - + - + @@ -162,7 +162,7 @@ >查看 - + - + @@ -87,7 +87,7 @@ 录入结果 - + diff --git a/klp-ui/src/views/mes/is/sampleInventory/index.vue b/klp-ui/src/views/mes/is/sampleInventory/index.vue index 41c013e6..f54e9d8d 100644 --- a/klp-ui/src/views/mes/is/sampleInventory/index.vue +++ b/klp-ui/src/views/mes/is/sampleInventory/index.vue @@ -86,7 +86,7 @@ - + @@ -119,7 +119,7 @@ >删除 - + - + @@ -78,7 +78,7 @@ >删除 - + - + @@ -43,7 +43,7 @@ >详情 - + - + @@ -78,7 +78,7 @@ >删除 - + - + @@ -78,7 +78,7 @@ >删除 - +
- - + @@ -70,7 +70,7 @@ @click="refreshCacheKeys()" >
- - + diff --git a/klp-ui/src/views/monitor/logininfor/index.vue b/klp-ui/src/views/monitor/logininfor/index.vue index 94c2ad36..cc57c23c 100644 --- a/klp-ui/src/views/monitor/logininfor/index.vue +++ b/klp-ui/src/views/monitor/logininfor/index.vue @@ -98,7 +98,7 @@ - + @@ -117,7 +117,7 @@ {{ parseTime(scope.row.loginTime) }} - + - 强退 - + diff --git a/klp-ui/src/views/monitor/operlog/index.vue b/klp-ui/src/views/monitor/operlog/index.vue index 5b7f0522..bd003db0 100644 --- a/klp-ui/src/views/monitor/operlog/index.vue +++ b/klp-ui/src/views/monitor/operlog/index.vue @@ -102,7 +102,7 @@ - + @@ -136,7 +136,7 @@ >详细 - + - + @@ -138,7 +138,7 @@ >删除 - + - 删除 - + diff --git a/klp-ui/src/views/system/dict/data.vue b/klp-ui/src/views/system/dict/data.vue index 49b5ae26..b31362a9 100644 --- a/klp-ui/src/views/system/dict/data.vue +++ b/klp-ui/src/views/system/dict/data.vue @@ -90,7 +90,7 @@ - + @@ -130,7 +130,7 @@ >删除 - + - + @@ -148,7 +148,7 @@ >删除 - + - 删除 - + diff --git a/klp-ui/src/views/system/notice/index.vue b/klp-ui/src/views/system/notice/index.vue index e0f56288..712f5c6f 100644 --- a/klp-ui/src/views/system/notice/index.vue +++ b/klp-ui/src/views/system/notice/index.vue @@ -69,7 +69,7 @@ - + 删除 - + - + @@ -111,7 +111,7 @@ >删除 - + - @@ -166,7 +166,7 @@ >删除 - + - + @@ -113,7 +113,7 @@ >删除 - + - + @@ -86,7 +86,7 @@ >取消授权 - + - + @@ -146,7 +146,7 @@ - + - + @@ -40,7 +40,7 @@ {{ parseTime(scope.row.createTime) }} - +

角色信息

- + - + diff --git a/klp-ui/src/views/system/user/index.vue b/klp-ui/src/views/system/user/index.vue index 5ffc66f7..32516303 100644 --- a/klp-ui/src/views/system/user/index.vue +++ b/klp-ui/src/views/system/user/index.vue @@ -137,7 +137,7 @@
- + @@ -191,7 +191,7 @@ - + - + - + diff --git a/klp-ui/src/views/tool/gen/importTable.vue b/klp-ui/src/views/tool/gen/importTable.vue index 25c9203f..1a7b2c66 100644 --- a/klp-ui/src/views/tool/gen/importTable.vue +++ b/klp-ui/src/views/tool/gen/importTable.vue @@ -24,13 +24,13 @@ - + - + - + - + - + - + - + - + diff --git a/klp-ui/src/views/wms/contract/contractPage.vue b/klp-ui/src/views/wms/contract/contractPage.vue index c8ebc85e..f4ea0d05 100644 --- a/klp-ui/src/views/wms/contract/contractPage.vue +++ b/klp-ui/src/views/wms/contract/contractPage.vue @@ -40,7 +40,7 @@ - + @@ -63,7 +63,7 @@ 删除 - + diff --git a/klp-ui/src/views/wms/express/index.vue b/klp-ui/src/views/wms/express/index.vue index c371dbd8..f0bd9d18 100644 --- a/klp-ui/src/views/wms/express/index.vue +++ b/klp-ui/src/views/wms/express/index.vue @@ -124,7 +124,7 @@ - + @@ -228,7 +228,7 @@ - + - + @@ -115,7 +115,7 @@ >删除 - + - + @@ -67,7 +67,7 @@ >修改 - + 订单所需的产品统计
- @@ -21,7 +21,7 @@ - +

暂无数据

@@ -37,7 +37,7 @@ BOM原料需求
- @@ -51,7 +51,7 @@ - +

暂无数据

@@ -67,7 +67,7 @@ 原料库存情况
- + @@ -86,7 +86,7 @@ - +

暂无数据

@@ -102,7 +102,7 @@ 订单所需的产品统计
- + @@ -114,7 +114,7 @@ - +

暂无数据

diff --git a/klp-ui/src/views/wms/order/components/RecommendationArea.vue b/klp-ui/src/views/wms/order/components/RecommendationArea.vue index 7e3e0de3..76467890 100644 --- a/klp-ui/src/views/wms/order/components/RecommendationArea.vue +++ b/klp-ui/src/views/wms/order/components/RecommendationArea.vue @@ -8,7 +8,7 @@ 订单维度推荐
- + @@ -22,7 +22,7 @@ - +

暂无推荐数据

@@ -38,7 +38,7 @@ 原料维度推荐
- + @@ -52,7 +52,7 @@ - +

暂无推荐数据

@@ -65,7 +65,7 @@
- + @@ -79,7 +79,7 @@ - +

暂无推荐数据

diff --git a/klp-ui/src/views/wms/order/customer.vue b/klp-ui/src/views/wms/order/customer.vue index d0d0065e..fc67bcfe 100644 --- a/klp-ui/src/views/wms/order/customer.vue +++ b/klp-ui/src/views/wms/order/customer.vue @@ -75,7 +75,7 @@ - + @@ -109,7 +109,7 @@ >删除 - + import { listCustomer, getCustomer, delCustomer, addCustomer, updateCustomer } from "@/api/wms/customer"; +import KLPTable from '@/components/KLPUI/KLPTable/index.vue'; export default { name: "Customer", dicts: ['customer_from'], + components: { + KLPTable + }, data() { return { // 按钮loading diff --git a/klp-ui/src/views/wms/order/panels/detail.vue b/klp-ui/src/views/wms/order/panels/detail.vue index 184ad61a..b0b05c32 100644 --- a/klp-ui/src/views/wms/order/panels/detail.vue +++ b/klp-ui/src/views/wms/order/panels/detail.vue @@ -34,7 +34,7 @@ - + - + @@ -126,6 +126,7 @@ import { EOrderStatus } from "@/utils/enums"; import { ProductInfo } from '@/components/KLPService'; import BomInfoMini from '@/components/KLPService/Renderer/BomInfoMini.vue'; import ProductSpec from './spec.vue'; +import KLPTable from '@/components/KLPUI/KLPTable/index.vue'; export default { name: "OrderDetailPanel", @@ -140,7 +141,8 @@ export default { ProductSelect, ProductInfo, BomInfoMini, - ProductSpec + ProductSpec, + KLPTable }, data() { return { diff --git a/klp-ui/src/views/wms/order/panels/spec.vue b/klp-ui/src/views/wms/order/panels/spec.vue index d760f4ad..86ee3245 100644 --- a/klp-ui/src/views/wms/order/panels/spec.vue +++ b/klp-ui/src/views/wms/order/panels/spec.vue @@ -42,7 +42,7 @@ - + @@ -65,7 +65,7 @@ >删除 - + - + @@ -89,7 +89,7 @@ >删除 - +
- + @@ -106,7 +106,7 @@ 确认 - +
--> diff --git a/klp-ui/src/views/wms/product/index.vue b/klp-ui/src/views/wms/product/index.vue index a030ff0a..b755068e 100644 --- a/klp-ui/src/views/wms/product/index.vue +++ b/klp-ui/src/views/wms/product/index.vue @@ -91,7 +91,7 @@ - + @@ -158,7 +158,7 @@ >BOM - + - + @@ -161,7 +161,7 @@ >BOM - + - + - + - + @@ -103,7 +103,7 @@ >删除 - + - + - + -
采购单明细
-
-
+
diff --git a/klp-ui/src/views/wms/purchasePlan/panels/detail.vue b/klp-ui/src/views/wms/purchasePlan/panels/detail.vue index 966957a2..6ea26583 100644 --- a/klp-ui/src/views/wms/purchasePlan/panels/detail.vue +++ b/klp-ui/src/views/wms/purchasePlan/panels/detail.vue @@ -52,7 +52,7 @@ - + @@ -137,7 +137,7 @@ >设为完成 - + - + - + - + - + diff --git a/klp-ui/src/views/wms/purchasePlan/panels/qualityCerticate.vue b/klp-ui/src/views/wms/purchasePlan/panels/qualityCerticate.vue index ec8eae01..a49a6318 100644 --- a/klp-ui/src/views/wms/purchasePlan/panels/qualityCerticate.vue +++ b/klp-ui/src/views/wms/purchasePlan/panels/qualityCerticate.vue @@ -58,10 +58,10 @@ - + - +
diff --git a/klp-ui/src/views/wms/purchasePlan/panels/stockin.vue b/klp-ui/src/views/wms/purchasePlan/panels/stockin.vue index eb6041a8..2acc9710 100644 --- a/klp-ui/src/views/wms/purchasePlan/panels/stockin.vue +++ b/klp-ui/src/views/wms/purchasePlan/panels/stockin.vue @@ -58,7 +58,7 @@ - - + diff --git a/klp-ui/src/views/wms/purchasePlan/panels/transfer.vue b/klp-ui/src/views/wms/purchasePlan/panels/transfer.vue index c229681f..db11c88d 100644 --- a/klp-ui/src/views/wms/purchasePlan/panels/transfer.vue +++ b/klp-ui/src/views/wms/purchasePlan/panels/transfer.vue @@ -19,7 +19,7 @@ - + - +
diff --git a/klp-ui/src/views/wms/purchasePlan/status.vue b/klp-ui/src/views/wms/purchasePlan/status.vue index cd4807a4..fbbb10f7 100644 --- a/klp-ui/src/views/wms/purchasePlan/status.vue +++ b/klp-ui/src/views/wms/purchasePlan/status.vue @@ -51,7 +51,7 @@
- + @@ -89,7 +89,7 @@ >删除 - + - + @@ -161,7 +161,7 @@ >台账 - + - + @@ -139,7 +139,7 @@ >删除 - + - + @@ -122,7 +122,7 @@ >删除 - + - + @@ -74,7 +74,7 @@ v-hasPermi="['wms:stock:remove']">删除 --> - + diff --git a/klp-ui/src/views/wms/stock/panels/stockIo.vue b/klp-ui/src/views/wms/stock/panels/stockIo.vue index 69bf3ee1..fa7758e1 100644 --- a/klp-ui/src/views/wms/stock/panels/stockIo.vue +++ b/klp-ui/src/views/wms/stock/panels/stockIo.vue @@ -24,7 +24,7 @@ - + @@ -39,7 +39,7 @@ 删除 - +
清空 生成单据 diff --git a/klp-ui/src/views/wms/stockIo/index.vue b/klp-ui/src/views/wms/stockIo/index.vue index 07b3c92d..1e6f3d99 100644 --- a/klp-ui/src/views/wms/stockIo/index.vue +++ b/klp-ui/src/views/wms/stockIo/index.vue @@ -88,7 +88,7 @@ - + @@ -144,7 +144,7 @@ >打印条码 --> - + - + @@ -58,7 +58,7 @@ >删除 - + @@ -103,7 +103,7 @@ - + 删除 - + diff --git a/klp-ui/src/views/wms/stockIo/panels/returnCreate.vue b/klp-ui/src/views/wms/stockIo/panels/returnCreate.vue index 376edc19..9a813268 100644 --- a/klp-ui/src/views/wms/stockIo/panels/returnCreate.vue +++ b/klp-ui/src/views/wms/stockIo/panels/returnCreate.vue @@ -24,7 +24,7 @@ - + @@ -59,7 +59,7 @@ placeholder="请输入数量" @input="handleQuantityInput(scope.row)" /> - + diff --git a/klp-ui/src/views/wms/stockIo/panels/stockIoPage.vue b/klp-ui/src/views/wms/stockIo/panels/stockIoPage.vue index e3135c1a..ecddedfe 100644 --- a/klp-ui/src/views/wms/stockIo/panels/stockIoPage.vue +++ b/klp-ui/src/views/wms/stockIo/panels/stockIoPage.vue @@ -42,7 +42,7 @@ - + @@ -79,7 +79,7 @@ @click="showReturnCreate(scope.row)">退库 - + diff --git a/klp-ui/src/views/wms/vendor/index.vue b/klp-ui/src/views/wms/vendor/index.vue index c2b35f9e..97f80b16 100644 --- a/klp-ui/src/views/wms/vendor/index.vue +++ b/klp-ui/src/views/wms/vendor/index.vue @@ -81,7 +81,7 @@ - + @@ -105,7 +105,7 @@ >删除 - + - + @@ -95,7 +95,7 @@ >删除 - + - 删除 - + diff --git a/klp-ui/src/views/wms/work/craft.vue b/klp-ui/src/views/wms/work/craft.vue index aeeb423d..959c848b 100644 --- a/klp-ui/src/views/wms/work/craft.vue +++ b/klp-ui/src/views/wms/work/craft.vue @@ -89,7 +89,7 @@ - + @@ -114,7 +114,7 @@ >删除 - + - + @@ -113,7 +113,7 @@ >删除 - + - + @@ -140,7 +140,7 @@ >详情 - + - + @@ -87,7 +87,7 @@ 删除 - + @@ -127,7 +127,7 @@ - + - +
diff --git a/klp-ui/src/views/wms/work/schedulePlan/panes/target.vue b/klp-ui/src/views/wms/work/schedulePlan/panes/target.vue index b8244433..085883db 100644 --- a/klp-ui/src/views/wms/work/schedulePlan/panes/target.vue +++ b/klp-ui/src/views/wms/work/schedulePlan/panes/target.vue @@ -1,6 +1,6 @@ - + - 保存 - +
diff --git a/klp-ui/src/views/work/craft/index.vue b/klp-ui/src/views/work/craft/index.vue index aeeb423d..959c848b 100644 --- a/klp-ui/src/views/work/craft/index.vue +++ b/klp-ui/src/views/work/craft/index.vue @@ -89,7 +89,7 @@ - + @@ -114,7 +114,7 @@ >删除 - + - + @@ -113,7 +113,7 @@ >删除 - + - + @@ -126,7 +126,7 @@ >删除 - + - + - + - + @@ -103,7 +103,7 @@ >明细 - + - + @@ -133,7 +133,7 @@ >删除 - + - + - + diff --git a/klp-ui/src/views/workflow/category/index.vue b/klp-ui/src/views/workflow/category/index.vue index 554fe749..28d427af 100644 --- a/klp-ui/src/views/workflow/category/index.vue +++ b/klp-ui/src/views/workflow/category/index.vue @@ -71,7 +71,7 @@ - + @@ -95,7 +95,7 @@ >删除 - + - + @@ -98,7 +98,7 @@ >删除 - + - + - + - + @@ -91,7 +91,7 @@ >删除 - + - + @@ -143,7 +143,7 @@ - + - + @@ -260,7 +260,7 @@ >设为最新 - + - + @@ -71,7 +71,7 @@ - + - + @@ -59,7 +59,7 @@ >详情 - + - - + - + @@ -74,7 +74,7 @@ - + - + @@ -81,7 +81,7 @@ >发起 - + - + @@ -122,7 +122,7 @@ >重新发起 - + - - + - + @@ -70,7 +70,7 @@ - + - + - +