Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
admin
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
643b3873
authored
Mar 31, 2023
by
YunaiV
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
REVIEW 用户管理(列表)
parent
1434cdab
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
130 additions
and
201 deletions
+130
-201
src/api/system/user/index.ts
+3
-18
src/views/system/tenantPackage/index.vue
+1
-1
src/views/system/user/DeptTree.vue
+17
-12
src/views/system/user/components/UserForm.vue
+5
-5
src/views/system/user/index.vue
+104
-165
No files found.
src/api/system/user/index.ts
View file @
643b3873
...
@@ -17,23 +17,8 @@ export interface UserVO {
...
@@ -17,23 +17,8 @@ export interface UserVO {
createTime
:
Date
createTime
:
Date
}
}
export
interface
UserPageReqVO
extends
PageParam
{
deptId
?:
number
username
?:
string
mobile
?:
string
status
?:
number
createTime
?:
Date
[]
}
export
interface
UserExportReqVO
{
code
?:
string
name
?:
string
status
?:
number
createTime
?:
Date
[]
}
// 查询用户管理列表
// 查询用户管理列表
export
const
getUserPage
Api
=
(
params
:
UserPageReqVO
)
=>
{
export
const
getUserPage
=
(
params
:
PageParam
)
=>
{
return
request
.
get
({
url
:
'/system/user/page'
,
params
})
return
request
.
get
({
url
:
'/system/user/page'
,
params
})
}
}
...
@@ -53,12 +38,12 @@ export const updateUserApi = (data: UserVO | Recordable) => {
...
@@ -53,12 +38,12 @@ export const updateUserApi = (data: UserVO | Recordable) => {
}
}
// 删除用户
// 删除用户
export
const
deleteUser
Api
=
(
id
:
number
)
=>
{
export
const
deleteUser
=
(
id
:
number
)
=>
{
return
request
.
delete
({
url
:
'/system/user/delete?id='
+
id
})
return
request
.
delete
({
url
:
'/system/user/delete?id='
+
id
})
}
}
// 导出用户
// 导出用户
export
const
exportUser
Api
=
(
params
:
UserExportReqVO
)
=>
{
export
const
exportUser
=
(
params
)
=>
{
return
request
.
download
({
url
:
'/system/user/export'
,
params
})
return
request
.
download
({
url
:
'/system/user/export'
,
params
})
}
}
...
...
src/views/system/tenantPackage/index.vue
View file @
643b3873
...
@@ -112,7 +112,7 @@ const { t } = useI18n() // 国际化
...
@@ -112,7 +112,7 @@ const { t } = useI18n() // 国际化
const
loading
=
ref
(
true
)
// 列表的加载中
const
loading
=
ref
(
true
)
// 列表的加载中
const
total
=
ref
(
0
)
// 列表的总页数
const
total
=
ref
(
0
)
// 列表的总页数
const
list
=
ref
([])
// 列表的数据
const
list
=
ref
([])
// 列表的数据
const
queryParams
:
Record
<
string
,
any
>
=
ref
<
Record
<
string
,
any
>>
({
const
queryParams
=
reactive
({
pageNo
:
1
,
pageNo
:
1
,
pageSize
:
10
,
pageSize
:
10
,
name
:
null
,
name
:
null
,
...
...
src/views/system/user/
components/User
DeptTree.vue
→
src/views/system/user/DeptTree.vue
View file @
643b3873
<
template
>
<
template
>
<div
class=
"head-container"
>
<div
class=
"head-container"
>
<el-input
v-model=
"deptName"
placeholder=
"请输入部门名称"
clearable
style=
"margin-bottom:
20px"
>
<el-input
v-model=
"deptName"
placeholder=
"请输入部门名称"
clearable
class=
"mb-
20px"
>
<template
#
prefix
>
<template
#
prefix
>
<Icon
icon=
"ep:search"
/>
<Icon
icon=
"ep:search"
/>
</
template
>
</
template
>
...
@@ -8,15 +8,15 @@
...
@@ -8,15 +8,15 @@
</div>
</div>
<div
class=
"head-container"
>
<div
class=
"head-container"
>
<el-tree
<el-tree
:data=
"dept
Options
"
:data=
"dept
List
"
:props=
"defaultProps"
:props=
"defaultProps"
node-key=
"id"
:expand-on-click-node=
"false"
:expand-on-click-node=
"false"
:filter-node-method=
"filterNode"
:filter-node-method=
"filterNode"
ref=
"treeRef"
ref=
"treeRef"
node-key=
"id"
default-expand-all
default-expand-all
highlight-current
highlight-current
@
node-click=
"handle
Dept
NodeClick"
@
node-click=
"handleNodeClick"
/>
/>
</div>
</div>
</template>
</template>
...
@@ -26,25 +26,30 @@ import { ElTree } from 'element-plus'
...
@@ -26,25 +26,30 @@ import { ElTree } from 'element-plus'
import
*
as
DeptApi
from
'@/api/system/dept'
import
*
as
DeptApi
from
'@/api/system/dept'
import
{
defaultProps
,
handleTree
}
from
'@/utils/tree'
import
{
defaultProps
,
handleTree
}
from
'@/utils/tree'
const
emits
=
defineEmits
([
'node-click'
])
const
deptName
=
ref
(
''
)
const
deptName
=
ref
(
''
)
const
dept
Options
=
ref
<
Tree
[]
>
([])
// 树形结构
const
dept
List
=
ref
<
Tree
[]
>
([])
// 树形结构
const
treeRef
=
ref
<
InstanceType
<
typeof
ElTree
>>
()
const
treeRef
=
ref
<
InstanceType
<
typeof
ElTree
>>
()
/** 获得部门树 */
const
getTree
=
async
()
=>
{
const
getTree
=
async
()
=>
{
const
res
=
await
DeptApi
.
getSimpleDeptList
()
const
res
=
await
DeptApi
.
getSimpleDeptList
()
dept
Options
.
value
=
[]
dept
List
.
value
=
[]
dept
Options
.
value
.
push
(...
handleTree
(
res
))
dept
List
.
value
.
push
(...
handleTree
(
res
))
}
}
const
filterNode
=
(
value
:
string
,
data
:
Tree
)
=>
{
/** 基于名字过滤 */
if
(
!
value
)
return
true
const
filterNode
=
(
name
:
string
,
data
:
Tree
)
=>
{
return
data
.
name
.
includes
(
value
)
if
(
!
name
)
return
true
return
data
.
name
.
includes
(
name
)
}
}
const
handleDeptNodeClick
=
async
(
row
:
{
[
key
:
string
]:
any
})
=>
{
/** 处理部门被点击 */
const
handleNodeClick
=
async
(
row
:
{
[
key
:
string
]:
any
})
=>
{
emits
(
'node-click'
,
row
)
emits
(
'node-click'
,
row
)
}
}
const
emits
=
defineEmits
([
'node-click'
])
/** 初始化 */
onMounted
(
async
()
=>
{
onMounted
(
async
()
=>
{
await
getTree
()
await
getTree
()
})
})
...
...
src/views/system/user/components/UserForm.vue
View file @
643b3873
...
@@ -56,7 +56,7 @@
...
@@ -56,7 +56,7 @@
<el-select
v-model=
"formData.sex"
placeholder=
"请选择"
>
<el-select
v-model=
"formData.sex"
placeholder=
"请选择"
>
<el-option
<el-option
v-for=
"dict in getIntDictOptions(DICT_TYPE.SYSTEM_USER_SEX)"
v-for=
"dict in getIntDictOptions(DICT_TYPE.SYSTEM_USER_SEX)"
:key=
"dict.value
as number
"
:key=
"dict.value"
:label=
"dict.label"
:label=
"dict.label"
:value=
"dict.value"
:value=
"dict.value"
/>
/>
...
@@ -70,7 +70,7 @@
...
@@ -70,7 +70,7 @@
v-for=
"item in postOptions"
v-for=
"item in postOptions"
:key=
"item.id"
:key=
"item.id"
:label=
"item.name"
:label=
"item.name"
:value=
"item.id
as number
"
:value=
"item.id"
/>
/>
</el-select>
</el-select>
</el-form-item>
</el-form-item>
...
@@ -102,7 +102,6 @@ import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
...
@@ -102,7 +102,6 @@ import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
import
{
defaultProps
,
handleTree
}
from
'@/utils/tree'
import
{
defaultProps
,
handleTree
}
from
'@/utils/tree'
import
{
ElForm
,
FormItemRule
}
from
'element-plus'
import
{
ElForm
,
FormItemRule
}
from
'element-plus'
import
{
Arrayable
}
from
'element-plus/es/utils'
import
{
Arrayable
}
from
'element-plus/es/utils'
import
{
UserVO
}
from
'@/api/login/types'
type
Form
=
InstanceType
<
typeof
ElForm
>
type
Form
=
InstanceType
<
typeof
ElForm
>
...
@@ -210,7 +209,8 @@ const cancel = () => {
...
@@ -210,7 +209,8 @@ const cancel = () => {
}
}
/* 打开弹框 */
/* 打开弹框 */
const
openForm
=
(
row
:
undefined
|
UserVO
)
=>
{
const
open
=
(
type
:
string
,
id
?:
number
)
=>
{
console
.
log
(
type
,
id
)
resetForm
()
resetForm
()
getTree
()
// 部门树
getTree
()
// 部门树
if
(
row
&&
row
.
id
)
{
if
(
row
&&
row
.
id
)
{
...
@@ -232,6 +232,6 @@ onMounted(async () => {
...
@@ -232,6 +232,6 @@ onMounted(async () => {
defineExpose
({
defineExpose
({
resetForm
,
resetForm
,
open
Form
open
})
})
</
script
>
</
script
>
src/views/system/user/index.vue
View file @
643b3873
<
template
>
<
template
>
<!-- 搜索工作栏 -->
<el-row
:gutter=
"20"
>
<el-row
:gutter=
"20"
>
<!--
部门数据
-->
<!--
左侧部门树
-->
<el-col
:span=
"4"
:xs=
"24"
>
<el-col
:span=
"4"
:xs=
"24"
>
<content-wrap
class=
"h-1/1"
>
<content-wrap
class=
"h-1/1"
>
<
User
DeptTree
@
node-click=
"handleDeptNodeClick"
/>
<DeptTree
@
node-click=
"handleDeptNodeClick"
/>
</content-wrap>
</content-wrap>
</el-col>
</el-col>
<!--用户数据-->
<el-col
:span=
"20"
:xs=
"24"
>
<el-col
:span=
"20"
:xs=
"24"
>
<!-- 搜索 -->
<content-wrap>
<content-wrap>
<el-form
<el-form
class=
"-mb-15px"
:model=
"queryParams"
:model=
"queryParams"
ref=
"queryFormRef"
ref=
"queryFormRef"
:inline=
"true"
:inline=
"true"
v-show=
"showSearch"
label-width=
"68px"
label-width=
"68px"
>
>
<el-form-item
label=
"用户名称"
prop=
"username"
>
<el-form-item
label=
"用户名称"
prop=
"username"
>
...
@@ -22,8 +21,8 @@
...
@@ -22,8 +21,8 @@
v-model=
"queryParams.username"
v-model=
"queryParams.username"
placeholder=
"请输入用户名称"
placeholder=
"请输入用户名称"
clearable
clearable
style=
"width: 240px"
@
keyup
.
enter=
"handleQuery"
@
keyup
.
enter=
"handleQuery"
class=
"!w-240px"
/>
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"手机号码"
prop=
"mobile"
>
<el-form-item
label=
"手机号码"
prop=
"mobile"
>
...
@@ -31,8 +30,8 @@
...
@@ -31,8 +30,8 @@
v-model=
"queryParams.mobile"
v-model=
"queryParams.mobile"
placeholder=
"请输入手机号码"
placeholder=
"请输入手机号码"
clearable
clearable
style=
"width: 240px"
@
keyup
.
enter=
"handleQuery"
@
keyup
.
enter=
"handleQuery"
class=
"!w-240px"
/>
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"状态"
prop=
"status"
>
<el-form-item
label=
"状态"
prop=
"status"
>
...
@@ -40,7 +39,7 @@
...
@@ -40,7 +39,7 @@
v-model=
"queryParams.status"
v-model=
"queryParams.status"
placeholder=
"用户状态"
placeholder=
"用户状态"
clearable
clearable
style=
"width:
240px"
class=
"!w-
240px"
>
>
<el-option
<el-option
v-for=
"dict in getIntDictOptions(DICT_TYPE.COMMON_STATUS)"
v-for=
"dict in getIntDictOptions(DICT_TYPE.COMMON_STATUS)"
...
@@ -53,31 +52,30 @@
...
@@ -53,31 +52,30 @@
<el-form-item
label=
"创建时间"
prop=
"createTime"
>
<el-form-item
label=
"创建时间"
prop=
"createTime"
>
<el-date-picker
<el-date-picker
v-model=
"queryParams.createTime"
v-model=
"queryParams.createTime"
style=
"width: 240px"
value-format=
"YYYY-MM-DD HH:mm:ss"
value-format=
"YYYY-MM-DD HH:mm:ss"
type=
"datetimerange"
type=
"datetimerange"
range-separator=
"-"
start-placeholder=
"开始日期"
start-placeholder=
"开始日期"
end-placeholder=
"结束日期"
end-placeholder=
"结束日期"
class=
"!w-240px"
/>
/>
</el-form-item>
</el-form-item>
<el-form-item>
<el-form-item>
<el-button
type=
"primary"
@
click=
"handleQuery"
><Icon
icon=
"ep:search"
/>
搜索
</el-button>
<el-button
@
click=
"handleQuery"
><Icon
icon=
"ep:search"
/>
搜索
</el-button>
<el-button
@
click=
"resetQuery"
><Icon
icon=
"ep:refresh"
/>
重置
</el-button>
<el-button
@
click=
"resetQuery"
><Icon
icon=
"ep:refresh"
/>
重置
</el-button>
<el-button
type=
"primary"
plain
@
click=
"handleAdd"
v-hasPermi=
"['system:user:create']"
>
<Icon
icon=
"ep:plus"
/>
新增
</el-button>
<el-button
<el-button
type=
"
info
"
type=
"
primary
"
size=
"small"
plain
@
click=
"
handleImport
"
@
click=
"
openForm('create')
"
v-hasPermi=
"['system:user:
import
']"
v-hasPermi=
"['system:user:
create
']"
>
>
<Icon
icon=
"ep:plus"
/>
新增
</el-button>
<el-button
type=
"info"
plain
@
click=
"handleImport"
v-hasPermi=
"['system:user:import']"
>
<Icon
icon=
"ep:upload"
/>
导入
<Icon
icon=
"ep:upload"
/>
导入
</el-button>
</el-button>
<el-button
<el-button
type=
"warning"
type=
"warning"
size=
"small"
plain
@
click=
"handleExport"
@
click=
"handleExport"
:loading=
"exportLoading"
:loading=
"exportLoading"
v-hasPermi=
"['system:user:export']"
v-hasPermi=
"['system:user:export']"
...
@@ -88,28 +86,18 @@
...
@@ -88,28 +86,18 @@
</el-form>
</el-form>
</content-wrap>
</content-wrap>
<content-wrap>
<content-wrap>
<el-table
v-loading=
"loading"
:data=
"userList"
>
<el-table
v-loading=
"loading"
:data=
"list"
>
<el-table-column
<el-table-column
label=
"用户编号"
align=
"center"
key=
"id"
prop=
"id"
/>
label=
"用户编号"
align=
"center"
key=
"id"
prop=
"id"
v-if=
"columns[0].visible"
/>
<el-table-column
<el-table-column
label=
"用户名称"
label=
"用户名称"
align=
"center"
align=
"center"
key=
"username"
prop=
"username"
prop=
"username"
v-if=
"columns[1].visible"
:show-overflow-tooltip=
"true"
:show-overflow-tooltip=
"true"
/>
/>
<el-table-column
<el-table-column
label=
"用户昵称"
label=
"用户昵称"
align=
"center"
align=
"center"
key=
"nickname"
prop=
"nickname"
prop=
"nickname"
v-if=
"columns[2].visible"
:show-overflow-tooltip=
"true"
:show-overflow-tooltip=
"true"
/>
/>
<el-table-column
<el-table-column
...
@@ -117,18 +105,10 @@
...
@@ -117,18 +105,10 @@
align=
"center"
align=
"center"
key=
"deptName"
key=
"deptName"
prop=
"dept.name"
prop=
"dept.name"
v-if=
"columns[3].visible"
:show-overflow-tooltip=
"true"
:show-overflow-tooltip=
"true"
/>
/>
<el-table-column
<el-table-column
label=
"手机号码"
align=
"center"
prop=
"mobile"
width=
"120"
/>
label=
"手机号码"
<el-table-column
label=
"状态"
key=
"status"
>
align=
"center"
key=
"mobile"
prop=
"mobile"
v-if=
"columns[4].visible"
width=
"120"
/>
<el-table-column
label=
"状态"
key=
"status"
v-if=
"columns[5].visible"
align=
"center"
>
<template
#
default=
"scope"
>
<template
#
default=
"scope"
>
<el-switch
<el-switch
v-model=
"scope.row.status"
v-model=
"scope.row.status"
...
@@ -142,28 +122,20 @@
...
@@ -142,28 +122,20 @@
label=
"创建时间"
label=
"创建时间"
align=
"center"
align=
"center"
prop=
"createTime"
prop=
"createTime"
v-if=
"columns[6].visible"
:formatter=
"dateFormatter"
width=
"160"
width=
"180"
>
/>
<
template
#
default=
"scope"
>
<el-table-column
label=
"操作"
align=
"center"
width=
"160"
>
<span>
{{
parseTime
(
scope
.
row
.
createTime
)
}}
</span>
</
template
>
</el-table-column>
<el-table-column
label=
"操作"
align=
"center"
width=
"160"
class-name=
"small-padding fixed-width"
>
<
template
#
default=
"scope"
>
<
template
#
default=
"scope"
>
<div
class=
"flex justify-center items-center"
>
<div
class=
"flex justify-center items-center"
>
<el-button
<el-button
type=
"primary"
type=
"primary"
link
link
@
click=
"
handleUpdate(scope.row
)"
@
click=
"
openForm('update', scope.row.id
)"
v-hasPermi=
"['system:user:update']"
v-hasPermi=
"['system:user:update']"
><Icon
icon=
"ep:edit"
/>
修改
</el-button
>
>
<Icon
icon=
"ep:edit"
/>
修改
</el-button>
<el-dropdown
<el-dropdown
@
command=
"(command) => handleCommand(command, scope.$index, scope.row)"
@
command=
"(command) => handleCommand(command, scope.$index, scope.row)"
v-hasPermi=
"[
v-hasPermi=
"[
...
@@ -172,25 +144,25 @@
...
@@ -172,25 +144,25 @@
'system:permission:assign-user-role'
'system:permission:assign-user-role'
]"
]"
>
>
<el-button
type=
"primary"
link
><Icon
icon=
"ep:d-arrow-right"
/>
更多
</el-button>
<el-button
type=
"primary"
link
><Icon
icon=
"ep:d-arrow-right"
/>
更多
</el-button>
<template
#
dropdown
>
<template
#
dropdown
>
<el-dropdown-menu>
<el-dropdown-menu>
<!-- div包住避免控制台报错:Runtime directive used on component with non-element root node -->
<!-- div包住避免控制台报错:Runtime directive used on component with non-element root node -->
<div
v-
if=
"scope.row.id !== 1"
v-
hasPermi=
"['system:user:delete']"
>
<div
v-hasPermi=
"['system:user:delete']"
>
<el-dropdown-item
command=
"handleDelete"
type=
"text"
<el-dropdown-item
command=
"handleDelete"
>
><Icon
icon=
"ep:delete"
/>
删除
</el-dropdown-item
<Icon
icon=
"ep:delete"
/>
删除
>
</el-dropdown-item
>
</div>
</div>
<div
v-hasPermi=
"['system:user:update-password']"
>
<div
v-hasPermi=
"['system:user:update-password']"
>
<el-dropdown-item
command=
"handleResetPwd"
type=
"text"
<el-dropdown-item
command=
"handleResetPwd"
>
><Icon
icon=
"ep:key"
/>
重置密码
</el-dropdown-item
<Icon
icon=
"ep:key"
/>
重置密码
></div
</el-dropdown-item>
>
</div
>
<div
v-hasPermi=
"['system:permission:assign-user-role']"
>
<div
v-hasPermi=
"['system:permission:assign-user-role']"
>
<el-dropdown-item
command=
"handleRole"
type=
"text"
<el-dropdown-item
command=
"handleRole"
>
><Icon
icon=
"ep:circle-check"
/>
分配角色
</el-dropdown-item
<Icon
icon=
"ep:circle-check"
/>
分配角色
></div
</el-dropdown-item>
>
</div
>
</el-dropdown-menu>
</el-dropdown-menu>
</
template
>
</
template
>
</el-dropdown>
</el-dropdown>
...
@@ -198,8 +170,7 @@
...
@@ -198,8 +170,7 @@
</template>
</template>
</el-table-column>
</el-table-column>
</el-table>
</el-table>
<pagination
<Pagination
v-show=
"total > 0"
:total=
"total"
:total=
"total"
v-model:page=
"queryParams.pageNo"
v-model:page=
"queryParams.pageNo"
v-model:limit=
"queryParams.pageSize"
v-model:limit=
"queryParams.pageSize"
...
@@ -210,36 +181,32 @@
...
@@ -210,36 +181,32 @@
</el-row>
</el-row>
<!-- 添加或修改用户对话框 -->
<!-- 添加或修改用户对话框 -->
<UserForm
ref=
"
userF
ormRef"
@
success=
"getList"
/>
<UserForm
ref=
"
f
ormRef"
@
success=
"getList"
/>
<!-- 用户导入对话框 -->
<!-- 用户导入对话框 -->
<UserImportForm
ref=
"
userI
mportFormRef"
@
success=
"getList"
/>
<UserImportForm
ref=
"
i
mportFormRef"
@
success=
"getList"
/>
<!-- 分配角色 -->
<!-- 分配角色 -->
<UserAssignRoleForm
ref=
"
userA
ssignRoleFormRef"
@
success=
"getList"
/>
<UserAssignRoleForm
ref=
"
a
ssignRoleFormRef"
@
success=
"getList"
/>
</template>
</template>
<
script
setup
lang=
"ts"
name=
"User"
>
<
script
setup
lang=
"ts"
name=
"User"
>
import
download
from
'@/utils/download'
import
{
parseTime
}
from
'@/utils/formatTime'
import
{
DICT_TYPE
,
getIntDictOptions
}
from
'@/utils/dict'
import
{
DICT_TYPE
,
getIntDictOptions
}
from
'@/utils/dict'
import
{
dateFormatter
}
from
'@/utils/formatTime'
import
download
from
'@/utils/download'
import
{
CommonStatusEnum
}
from
'@/utils/constants'
import
{
CommonStatusEnum
}
from
'@/utils/constants'
import
{
import
{
resetUserPwdApi
,
updateUserStatusApi
,
UserVO
}
from
'@/api/system/user'
deleteUserApi
,
import
*
as
UserApi
from
'@/api/system/user'
exportUserApi
,
resetUserPwdApi
,
updateUserStatusApi
,
getUserPageApi
,
UserVO
}
from
'@/api/system/user'
import
UserForm
from
'./components/UserForm.vue'
import
UserForm
from
'./components/UserForm.vue'
import
UserImportForm
from
'./components/UserImportForm.vue'
import
UserImportForm
from
'./components/UserImportForm.vue'
import
UserAssignRoleForm
from
'./components/UserAssignRoleForm.vue'
import
UserAssignRoleForm
from
'./components/UserAssignRoleForm.vue'
import
UserDeptTree
from
'./components/UserDeptTree.vue'
import
DeptTree
from
'./DeptTree.vue'
const
message
=
useMessage
()
// 消息弹窗
const
message
=
useMessage
()
// 消息弹窗
const
{
t
}
=
useI18n
()
// 国际化
const
{
t
}
=
useI18n
()
// 国际化
const
loading
=
ref
(
true
)
// 列表的加载中
const
total
=
ref
(
0
)
// 列表的总页数
const
list
=
ref
([])
// 列表的数
const
queryParams
=
reactive
({
const
queryParams
=
reactive
({
pageNo
:
1
,
pageNo
:
1
,
pageSize
:
10
,
pageSize
:
10
,
...
@@ -249,35 +216,18 @@ const queryParams = reactive({
...
@@ -249,35 +216,18 @@ const queryParams = reactive({
deptId
:
undefined
,
deptId
:
undefined
,
createTime
:
[]
createTime
:
[]
})
})
const
showSearch
=
ref
(
true
)
const
queryFormRef
=
ref
()
// 搜索的表单
const
handleDeptNodeClick
=
async
(
row
:
{
[
key
:
string
]:
any
})
=>
{
queryParams
.
deptId
=
row
.
id
getList
()
}
// 用户列表
const
userList
=
ref
<
UserVO
[]
>
([])
const
loading
=
ref
(
false
)
const
total
=
ref
(
0
)
const
columns
=
ref
([
{
key
:
0
,
label
:
`用户编号`
,
visible
:
true
},
{
key
:
1
,
label
:
`用户名称`
,
visible
:
true
},
{
key
:
2
,
label
:
`用户昵称`
,
visible
:
true
},
{
key
:
3
,
label
:
`部门`
,
visible
:
true
},
{
key
:
4
,
label
:
`手机号码`
,
visible
:
true
},
{
key
:
5
,
label
:
`状态`
,
visible
:
true
},
{
key
:
6
,
label
:
`创建时间`
,
visible
:
true
}
])
/** 查询列表 */
/** 查询列表 */
const
getList
=
()
=>
{
const
getList
=
async
()
=>
{
loading
.
value
=
true
loading
.
value
=
true
getUserPageApi
(
queryParams
).
then
((
response
)
=>
{
try
{
userList
.
value
=
response
.
list
const
data
=
await
UserApi
.
getUserPage
(
queryParams
.
value
)
total
.
value
=
response
.
total
list
.
value
=
data
.
list
total
.
value
=
data
.
total
}
finally
{
loading
.
value
=
false
loading
.
value
=
false
}
)
}
}
}
/** 搜索按钮操作 */
/** 搜索按钮操作 */
...
@@ -287,54 +237,35 @@ const handleQuery = () => {
...
@@ -287,54 +237,35 @@ const handleQuery = () => {
}
}
/** 重置按钮操作 */
/** 重置按钮操作 */
const
queryFormRef
=
ref
()
const
resetQuery
=
()
=>
{
const
resetQuery
=
()
=>
{
queryFormRef
.
value
?.
resetFields
()
queryFormRef
.
value
?.
resetFields
()
handleQuery
()
handleQuery
()
}
}
// 添加或编辑
/** 处理部门被点击 */
const
userFormRef
=
ref
()
const
handleDeptNodeClick
=
async
(
row
)
=>
{
// 添加用户
queryParams
.
deptId
=
row
.
id
const
handleAdd
=
()
=>
{
await
getList
()
userFormRef
.
value
?.
openForm
()
}
}
/
/ 用户导入
/
** 添加/修改操作 */
const
userImportF
ormRef
=
ref
()
const
f
ormRef
=
ref
()
const
handleImport
=
(
)
=>
{
const
openForm
=
(
type
:
string
,
id
?:
number
)
=>
{
userImportFormRef
.
value
?.
openForm
(
)
formRef
.
value
.
open
(
type
,
id
)
}
}
// 用户导出
// 用户导入
const
exportLoading
=
ref
(
false
)
const
importFormRef
=
ref
()
const
handleExport
=
()
=>
{
const
handleImport
=
()
=>
{
message
importFormRef
.
value
?.
openForm
()
.
confirm
(
'是否确认导出所有用户数据项?'
)
.
then
(
async
()
=>
{
// 处理查询参数
let
params
=
{
...
queryParams
}
params
.
pageNo
=
1
params
.
pageSize
=
99999
exportLoading
.
value
=
true
const
response
=
await
exportUserApi
(
params
)
download
.
excel
(
response
,
'用户数据.xls'
)
})
.
catch
(()
=>
{})
.
finally
(()
=>
{
exportLoading
.
value
=
false
})
}
}
// 操作分发
// 操作分发
const
handleCommand
=
(
command
:
string
,
index
:
number
,
row
:
UserVO
)
=>
{
const
handleCommand
=
(
command
:
string
,
index
:
number
,
row
:
User
Api
.
User
VO
)
=>
{
console
.
log
(
index
)
console
.
log
(
index
)
switch
(
command
)
{
switch
(
command
)
{
case
'handleUpdate'
:
handleUpdate
(
row
)
//修改客户信息
break
case
'handleDelete'
:
case
'handleDelete'
:
handleDelete
(
row
)
//红号变更
handleDelete
(
row
.
id
)
break
break
case
'handleResetPwd'
:
case
'handleResetPwd'
:
handleResetPwd
(
row
)
handleResetPwd
(
row
)
...
@@ -366,25 +297,33 @@ const handleStatusChange = (row: UserVO) => {
...
@@ -366,25 +297,33 @@ const handleStatusChange = (row: UserVO) => {
})
})
}
}
// 具体数据单行操作
/** 删除按钮操作 */
/** 修改按钮操作 */
const
handleDelete
=
async
(
id
:
number
)
=>
{
const
handleUpdate
=
(
row
:
UserVO
)
=>
{
try
{
userFormRef
.
value
?.
openForm
(
row
)
// 删除的二次确认
await
message
.
delConfirm
()
// 发起删除
await
UserApi
.
deleteUser
(
id
)
message
.
success
(
t
(
'common.delSuccess'
))
// 刷新列表
await
getList
()
}
catch
{}
}
}
// 删除用户
/** 导出按钮操作 */
const
handleDelete
=
(
row
:
UserVO
)
=>
{
const
exportLoading
=
ref
(
false
)
const
ids
=
row
.
id
const
handleExport
=
async
()
=>
{
message
try
{
.
confirm
(
'是否确认删除用户编号为"'
+
ids
+
'"的数据项?'
)
// 导出的二次确认
.
then
(
async
()
=>
{
await
message
.
exportConfirm
()
await
deleteUserApi
(
ids
)
// 发起导出
message
.
success
(
'删除成功'
)
exportLoading
.
value
=
true
getList
()
const
data
=
await
UserApi
.
exportUser
(
queryParams
)
})
download
.
excel
(
data
,
'用户数据.xls'
)
.
catch
((
e
)
=>
{
}
catch
{
console
.
error
(
e
)
}
finally
{
})
exportLoading
.
value
=
false
}
}
}
// 重置密码
// 重置密码
...
@@ -401,13 +340,13 @@ const handleResetPwd = (row: UserVO) => {
...
@@ -401,13 +340,13 @@ const handleResetPwd = (row: UserVO) => {
}
}
// 分配角色
// 分配角色
const
userA
ssignRoleFormRef
=
ref
()
const
a
ssignRoleFormRef
=
ref
()
const
handleRole
=
(
row
:
UserVO
)
=>
{
const
handleRole
=
(
row
:
UserVO
)
=>
{
userA
ssignRoleFormRef
.
value
?.
openForm
(
row
)
a
ssignRoleFormRef
.
value
?.
openForm
(
row
)
}
}
/
/ ========== 初始化 ==========
/
** 初始化 */
onMounted
(
async
()
=>
{
onMounted
(()
=>
{
getList
()
getList
()
})
})
</
script
>
</
script
>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment