127 lines
4.7 KiB
Vue
127 lines
4.7 KiB
Vue
<template>
|
|
<div class="role-lists">
|
|
<el-card class="!border-none" shadow="never">
|
|
<div>
|
|
<el-button v-perms="['auth.role/add']" type="primary" @click="handleAdd">
|
|
<template #icon>
|
|
<icon name="el-icon-Plus" />
|
|
</template>
|
|
新增
|
|
</el-button>
|
|
</div>
|
|
<div class="mt-4" v-loading="pager.loading">
|
|
<div>
|
|
<el-table :data="pager.lists" size="large">
|
|
<el-table-column prop="id" label="ID" min-width="100" />
|
|
<el-table-column prop="name" label="名称" min-width="150" />
|
|
<el-table-column
|
|
prop="desc"
|
|
label="备注"
|
|
min-width="150"
|
|
show-overflow-tooltip
|
|
/>
|
|
<el-table-column prop="sort" label="排序" min-width="100" />
|
|
<el-table-column label="数据范围" min-width="140">
|
|
<template #default="{ row }">
|
|
{{ dataScopeLabel(row.data_scope) }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column prop="num" label="管理员人数" min-width="100" />
|
|
<el-table-column prop="create_time" label="创建时间" min-width="180" />
|
|
<el-table-column label="操作" width="200" fixed="right">
|
|
<template #default="{ row }">
|
|
<el-button
|
|
link
|
|
type="primary"
|
|
v-perms="['auth.role/edit']"
|
|
@click="handleEdit(row)"
|
|
>
|
|
编辑
|
|
</el-button>
|
|
<el-button
|
|
link
|
|
type="primary"
|
|
v-perms="['auth.role/edit']"
|
|
@click="handleAuth(row)"
|
|
>
|
|
分配权限
|
|
</el-button>
|
|
<el-button
|
|
v-perms="['auth.role/delete']"
|
|
link
|
|
type="danger"
|
|
@click="handleDelete(row.id)"
|
|
>
|
|
删除
|
|
</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
</div>
|
|
<div class="flex justify-end mt-4">
|
|
<pagination v-model="pager" @change="getLists" />
|
|
</div>
|
|
</div>
|
|
</el-card>
|
|
<edit-popup v-if="showEdit" ref="editRef" @success="getLists" @close="showEdit = false" />
|
|
<auth-popup v-if="showAuth" ref="authRef" @success="getLists" @close="showAuth = false" />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup name="role">
|
|
import { roleDelete, roleLists } from '@/api/perms/role'
|
|
import { usePaging } from '@/hooks/usePaging'
|
|
import feedback from '@/utils/feedback'
|
|
|
|
import AuthPopup from './auth.vue'
|
|
import EditPopup from './edit.vue'
|
|
|
|
const editRef = shallowRef<InstanceType<typeof EditPopup>>()
|
|
const authRef = shallowRef<InstanceType<typeof AuthPopup>>()
|
|
const showEdit = ref(false)
|
|
const showAuth = ref(false)
|
|
const { pager, getLists } = usePaging({
|
|
fetchFun: roleLists
|
|
})
|
|
const handleAdd = async () => {
|
|
showEdit.value = true
|
|
await nextTick()
|
|
editRef.value?.open('add')
|
|
}
|
|
|
|
const handleEdit = async (data: any) => {
|
|
showEdit.value = true
|
|
await nextTick()
|
|
editRef.value?.open('edit')
|
|
editRef.value?.setFormData(data)
|
|
}
|
|
|
|
const handleAuth = async (data: any) => {
|
|
showAuth.value = true
|
|
await nextTick()
|
|
authRef.value?.open()
|
|
authRef.value?.setFormData(data)
|
|
}
|
|
|
|
const dataScopeLabel = (scope: number | string | null | undefined) => {
|
|
const s = Number(scope) || 1
|
|
return (
|
|
({
|
|
1: '全部数据(免隔离)',
|
|
2: '本部门及下级部门',
|
|
3: '仅本部门',
|
|
4: '仅本人'
|
|
} as Record<number, string>)[s] || '全部数据(免隔离)'
|
|
)
|
|
}
|
|
|
|
// 删除角色
|
|
const handleDelete = async (id: number) => {
|
|
await feedback.confirm('确定要删除?')
|
|
await roleDelete({ id })
|
|
getLists()
|
|
}
|
|
|
|
getLists()
|
|
</script>
|