mirror of
https://github.com/zclzone/vue-naive-admin.git
synced 2025-05-01 06:39:01 +08:00
229 lines
5.6 KiB
Vue
229 lines
5.6 KiB
Vue
<!--------------------------------
|
||
- @Author: Ronnie Zhang
|
||
- @LastEditor: Ronnie Zhang
|
||
- @LastEditTime: 2023/12/05 21:29:43
|
||
- @Email: zclzone@outlook.com
|
||
- Copyright © 2023 Ronnie Zhang(大脸怪) | https://isme.top
|
||
--------------------------------->
|
||
|
||
<template>
|
||
<CommonPage back>
|
||
<template #title-suffix>
|
||
<NTag class="ml-12" type="warning">
|
||
{{ route.query.roleName }}
|
||
</NTag>
|
||
</template>
|
||
<template #action>
|
||
<div class="flex items-center">
|
||
<NButton :disabled="!userIds.length" type="error" @click="handleBatchRemove()">
|
||
<i v-if="userIds.length" class="i-material-symbols:delete-outline mr-4 text-18" />
|
||
批量取消授权
|
||
</NButton>
|
||
<NButton
|
||
class="ml-12"
|
||
:disabled="!userIds.length"
|
||
type="primary"
|
||
@click="handleBatchAdd()"
|
||
>
|
||
<i v-if="userIds.length" class="i-line-md:confirm-circle mr-4 text-18" />
|
||
批量授权
|
||
</NButton>
|
||
</div>
|
||
</template>
|
||
|
||
<MeCrud
|
||
ref="$table"
|
||
v-model:query-items="queryItems"
|
||
:scroll-x="1200"
|
||
:columns="columns"
|
||
:get-data="api.getAllUsers"
|
||
:show-check="true"
|
||
@on-checked="onChecked"
|
||
>
|
||
<MeQueryItem label="用户名" :label-width="50">
|
||
<n-input
|
||
v-model:value="queryItems.username"
|
||
type="text"
|
||
placeholder="请输入用户名"
|
||
clearable
|
||
/>
|
||
</MeQueryItem>
|
||
|
||
<MeQueryItem label="性别" :label-width="50">
|
||
<n-select v-model:value="queryItems.gender" clearable :options="genders" />
|
||
</MeQueryItem>
|
||
|
||
<MeQueryItem label="状态" :label-width="50">
|
||
<n-select
|
||
v-model:value="queryItems.enable"
|
||
clearable
|
||
:options="[
|
||
{ label: '启用', value: 1 },
|
||
{ label: '停用', value: 0 },
|
||
]"
|
||
/>
|
||
</MeQueryItem>
|
||
</MeCrud>
|
||
</CommonPage>
|
||
</template>
|
||
|
||
<script setup>
|
||
import { MeCrud, MeQueryItem } from '@/components'
|
||
import { formatDateTime } from '@/utils'
|
||
import { NAvatar, NButton, NSwitch, NTag } from 'naive-ui'
|
||
import { h } from 'vue'
|
||
import api from './api'
|
||
|
||
defineOptions({ name: 'RoleUser' })
|
||
const route = useRoute()
|
||
|
||
const $table = ref(null)
|
||
/** QueryBar筛选参数(可选) */
|
||
const queryItems = ref({})
|
||
|
||
onMounted(() => {
|
||
$table.value?.handleSearch()
|
||
})
|
||
|
||
const genders = [
|
||
{ label: '男', value: 1 },
|
||
{ label: '女', value: 2 },
|
||
]
|
||
|
||
const columns = [
|
||
// { type: 'selection', fixed: 'left' },
|
||
{
|
||
title: '头像',
|
||
key: 'avatar',
|
||
width: 80,
|
||
render: ({ avatar }) =>
|
||
h(NAvatar, {
|
||
size: 'medium',
|
||
src: avatar,
|
||
}),
|
||
},
|
||
{ title: '用户名', key: 'username', ellipsis: { tooltip: true } },
|
||
{
|
||
title: '角色',
|
||
key: 'roles',
|
||
ellipsis: { tooltip: true },
|
||
render: ({ roles }) => {
|
||
if (roles?.length) {
|
||
return roles.map((item, index) =>
|
||
h(
|
||
NTag,
|
||
{ type: 'success', style: index > 0 ? 'margin-left: 8px;' : '' },
|
||
{ default: () => item.name },
|
||
),
|
||
)
|
||
}
|
||
return '暂无角色'
|
||
},
|
||
},
|
||
{
|
||
title: '性别',
|
||
key: 'gender',
|
||
width: 80,
|
||
render: ({ gender }) => genders.find(item => gender === item.value)?.label ?? '',
|
||
},
|
||
{
|
||
title: '创建时间',
|
||
key: 'createDate',
|
||
width: 180,
|
||
render(row) {
|
||
return h('span', formatDateTime(row.createTime))
|
||
},
|
||
},
|
||
{
|
||
title: '状态',
|
||
key: 'enable',
|
||
width: 100,
|
||
|
||
render: row =>
|
||
h(
|
||
NSwitch,
|
||
{
|
||
size: 'small',
|
||
rubberBand: false,
|
||
value: row.enable,
|
||
},
|
||
{
|
||
checked: () => '启用',
|
||
unchecked: () => '停用',
|
||
},
|
||
),
|
||
},
|
||
{
|
||
title: '操作',
|
||
key: 'actions',
|
||
width: 120,
|
||
align: 'right',
|
||
fixed: 'right',
|
||
hideInExcel: true,
|
||
render(row) {
|
||
return row.roles?.some(item => item.id === +route.params.roleId)
|
||
? h(
|
||
NButton,
|
||
{
|
||
size: 'small',
|
||
type: 'error',
|
||
secondary: true,
|
||
onClick: () => handleBatchRemove([row.id]),
|
||
},
|
||
{
|
||
default: () => '取消授权',
|
||
icon: () => h('i', { class: 'i-material-symbols:delete-outline text-14' }),
|
||
},
|
||
)
|
||
: h(
|
||
NButton,
|
||
{
|
||
size: 'small',
|
||
type: 'primary',
|
||
secondary: true,
|
||
onClick: () => handleBatchAdd([row.id]),
|
||
},
|
||
{
|
||
default: () => '授权',
|
||
icon: () => h('i', { class: 'i-line-md:confirm-circle text-14' }),
|
||
},
|
||
)
|
||
},
|
||
},
|
||
]
|
||
|
||
const userIds = ref([])
|
||
function onChecked(rowKeys) {
|
||
userIds.value = rowKeys || []
|
||
}
|
||
|
||
function handleBatchAdd(ids = userIds.value) {
|
||
const roleId = route.params.roleId
|
||
if (!roleId)
|
||
return $message.error('角色异常,请重新选择角色')
|
||
if (!ids.length)
|
||
return $message.error('请先选择用户')
|
||
$dialog.confirm({
|
||
content: `确认分配【${route.query.roleName}】?`,
|
||
async confirm() {
|
||
await api.addRoleUsers(roleId, { userIds: ids })
|
||
$table.value?.handleSearch()
|
||
},
|
||
})
|
||
}
|
||
function handleBatchRemove(ids = userIds.value) {
|
||
const roleId = route.params.roleId
|
||
if (!roleId)
|
||
return $message.error('角色异常,请重新选择角色')
|
||
if (!ids.length)
|
||
return $message.error('请先选择用户')
|
||
$dialog.confirm({
|
||
content: `确认取消分配【${route.query.roleName}】?`,
|
||
async confirm() {
|
||
await api.removeRoleUsers(roleId, { userIds: ids })
|
||
$table.value?.handleSearch()
|
||
},
|
||
})
|
||
}
|
||
</script>
|