From cf39de10d8192472d9875c39b87e6eab2239d2a1 Mon Sep 17 00:00:00 2001 From: Guarp Date: Wed, 26 Feb 2025 19:08:42 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84=E7=94=A8=E6=88=B7=E7=AE=A1?= =?UTF-8?q?=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/accountPages/Account.vue | 4 +-- .../accountPages/Account_admin_userManage.vue | 29 +++++++++++++++++-- src/router/index.js | 3 ++ 3 files changed, 31 insertions(+), 5 deletions(-) diff --git a/src/pages/accountPages/Account.vue b/src/pages/accountPages/Account.vue index 3b4b4d2..0f56f20 100644 --- a/src/pages/accountPages/Account.vue +++ b/src/pages/accountPages/Account.vue @@ -39,8 +39,8 @@ onMounted(() => {
  • 管理: 上传日志
  • -
  • - 超管: 管理用户 +
  • + 管理: 管理用户
  • 用户信息 diff --git a/src/pages/accountPages/Account_admin_userManage.vue b/src/pages/accountPages/Account_admin_userManage.vue index d2bff9d..3296c92 100644 --- a/src/pages/accountPages/Account_admin_userManage.vue +++ b/src/pages/accountPages/Account_admin_userManage.vue @@ -50,7 +50,26 @@ const role2Text = (id) => { return '超管'; } }; - +const approve = (uid) => { + swal.window('info', '确定认证此账户?', store.getters.isSuperAdmin ? '' : '此操作不可由本账号撤销', '确实', '取消').then(async (result) => { + if (result.isConfirmed) { + let response; + try { + response = await api.put(`/users/${uid}/role`, { + role: 1 + }) + if (response.code === 0) { + swal.tip('success', '认证成功'); + refreshList(currentPage.value); + return; + } + swal.tip('error', '认证失败'); + } catch (e) { + swal.tip('error', '网络连接错误'); + } + } + }); +}; const changeRole = (uid) => { Swal.fire({ title: '修改账号权限为', @@ -117,7 +136,8 @@ onMounted(() => {
    -
    修改权限
    +
    修改权限
    +
    认证
    @@ -220,5 +240,8 @@ onMounted(() => { background: white; border: black solid 1px; } - +.theme-light .approve:hover { + background: black; + color: white; +} \ No newline at end of file diff --git a/src/router/index.js b/src/router/index.js index fb653b4..fc2210d 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -94,6 +94,9 @@ router.beforeEach((to, from, next) => { if (to.path === '/account/upload-log' && !store.getters.isAdmin) { next('/account'); } + if (to.path === '/account/user-management' && !store.getters.isAdmin) { + next('/account'); + } next(); });