mirror of
https://gitee.com/xiangheng/x_admin.git
synced 2025-10-27 10:00:33 +08:00
122 lines
4.7 KiB
Vue
122 lines
4.7 KiB
Vue
<template>
|
|
<div class="role-lists">
|
|
<el-card class="!border-none" shadow="never">
|
|
<div>
|
|
<el-button v-perms="['admin:system:role:add']" type="primary" @click="handleAdd">
|
|
<template #icon>
|
|
<icon name="el-icon-Plus" />
|
|
</template>
|
|
新增
|
|
</el-button>
|
|
</div>
|
|
<div class="mt-4">
|
|
<div>
|
|
<el-table :data="pager.lists" size="large" v-loading="pager.loading">
|
|
<el-table-column prop="id" label="ID" min-width="100" />
|
|
<el-table-column prop="name" label="名称" min-width="150" />
|
|
<el-table-column
|
|
prop="remark"
|
|
label="备注"
|
|
min-width="150"
|
|
show-overflow-tooltip
|
|
/>
|
|
<el-table-column prop="sort" label="排序" min-width="100" />
|
|
<el-table-column prop="member" label="角色人数" min-width="120" />
|
|
<el-table-column label="岗位状态" prop="isDisable" min-width="100">
|
|
<template #default="{ row }">
|
|
<el-tag class="ml-2" :type="row.isDisable ? 'danger' : 'primary'">
|
|
{{ row.isDisable ? '停用' : '正常' }}
|
|
</el-tag>
|
|
</template>
|
|
</el-table-column>
|
|
|
|
<el-table-column prop="createTime" label="创建时间" min-width="180" />
|
|
<el-table-column label="操作" width="190" fixed="right">
|
|
<template #default="{ row }">
|
|
<el-button
|
|
v-perms="['admin:system:role:edit']"
|
|
link
|
|
type="primary"
|
|
@click="handleEdit(row)"
|
|
>
|
|
编辑
|
|
</el-button>
|
|
<el-button
|
|
v-perms="['admin:system:role:edit']"
|
|
link
|
|
type="primary"
|
|
@click="handleAuth(row)"
|
|
>
|
|
权限设置
|
|
</el-button>
|
|
<el-button
|
|
v-perms="['admin:system:role:del']"
|
|
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>
|
|
import { ref, useTemplateRef, nextTick } from 'vue'
|
|
import { roleLists, roleDelete } from '@/api/perms/role'
|
|
import { usePaging } from '@/hooks/usePaging'
|
|
import feedback from '@/utils/feedback'
|
|
import EditPopup from './edit.vue'
|
|
import AuthPopup from './auth.vue'
|
|
defineOptions({
|
|
name: 'role'
|
|
})
|
|
|
|
const editRef = useTemplateRef<InstanceType<typeof EditPopup>>('editRef')
|
|
const authRef = useTemplateRef<InstanceType<typeof AuthPopup>>('authRef')
|
|
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 handleDelete = async (id: number) => {
|
|
await feedback.confirm('确定要删除?')
|
|
await roleDelete({ id })
|
|
feedback.msgSuccess('删除成功')
|
|
getLists()
|
|
}
|
|
|
|
getLists()
|
|
</script>
|