diff --git a/src/views/system/user/index.vue b/src/views/system/user/index.vue index b30c9793..8a9d2a56 100644 --- a/src/views/system/user/index.vue +++ b/src/views/system/user/index.vue @@ -60,8 +60,6 @@ let queryParams = reactive({ userName: '', /**手机号 */ phonenumber: '', - /**部门ID */ - deptId: undefined, /**租户ID */ tenantId: undefined, /**用户状态 */ @@ -81,7 +79,6 @@ function fnQueryReset() { queryParams = Object.assign(queryParams, { userName: '', phonenumber: '', - deptId: undefined, tenantId: undefined, status: undefined, beginTime: '', @@ -259,7 +256,6 @@ let modalState: ModalStateType = reactive({ userId: undefined, userName: '', password: '', - deptId: '100', tenantId: '', email: '', loginDate: 0, @@ -399,7 +395,6 @@ function fnModalVisibleByEdit(userId?: string | number) { modalState.from = Object.assign(modalState.from, user); modalState.from.roleIds = roleIds; modalState.from.postIds = postIds; - modalState.from.deptId = deptTreeData.value[0].id; modalState.title = t('common.addText') + t('views.system.user.userInfo'); modalState.visibleByEdit = true; @@ -800,7 +795,6 @@ function fnGetDeptTree() { }); } }); - console.log(deptTreeData.value); } }); }