From a160f2a8fcd868f3aeb290164440382a52c6904e Mon Sep 17 00:00:00 2001 From: xiaoxian521 <1923740402@qq.com> Date: Mon, 9 Oct 2023 10:48:16 +0800 Subject: [PATCH] chore: update --- src/views/system/dept/index.vue | 4 ++-- src/views/system/dept/utils/hook.tsx | 4 ++-- src/views/system/role/index.vue | 2 +- src/views/system/role/utils/hook.tsx | 2 +- src/views/system/user/index.vue | 2 +- src/views/system/user/utils/hook.tsx | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/views/system/dept/index.vue b/src/views/system/dept/index.vue index feb16300f5..21f3b7891b 100644 --- a/src/views/system/dept/index.vue +++ b/src/views/system/dept/index.vue @@ -123,9 +123,9 @@ const { type="primary" :size="size" :icon="useRenderIcon(EditPen)" - @click="openDialog('编辑', row)" + @click="openDialog('修改', row)" > - 编辑 + 修改 修改 diff --git a/src/views/system/role/utils/hook.tsx b/src/views/system/role/utils/hook.tsx index 073aa69e74..fdec16af82 100644 --- a/src/views/system/role/utils/hook.tsx +++ b/src/views/system/role/utils/hook.tsx @@ -200,7 +200,7 @@ export function useRole() { // 实际开发先调用新增接口,再进行下面操作 chores(); } else { - // 实际开发先调用编辑接口,再进行下面操作 + // 实际开发先调用修改接口,再进行下面操作 chores(); } } diff --git a/src/views/system/user/index.vue b/src/views/system/user/index.vue index 04a79a9683..63c1ee8cd7 100644 --- a/src/views/system/user/index.vue +++ b/src/views/system/user/index.vue @@ -174,7 +174,7 @@ const { type="primary" :size="size" :icon="useRenderIcon(EditPen)" - @click="openDialog('编辑', row)" + @click="openDialog('修改', row)" > 修改 diff --git a/src/views/system/user/utils/hook.tsx b/src/views/system/user/utils/hook.tsx index 2045b1c799..40a4bfe6de 100644 --- a/src/views/system/user/utils/hook.tsx +++ b/src/views/system/user/utils/hook.tsx @@ -342,7 +342,7 @@ export function useUser(tableRef: Ref, treeRef: Ref) { // 实际开发先调用新增接口,再进行下面操作 chores(); } else { - // 实际开发先调用编辑接口,再进行下面操作 + // 实际开发先调用修改接口,再进行下面操作 chores(); } }