From 6c2b343b655c1f2b71f3d04d2eef01ae6c66bac9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E9=83=9D=E5=85=88=E7=91=9E?= <1490493387@qq.com>
Date: Fri, 28 Jan 2022 19:25:28 +0800
Subject: [PATCH] =?UTF-8?q?fix(user/index.vue):=20=E7=94=A8=E6=88=B7?=
=?UTF-8?q?=E5=88=97=E8=A1=A8=E5=88=86=E9=A1=B5=E5=8F=82=E6=95=B0=E9=94=99?=
=?UTF-8?q?=E8=AF=AF?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/system/user/index.vue | 14 ++++----------
1 file changed, 4 insertions(+), 10 deletions(-)
diff --git a/src/views/system/user/index.vue b/src/views/system/user/index.vue
index 62bb57a7..f7834dff 100644
--- a/src/views/system/user/index.vue
+++ b/src/views/system/user/index.vue
@@ -129,21 +129,18 @@
:show-overflow-tooltip="true"
/>
@@ -383,7 +379,6 @@ const state = reactive({
// 部门树选项
deptOptions: [],
// 部门名称
- deptName: '',
// 性别状态字典
genderOptions: [] as any[],
// 角色选项
@@ -404,8 +399,8 @@ const state = reactive({
},
// 查询参数
queryParams: {
- page: 1,
- limit: 10,
+ pageNum: 1,
+ pageSize: 10,
keywords: undefined,
status: undefined,
deptId: undefined
@@ -451,7 +446,6 @@ const {
dialog,
formData,
rules,
- deptName,
deptOptions,
roleOptions
} = toRefs(state)