From 07b4f10a271bf25ee2af45389b234c133b2f2a5b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E7=A0=82=E7=B3=96?= <2178503051@qq.com>
Date: Mon, 18 May 2026 15:14:55 +0800
Subject: [PATCH] =?UTF-8?q?feat(crm/coilTable):=20=E6=96=B0=E5=A2=9E?=
=?UTF-8?q?=E6=95=B0=E5=AD=97=E9=92=A2=E5=8D=B7=E8=B7=B3=E8=BD=AC=E6=8C=89?=
=?UTF-8?q?=E9=92=AE?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
在钢卷表格操作栏添加数字钢卷按钮,点击后跳转至对应钢卷详情页
---
klp-ui/src/views/crm/components/CoilTable.vue | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/klp-ui/src/views/crm/components/CoilTable.vue b/klp-ui/src/views/crm/components/CoilTable.vue
index ab16a430..37e1fefa 100644
--- a/klp-ui/src/views/crm/components/CoilTable.vue
+++ b/klp-ui/src/views/crm/components/CoilTable.vue
@@ -48,6 +48,8 @@
打印标签
+ 数字钢卷
追溯
@@ -168,6 +170,12 @@ export default {
this.$refs.labelRender.printLabel();
})
},
+ /** 数字钢卷按钮操作 */
+ handleDigitalCoilNo(row) {
+ this.$router.push({
+ path: '/wms/coil/' + row.coilId,
+ });
+ },
/** 追溯按钮操作 */
handleTrace(row) {
this.trace.open = true;