From e13c9080e668e7190c3ad9762e4fd8a1a6ef203c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BB=B2=E4=B9=88=E4=BA=86?= Date: Mon, 22 Jan 2024 15:20:30 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=A8=E6=88=B7=E5=AE=A1=E6=A0=B8=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/api/user-boot/user.ts | 10 ++ src/components/table/index.vue | 12 ++- src/layouts/admin/index.vue | 21 +++- src/styles/vxeTable.scss | 12 ++- src/views/auth/audit/index.vue | 136 ++++++++++++++++++++++++++ src/views/auth/userList/popupEdit.vue | 136 +++++++++++++------------- src/views/auth/userList/popupPwd.vue | 42 ++++---- 7 files changed, 273 insertions(+), 96 deletions(-) create mode 100644 src/views/auth/audit/index.vue diff --git a/src/api/user-boot/user.ts b/src/api/user-boot/user.ts index c652926..fad01e6 100644 --- a/src/api/user-boot/user.ts +++ b/src/api/user-boot/user.ts @@ -106,3 +106,13 @@ export async function updatePassword(params: any) { } }) } + + + +export function checkUser(data:any) { + return request({ + url: '/user-boot/user/check', + method: 'put', + data: data + }) +} \ No newline at end of file diff --git a/src/components/table/index.vue b/src/components/table/index.vue index efa537f..e84c4c4 100644 --- a/src/components/table/index.vue +++ b/src/components/table/index.vue @@ -6,6 +6,8 @@ :data="tableStore.table.data" v-loading="tableStore.table.loading" v-bind="Object.assign({}, defaultAttribute, $attrs)" + @checkbox-all="selectChangeEvent" + @checkbox-change="selectChangeEvent" >