From 7ca9651f81d7b84f054194d3d46fdbd1d9c8b922 Mon Sep 17 00:00:00 2001
From: dengjunjie <dengjunjie@hnkhzn.com>
Date: 星期三, 09 七月 2025 22:55:27 +0800
Subject: [PATCH] 增加质检出入库逻辑

---
 项目代码/WMS/WIDESEA_WMSClient/src/extension/system/system/Sys_Department.js |   42 +++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 41 insertions(+), 1 deletions(-)

diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSClient/src/extension/system/system/Sys_Department.js" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSClient/src/extension/system/system/Sys_Department.js"
index cc3940b..5c19061 100644
--- "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSClient/src/extension/system/system/Sys_Department.js"
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSClient/src/extension/system/system/Sys_Department.js"
@@ -64,7 +64,47 @@
         fixed: 'right',
         align: 'center',
         render: (h, { row, column, index }) => {
-            
+          return (
+            <div>
+              <el-button
+                onClick={($e) => {
+                  this.addBtnClick(row)
+                }}
+                type="primary"
+                link
+                v-show={hasAdd}
+                icon="Plus"
+              >
+              </el-button>
+              <el-button
+                onClick={($e) => {
+                  this.edit(row);
+                }}
+                type="success"
+                link
+                v-show={hasUpdate}
+                icon="Edit"
+              >
+              </el-button>
+              <el-tooltip
+                class="box-item"
+                effect="dark"
+                content="鍒犻櫎"
+                placement="top"
+              >
+                <el-button
+                  link
+                  onClick={($e) => {
+                    this.del(row);
+                  }}
+                  v-show={hasDel}
+                  type="danger"
+                  icon="Delete"
+                >
+                </el-button>
+              </el-tooltip>
+            </div>
+          );
         }
       });
     },

--
Gitblit v1.9.3