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();
});