feat: 新增角色列表
This commit is contained in:
parent
a903251c0d
commit
b49ea938f4
206
src/views/system/role/modules/role-auth-user-drawer.vue
Normal file
206
src/views/system/role/modules/role-auth-user-drawer.vue
Normal file
@ -0,0 +1,206 @@
|
|||||||
|
<script setup lang="tsx">
|
||||||
|
import { computed, watch } from 'vue';
|
||||||
|
import { fetchGetRoleUserList, fetchGetUserList } from '@/service/api/system';
|
||||||
|
import { useAppStore } from '@/store/modules/app';
|
||||||
|
import { useDict } from '@/hooks/business/dict';
|
||||||
|
import { useTable, useTableOperate } from '@/hooks/common/table';
|
||||||
|
import { $t } from '@/locales';
|
||||||
|
import DictTag from '@/components/custom/dict-tag.vue';
|
||||||
|
|
||||||
|
defineOptions({
|
||||||
|
name: 'RoleAuthUserDrawer'
|
||||||
|
});
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
/** the edit row data */
|
||||||
|
rowData?: Api.System.Role | null;
|
||||||
|
}
|
||||||
|
|
||||||
|
const props = defineProps<Props>();
|
||||||
|
|
||||||
|
interface Emits {
|
||||||
|
(e: 'submitted'): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
const emit = defineEmits<Emits>();
|
||||||
|
|
||||||
|
const visible = defineModel<boolean>('visible', {
|
||||||
|
default: false
|
||||||
|
});
|
||||||
|
|
||||||
|
const appStore = useAppStore();
|
||||||
|
|
||||||
|
const title = computed(() => '分配用户权限');
|
||||||
|
|
||||||
|
useDict('sys_normal_disable');
|
||||||
|
|
||||||
|
const { columns, data, getData, getDataByPage, loading, mobilePagination, searchParams, resetSearchParams } = useTable({
|
||||||
|
immediate: false,
|
||||||
|
apiFn: fetchGetUserList,
|
||||||
|
apiParams: {
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 20,
|
||||||
|
// if you want to use the searchParams in Form, you need to define the following properties, and the value is null
|
||||||
|
// the value can not be undefined, otherwise the property in Form will not be reactive
|
||||||
|
deptId: null,
|
||||||
|
userName: null,
|
||||||
|
nickName: null,
|
||||||
|
phonenumber: null,
|
||||||
|
status: null,
|
||||||
|
params: {}
|
||||||
|
},
|
||||||
|
columns: () => [
|
||||||
|
{
|
||||||
|
type: 'selection',
|
||||||
|
align: 'center',
|
||||||
|
width: 48
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 'index',
|
||||||
|
title: $t('common.index'),
|
||||||
|
align: 'center',
|
||||||
|
width: 64
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 'userName',
|
||||||
|
title: '用户名称',
|
||||||
|
align: 'center',
|
||||||
|
minWidth: 120,
|
||||||
|
ellipsis: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 'nickName',
|
||||||
|
title: '用户昵称',
|
||||||
|
align: 'center',
|
||||||
|
minWidth: 120,
|
||||||
|
ellipsis: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 'deptName',
|
||||||
|
title: '部门',
|
||||||
|
align: 'center',
|
||||||
|
minWidth: 120,
|
||||||
|
ellipsis: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 'phonenumber',
|
||||||
|
title: '手机号码',
|
||||||
|
align: 'center',
|
||||||
|
minWidth: 120,
|
||||||
|
ellipsis: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 'status',
|
||||||
|
title: '状态',
|
||||||
|
align: 'center',
|
||||||
|
minWidth: 80,
|
||||||
|
render(row) {
|
||||||
|
return <DictTag size="small" value={row.status} dictCode="sys_normal_disable" />;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 'createTime',
|
||||||
|
title: '创建时间',
|
||||||
|
align: 'center',
|
||||||
|
minWidth: 120
|
||||||
|
}
|
||||||
|
]
|
||||||
|
});
|
||||||
|
|
||||||
|
const { checkedRowKeys } = useTableOperate(data, getData);
|
||||||
|
|
||||||
|
async function handleUpdateModelWhenEdit() {
|
||||||
|
checkedRowKeys.value = [];
|
||||||
|
getDataByPage();
|
||||||
|
const { data: roleUserList } = await fetchGetRoleUserList({
|
||||||
|
roleId: props.rowData?.roleId
|
||||||
|
});
|
||||||
|
checkedRowKeys.value = roleUserList?.rows.map(item => item.userId) || [];
|
||||||
|
}
|
||||||
|
|
||||||
|
function closeDrawer() {
|
||||||
|
visible.value = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
async function handleSubmit() {
|
||||||
|
window.$message?.success($t('common.updateSuccess'));
|
||||||
|
closeDrawer();
|
||||||
|
emit('submitted');
|
||||||
|
}
|
||||||
|
|
||||||
|
watch(visible, () => {
|
||||||
|
if (visible.value) {
|
||||||
|
handleUpdateModelWhenEdit();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<NDrawer
|
||||||
|
v-model:show="visible"
|
||||||
|
:title="title"
|
||||||
|
display-directive="show"
|
||||||
|
:width="1300"
|
||||||
|
class="max-w-90%"
|
||||||
|
content-class="h-full"
|
||||||
|
wrapper-class="h-full"
|
||||||
|
>
|
||||||
|
<NDrawerContent :title="title" :native-scrollbar="false" closable body-class="h-full" body-content-class="h-full">
|
||||||
|
<div class="h-full flex-col-stretch gap-12px overflow-hidden lt-sm:overflow-auto">
|
||||||
|
<NForm :model="searchParams" label-placement="left" :label-width="80">
|
||||||
|
<NGrid responsive="screen" item-responsive>
|
||||||
|
<NFormItemGi span="24 s:12 m:8" label="用户名称" path="userName" class="pr-24px">
|
||||||
|
<NInput v-model:value="searchParams.userName" placeholder="请输入用户名称" />
|
||||||
|
</NFormItemGi>
|
||||||
|
<NFormItemGi span="24 s:12 m:8" label="用户昵称" path="nickName" class="pr-24px">
|
||||||
|
<NInput v-model:value="searchParams.nickName" placeholder="请输入用户昵称" />
|
||||||
|
</NFormItemGi>
|
||||||
|
<NFormItemGi span="24 s:12 m:8" label="手机号码" path="phonenumber" class="pr-24px">
|
||||||
|
<NInput v-model:value="searchParams.phonenumber" placeholder="请输入手机号码" />
|
||||||
|
</NFormItemGi>
|
||||||
|
<NFormItemGi span="24 s:12 m:24" class="pr-24px" :show-feedback="false">
|
||||||
|
<NSpace class="w-full" justify="end">
|
||||||
|
<NButton @click="resetSearchParams">
|
||||||
|
<template #icon>
|
||||||
|
<icon-ic-round-refresh class="text-icon" />
|
||||||
|
</template>
|
||||||
|
{{ $t('common.reset') }}
|
||||||
|
</NButton>
|
||||||
|
<NButton type="primary" ghost @click="() => getDataByPage()">
|
||||||
|
<template #icon>
|
||||||
|
<icon-ic-round-search class="text-icon" />
|
||||||
|
</template>
|
||||||
|
{{ $t('common.search') }}
|
||||||
|
</NButton>
|
||||||
|
</NSpace>
|
||||||
|
</NFormItemGi>
|
||||||
|
</NGrid>
|
||||||
|
</NForm>
|
||||||
|
<TableRowCheckAlert v-model:checked-row-keys="checkedRowKeys" />
|
||||||
|
<NCard :bordered="false" size="small" class="sm:flex-1-hidden card-wrapper">
|
||||||
|
<NDataTable
|
||||||
|
v-model:checked-row-keys="checkedRowKeys"
|
||||||
|
:columns="columns"
|
||||||
|
:data="data"
|
||||||
|
size="small"
|
||||||
|
:flex-height="!appStore.isMobile"
|
||||||
|
:scroll-x="962"
|
||||||
|
:loading="loading"
|
||||||
|
remote
|
||||||
|
:row-key="row => row.userId"
|
||||||
|
:pagination="mobilePagination"
|
||||||
|
class="h-full"
|
||||||
|
/>
|
||||||
|
</NCard>
|
||||||
|
</div>
|
||||||
|
<template #footer>
|
||||||
|
<NSpace :size="16">
|
||||||
|
<NButton @click="closeDrawer">{{ $t('common.cancel') }}</NButton>
|
||||||
|
<NButton type="primary" @click="handleSubmit">{{ $t('common.confirm') }}</NButton>
|
||||||
|
</NSpace>
|
||||||
|
</template>
|
||||||
|
</NDrawerContent>
|
||||||
|
</NDrawer>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped></style>
|
Loading…
Reference in New Issue
Block a user