289 lines
7.6 KiB
Vue
289 lines
7.6 KiB
Vue
<script setup lang="ts">
|
|
import { h, ref } from "vue";
|
|
import { useRole } from "./utils/hook";
|
|
import { PureTableBar } from "@/components/RePureTableBar";
|
|
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
|
import { addDialog } from "@/components/ReDialog";
|
|
|
|
import Delete from "@iconify-icons/ep/delete";
|
|
import EditPen from "@iconify-icons/ep/edit-pen";
|
|
import Search from "@iconify-icons/ep/search";
|
|
import Refresh from "@iconify-icons/ep/refresh";
|
|
import AddFill from "@iconify-icons/ri/add-circle-line";
|
|
import {
|
|
AddRoleCommand,
|
|
RoleDTO,
|
|
UpdateRoleCommand,
|
|
addRoleApi,
|
|
getRoleInfoApi,
|
|
updateRoleApi
|
|
} from "@/api/system/role";
|
|
import RoleFormModal from "@/views/system/role/role-form-modal.vue";
|
|
import { ElMessage } from "element-plus";
|
|
|
|
defineOptions({
|
|
name: "SystemRole"
|
|
});
|
|
|
|
const formRef = ref();
|
|
const {
|
|
form,
|
|
loading,
|
|
columns,
|
|
dataList,
|
|
pagination,
|
|
onSearch,
|
|
resetForm,
|
|
menuTree,
|
|
getMenuTree,
|
|
handleDelete
|
|
} = useRole();
|
|
|
|
const roleFormRef = ref();
|
|
|
|
function getRoleFormData(row?: RoleDTO) {
|
|
return {
|
|
roleId: row?.roleId ?? 0,
|
|
dataScope: row?.dataScope?.toString() ?? "",
|
|
menuIds: row?.selectedMenuList ?? [],
|
|
remark: row?.remark ?? "",
|
|
roleKey: row?.roleKey ?? "",
|
|
roleName: row?.roleName ?? "",
|
|
roleSort: row?.roleSort ?? 1,
|
|
status: row?.status?.toString() ?? ""
|
|
};
|
|
}
|
|
|
|
async function submitRoleForm(
|
|
type: "add" | "update",
|
|
formData: AddRoleCommand & Partial<UpdateRoleCommand>,
|
|
done: () => void
|
|
) {
|
|
if (type === "add") {
|
|
await addRoleApi(formData);
|
|
} else {
|
|
await updateRoleApi(formData as UpdateRoleCommand);
|
|
}
|
|
ElMessage.success("提交成功");
|
|
done();
|
|
onSearch();
|
|
}
|
|
|
|
async function openDialog(type: "add" | "update", row?: RoleDTO) {
|
|
try {
|
|
await getMenuTree();
|
|
if (row) {
|
|
const { data } = await getRoleInfoApi(row.roleId);
|
|
row.selectedMenuList = data.selectedMenuList;
|
|
row.selectedDeptList = data.selectedDeptList;
|
|
}
|
|
} catch (e) {
|
|
console.error(e);
|
|
ElMessage.error((e as Error)?.message || "加载菜单失败");
|
|
return;
|
|
}
|
|
const formInline = getRoleFormData(row);
|
|
addDialog({
|
|
title: type === "add" ? "新增角色" : "更新角色",
|
|
props: {
|
|
formInline,
|
|
menuOptions: menuTree.value
|
|
},
|
|
width: "40%",
|
|
draggable: true,
|
|
fullscreenIcon: true,
|
|
closeOnClickModal: false,
|
|
contentRenderer: () => h(RoleFormModal, { ref: roleFormRef }),
|
|
beforeSure: (done, { options }) => {
|
|
const formRuleRef = roleFormRef.value.getFormRuleRef();
|
|
const formData = options.props.formInline as AddRoleCommand &
|
|
Partial<UpdateRoleCommand>;
|
|
formRuleRef.validate(valid => {
|
|
if (valid) {
|
|
submitRoleForm(type, formData, () => done());
|
|
}
|
|
});
|
|
}
|
|
});
|
|
}
|
|
|
|
function handleSelectionChange(rows: RoleDTO[]) {
|
|
void rows;
|
|
}
|
|
|
|
function handleSizeChange() {
|
|
onSearch();
|
|
}
|
|
|
|
function handleCurrentChange() {
|
|
onSearch();
|
|
}
|
|
</script>
|
|
<template>
|
|
<div class="main">
|
|
<el-form
|
|
ref="formRef"
|
|
:inline="true"
|
|
:model="form"
|
|
class="search-form bg-bg_color w-[99/100] pl-8 pt-[12px]"
|
|
>
|
|
<el-form-item label="角色名称:" prop="name">
|
|
<el-input
|
|
v-model="form.roleName"
|
|
placeholder="请输入角色名称"
|
|
clearable
|
|
class="!w-[200px]"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="角色标识:" prop="code">
|
|
<el-input
|
|
v-model="form.roleKey"
|
|
placeholder="请输入角色标识"
|
|
clearable
|
|
class="!w-[180px]"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="状态:" prop="status">
|
|
<el-select
|
|
v-model="form.status"
|
|
placeholder="请选择状态"
|
|
clearable
|
|
class="!w-[180px]"
|
|
>
|
|
<el-option label="已启用" value="1" />
|
|
<el-option label="已停用" value="0" />
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button
|
|
type="primary"
|
|
:icon="useRenderIcon(Search)"
|
|
:loading="loading"
|
|
@click="onSearch"
|
|
>
|
|
搜索
|
|
</el-button>
|
|
<el-button :icon="useRenderIcon(Refresh)" @click="resetForm(formRef)">
|
|
重置
|
|
</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
|
|
<PureTableBar
|
|
title="角色列表(仅演示,操作后不生效)"
|
|
:columns="columns"
|
|
@refresh="onSearch"
|
|
>
|
|
<template #buttons>
|
|
<el-button
|
|
type="primary"
|
|
:icon="useRenderIcon(AddFill)"
|
|
@click="openDialog('add')"
|
|
>
|
|
新增角色
|
|
</el-button>
|
|
</template>
|
|
<template v-slot="{ size, dynamicColumns }">
|
|
<pure-table
|
|
border
|
|
align-whole="center"
|
|
showOverflowTooltip
|
|
table-layout="auto"
|
|
:loading="loading"
|
|
:size="size"
|
|
adaptive
|
|
:data="dataList"
|
|
:columns="dynamicColumns"
|
|
:pagination="pagination"
|
|
:paginationSmall="size === 'small' ? true : false"
|
|
:header-cell-style="{
|
|
background: 'var(--el-table-row-hover-bg-color)',
|
|
color: 'var(--el-text-color-primary)'
|
|
}"
|
|
@selection-change="handleSelectionChange"
|
|
@page-size-change="handleSizeChange"
|
|
@page-current-change="handleCurrentChange"
|
|
>
|
|
<template #operation="{ row }">
|
|
<el-button
|
|
class="reset-margin"
|
|
link
|
|
type="primary"
|
|
:size="size"
|
|
:icon="useRenderIcon(EditPen)"
|
|
@click="openDialog('update', row)"
|
|
>
|
|
修改
|
|
</el-button>
|
|
<el-popconfirm
|
|
:title="`是否确认删除角色名称为${row.roleName}的这条数据`"
|
|
@confirm="handleDelete(row)"
|
|
>
|
|
<template #reference>
|
|
<el-button
|
|
class="reset-margin"
|
|
link
|
|
type="primary"
|
|
:size="size"
|
|
:icon="useRenderIcon(Delete)"
|
|
>
|
|
删除
|
|
</el-button>
|
|
</template>
|
|
</el-popconfirm>
|
|
<!-- <el-dropdown>
|
|
<el-button
|
|
class="ml-3 mt-[2px]"
|
|
link
|
|
type="primary"
|
|
:size="size"
|
|
:icon="useRenderIcon(More)"
|
|
/>
|
|
<template #dropdown>
|
|
<el-dropdown-menu>
|
|
<el-dropdown-item>
|
|
<el-button
|
|
:class="buttonClass"
|
|
link
|
|
type="primary"
|
|
:size="size"
|
|
:icon="useRenderIcon(Menu)"
|
|
@click="handleMenu"
|
|
>
|
|
菜单权限
|
|
</el-button>
|
|
</el-dropdown-item>
|
|
<el-dropdown-item>
|
|
<el-button
|
|
:class="buttonClass"
|
|
link
|
|
type="primary"
|
|
:size="size"
|
|
:icon="useRenderIcon(Database)"
|
|
@click="handleDatabase"
|
|
>
|
|
数据权限
|
|
</el-button>
|
|
</el-dropdown-item>
|
|
</el-dropdown-menu>
|
|
</template>
|
|
</el-dropdown> -->
|
|
</template>
|
|
</pure-table>
|
|
</template>
|
|
</PureTableBar>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
:deep(.el-dropdown-menu__item i) {
|
|
margin: 0;
|
|
}
|
|
|
|
.search-form {
|
|
:deep(.el-form-item) {
|
|
margin-bottom: 12px;
|
|
}
|
|
}
|
|
</style>
|