From 0a8a3f71f2e50f0603077197d9b1971431a64b36 Mon Sep 17 00:00:00 2001
From: Ben Lin <maobin001@msn.com>
Date: 星期三, 28 八月 2024 23:24:33 +0800
Subject: [PATCH] 条码规则更新

---
 src/views/tigerprojects/system/menu/index.vue |   12 ++++++++++--
 1 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/src/views/tigerprojects/system/menu/index.vue b/src/views/tigerprojects/system/menu/index.vue
index 2b178b9..9eea644 100644
--- a/src/views/tigerprojects/system/menu/index.vue
+++ b/src/views/tigerprojects/system/menu/index.vue
@@ -23,6 +23,7 @@
                   {
                     icon: 'clarity:note-edit-line',
                     onClick: handleEdit.bind(null, record, 'BS 鑿滃崟'),
+                    name: '',
                   },
                   {
                     icon: 'ant-design:delete-outlined',
@@ -32,6 +33,7 @@
                       placement: 'left',
                       confirm: handleDelete.bind(null, record),
                     },
+                    name: '',
                   },
                 ]"
               />
@@ -55,6 +57,7 @@
                   {
                     icon: 'clarity:note-edit-line',
                     onClick: handleEdit.bind(null, record, 'PDA'),
+                    name: '',
                   },
                   {
                     icon: 'ant-design:delete-outlined',
@@ -64,6 +67,7 @@
                       placement: 'left',
                       confirm: handleDelete.bind(null, record),
                     },
+                    name: '',
                   },
                 ]"
               />
@@ -118,7 +122,10 @@
     rowKey: 'id',
   });
 
-  const [registerTableSecond, { reload:reloadSecond, expandAll:expandAllSecond, expandRows:expandRowsSecond }] = useTable({
+  const [
+    registerTableSecond,
+    { reload: reloadSecond, expandAll: expandAllSecond, expandRows: expandRowsSecond },
+  ] = useTable({
     // const [registerTable, { reload, expandRows }] = useTable({
     title: '鑿滃崟鍒楄〃',
     api: getMenuList,
@@ -167,7 +174,8 @@
     const apiAction = DeleteMenu(record);
     apiAction.then((onfulfilled) => {
       if (onfulfilled.IsSuccessed) {
-        reload();
+          reloadSecond();
+          reload();
       }
     });
   }

--
Gitblit v1.9.3