2023-05-09 15:21:05 +08:00
|
|
|
<template>
|
2023-05-17 09:56:28 +08:00
|
|
|
<div class="app-container">
|
|
|
|
<el-form
|
2023-05-17 12:37:48 +08:00
|
|
|
:model="queryParams"
|
2023-05-17 09:56:28 +08:00
|
|
|
ref="queryRef"
|
2023-05-17 12:37:48 +08:00
|
|
|
v-show="showSearch"
|
2023-05-17 09:56:28 +08:00
|
|
|
:inline="true"
|
|
|
|
label-width="68px"
|
|
|
|
>
|
|
|
|
<el-form-item label="角色名称" prop="roleName">
|
|
|
|
<el-input
|
|
|
|
v-model="queryParams.roleName"
|
|
|
|
placeholder="请输入角色名称"
|
2023-05-17 12:37:48 +08:00
|
|
|
clearable
|
2023-05-17 09:56:28 +08:00
|
|
|
style="width: 240px"
|
|
|
|
@keyup.enter="handleQuery"
|
2023-05-09 15:21:05 +08:00
|
|
|
/>
|
2023-05-17 09:56:28 +08:00
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="权限字符" prop="roleKey">
|
|
|
|
<el-input
|
|
|
|
v-model="queryParams.roleKey"
|
|
|
|
placeholder="请输入权限字符"
|
2023-05-17 12:37:48 +08:00
|
|
|
clearable
|
2023-05-17 09:56:28 +08:00
|
|
|
style="width: 240px"
|
|
|
|
@keyup.enter="handleQuery"
|
|
|
|
/>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="状态" prop="status">
|
|
|
|
<el-select
|
|
|
|
v-model="queryParams.status"
|
|
|
|
placeholder="角色状态"
|
2023-05-17 12:37:48 +08:00
|
|
|
clearable
|
2023-05-17 09:56:28 +08:00
|
|
|
style="width: 240px"
|
|
|
|
>
|
|
|
|
<el-option
|
|
|
|
v-for="dict in sys_normal_disable"
|
|
|
|
:key="dict.value"
|
|
|
|
:label="dict.label"
|
|
|
|
:value="dict.value"
|
|
|
|
/>
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="创建时间" style="width: 308px">
|
|
|
|
<el-date-picker
|
|
|
|
v-model="dateRange"
|
2023-05-17 12:37:48 +08:00
|
|
|
value-format="YYYY-MM-DD"
|
|
|
|
type="daterange"
|
2023-05-17 09:56:28 +08:00
|
|
|
range-separator="-"
|
|
|
|
start-placeholder="开始日期"
|
2023-05-17 12:37:48 +08:00
|
|
|
end-placeholder="结束日期"
|
2023-05-17 09:56:28 +08:00
|
|
|
></el-date-picker>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item>
|
2023-05-17 12:37:48 +08:00
|
|
|
<el-button type="primary" icon="Search" @click="handleQuery"
|
2023-05-17 09:56:28 +08:00
|
|
|
>搜索</el-button
|
|
|
|
>
|
|
|
|
<el-button icon="Refresh" @click="resetQuery">重置</el-button>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
|
<el-col :span="1.5">
|
|
|
|
<el-button
|
|
|
|
type="primary"
|
2023-05-17 12:37:48 +08:00
|
|
|
plain
|
|
|
|
icon="Plus"
|
2023-05-17 09:56:28 +08:00
|
|
|
@click="handleAdd"
|
2023-05-17 12:37:48 +08:00
|
|
|
v-hasPermi="['system:role:add']"
|
|
|
|
>新增</el-button
|
|
|
|
>
|
2023-05-17 09:56:28 +08:00
|
|
|
</el-col>
|
|
|
|
<el-col :span="1.5">
|
|
|
|
<el-button
|
|
|
|
type="success"
|
2023-05-17 12:37:48 +08:00
|
|
|
plain
|
|
|
|
icon="Edit"
|
|
|
|
:disabled="single"
|
2023-05-17 09:56:28 +08:00
|
|
|
@click="handleUpdate"
|
2023-05-17 12:37:48 +08:00
|
|
|
v-hasPermi="['system:role:edit']"
|
|
|
|
>修改</el-button
|
|
|
|
>
|
2023-05-17 09:56:28 +08:00
|
|
|
</el-col>
|
|
|
|
<el-col :span="1.5">
|
|
|
|
<el-button
|
|
|
|
type="danger"
|
2023-05-17 12:37:48 +08:00
|
|
|
plain
|
|
|
|
icon="Delete"
|
|
|
|
:disabled="multiple"
|
2023-05-17 09:56:28 +08:00
|
|
|
@click="handleDelete"
|
2023-05-17 12:37:48 +08:00
|
|
|
v-hasPermi="['system:role:remove']"
|
|
|
|
>删除</el-button
|
|
|
|
>
|
2023-05-17 09:56:28 +08:00
|
|
|
</el-col>
|
|
|
|
<el-col :span="1.5">
|
|
|
|
<el-button
|
|
|
|
type="warning"
|
2023-05-17 12:37:48 +08:00
|
|
|
plain
|
|
|
|
icon="Download"
|
2023-05-17 09:56:28 +08:00
|
|
|
@click="handleExport"
|
2023-05-17 12:37:48 +08:00
|
|
|
v-hasPermi="['system:role:export']"
|
|
|
|
>导出</el-button
|
|
|
|
>
|
2023-05-17 09:56:28 +08:00
|
|
|
</el-col>
|
|
|
|
<right-toolbar
|
|
|
|
v-model:showSearch="showSearch"
|
|
|
|
@queryTable="getList"
|
|
|
|
></right-toolbar>
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
<!-- 表格数据 -->
|
|
|
|
<el-table
|
|
|
|
v-loading="loading"
|
|
|
|
:data="roleList"
|
|
|
|
@selection-change="handleSelectionChange"
|
|
|
|
>
|
2023-05-17 12:37:48 +08:00
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
2023-05-17 09:56:28 +08:00
|
|
|
<el-table-column label="角色编号" prop="roleId" width="120" />
|
|
|
|
<el-table-column
|
|
|
|
label="角色名称"
|
|
|
|
prop="roleName"
|
2023-05-17 12:37:48 +08:00
|
|
|
:show-overflow-tooltip="true"
|
2023-05-17 09:56:28 +08:00
|
|
|
width="150"
|
|
|
|
/>
|
|
|
|
<el-table-column
|
|
|
|
label="权限字符"
|
|
|
|
prop="roleKey"
|
2023-05-17 12:37:48 +08:00
|
|
|
:show-overflow-tooltip="true"
|
2023-05-17 09:56:28 +08:00
|
|
|
width="150"
|
|
|
|
/>
|
|
|
|
<el-table-column label="显示顺序" prop="roleSort" width="100" />
|
2023-05-17 12:37:48 +08:00
|
|
|
<el-table-column label="状态" align="center" width="100">
|
2023-05-17 09:56:28 +08:00
|
|
|
<template #default="scope">
|
|
|
|
<el-switch
|
|
|
|
v-model="scope.row.status"
|
2023-05-17 12:37:48 +08:00
|
|
|
active-value="0"
|
|
|
|
inactive-value="1"
|
2023-05-17 09:56:28 +08:00
|
|
|
@change="handleStatusChange(scope.row)"
|
|
|
|
></el-switch>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
2023-05-17 12:37:48 +08:00
|
|
|
<el-table-column label="创建时间" align="center" prop="createTime">
|
2023-05-17 09:56:28 +08:00
|
|
|
<template #default="scope">
|
|
|
|
<span>{{ parseTime(scope.row.createTime) }}</span>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
2023-05-17 12:37:48 +08:00
|
|
|
label="操作"
|
2023-05-17 09:56:28 +08:00
|
|
|
align="center"
|
|
|
|
class-name="small-padding fixed-width"
|
|
|
|
>
|
|
|
|
<template #default="scope">
|
|
|
|
<el-tooltip
|
|
|
|
content="修改"
|
|
|
|
placement="top"
|
2023-05-17 12:37:48 +08:00
|
|
|
v-if="scope.row.roleId !== 1"
|
2023-05-17 09:56:28 +08:00
|
|
|
>
|
|
|
|
<el-button
|
|
|
|
link
|
|
|
|
type="primary"
|
2023-05-17 12:37:48 +08:00
|
|
|
icon="Edit"
|
2023-05-17 09:56:28 +08:00
|
|
|
@click="handleUpdate(scope.row)"
|
2023-05-17 12:37:48 +08:00
|
|
|
v-hasPermi="['system:role:edit']"
|
2023-05-17 09:56:28 +08:00
|
|
|
></el-button>
|
|
|
|
</el-tooltip>
|
|
|
|
<el-tooltip
|
|
|
|
content="删除"
|
|
|
|
placement="top"
|
2023-05-17 12:37:48 +08:00
|
|
|
v-if="scope.row.roleId !== 1"
|
2023-05-17 09:56:28 +08:00
|
|
|
>
|
|
|
|
<el-button
|
|
|
|
link
|
|
|
|
type="primary"
|
2023-05-17 12:37:48 +08:00
|
|
|
icon="Delete"
|
2023-05-17 09:56:28 +08:00
|
|
|
@click="handleDelete(scope.row)"
|
2023-05-17 12:37:48 +08:00
|
|
|
v-hasPermi="['system:role:remove']"
|
2023-05-17 09:56:28 +08:00
|
|
|
></el-button>
|
|
|
|
</el-tooltip>
|
|
|
|
<el-tooltip
|
|
|
|
content="数据权限"
|
|
|
|
placement="top"
|
2023-05-17 12:37:48 +08:00
|
|
|
v-if="scope.row.roleId !== 1"
|
2023-05-17 09:56:28 +08:00
|
|
|
>
|
|
|
|
<el-button
|
|
|
|
link
|
|
|
|
type="primary"
|
2023-05-17 12:37:48 +08:00
|
|
|
icon="CircleCheck"
|
2023-05-17 09:56:28 +08:00
|
|
|
@click="handleDataScope(scope.row)"
|
2023-05-17 12:37:48 +08:00
|
|
|
v-hasPermi="['system:role:edit']"
|
2023-05-17 09:56:28 +08:00
|
|
|
></el-button>
|
|
|
|
</el-tooltip>
|
|
|
|
<el-tooltip
|
|
|
|
content="分配用户"
|
|
|
|
placement="top"
|
2023-05-17 12:37:48 +08:00
|
|
|
v-if="scope.row.roleId !== 1"
|
2023-05-17 09:56:28 +08:00
|
|
|
>
|
|
|
|
<el-button
|
|
|
|
link
|
|
|
|
type="primary"
|
2023-05-17 12:37:48 +08:00
|
|
|
icon="User"
|
2023-05-17 09:56:28 +08:00
|
|
|
@click="handleAuthUser(scope.row)"
|
2023-05-17 12:37:48 +08:00
|
|
|
v-hasPermi="['system:role:edit']"
|
2023-05-17 09:56:28 +08:00
|
|
|
></el-button>
|
|
|
|
</el-tooltip>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
<pagination
|
|
|
|
v-show="total > 0"
|
|
|
|
:total="total"
|
2023-05-17 12:37:48 +08:00
|
|
|
v-model:page="queryParams.pageNum"
|
|
|
|
v-model:limit="queryParams.pageSize"
|
2023-05-17 09:56:28 +08:00
|
|
|
@pagination="getList"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<!-- 添加或修改角色配置对话框 -->
|
2023-05-17 12:37:48 +08:00
|
|
|
<el-dialog :title="title" v-model="open" width="500px" append-to-body>
|
2023-05-17 09:56:28 +08:00
|
|
|
<el-form ref="roleRef" :model="form" :rules="rules" label-width="100px">
|
|
|
|
<el-form-item label="角色名称" prop="roleName">
|
|
|
|
<el-input v-model="form.roleName" placeholder="请输入角色名称" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item prop="roleKey">
|
|
|
|
<template #label>
|
|
|
|
<span>
|
|
|
|
<el-tooltip
|
|
|
|
content="控制器中定义的权限字符,如:@PreAuthorize(`@ss.hasRole('admin')`)"
|
|
|
|
placement="top"
|
|
|
|
>
|
|
|
|
<el-icon><question-filled /></el-icon>
|
|
|
|
</el-tooltip>
|
|
|
|
权限字符
|
|
|
|
</span>
|
|
|
|
</template>
|
|
|
|
<el-input v-model="form.roleKey" placeholder="请输入权限字符" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="角色顺序" prop="roleSort">
|
|
|
|
<el-input-number
|
|
|
|
v-model="form.roleSort"
|
|
|
|
controls-position="right"
|
2023-05-17 12:37:48 +08:00
|
|
|
:min="0"
|
2023-05-17 09:56:28 +08:00
|
|
|
/>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="状态">
|
|
|
|
<el-radio-group v-model="form.status">
|
|
|
|
<el-radio
|
|
|
|
v-for="dict in sys_normal_disable"
|
|
|
|
:key="dict.value"
|
|
|
|
:label="dict.value"
|
2023-05-17 12:37:48 +08:00
|
|
|
>{{ dict.label }}</el-radio
|
|
|
|
>
|
2023-05-17 09:56:28 +08:00
|
|
|
</el-radio-group>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="菜单权限">
|
|
|
|
<el-checkbox
|
|
|
|
v-model="menuExpand"
|
|
|
|
@change="handleCheckedTreeExpand($event, 'menu')"
|
2023-05-17 12:37:48 +08:00
|
|
|
>展开/折叠</el-checkbox
|
|
|
|
>
|
2023-05-17 09:56:28 +08:00
|
|
|
<el-checkbox
|
|
|
|
v-model="menuNodeAll"
|
|
|
|
@change="handleCheckedTreeNodeAll($event, 'menu')"
|
2023-05-17 12:37:48 +08:00
|
|
|
>全选/全不选</el-checkbox
|
|
|
|
>
|
|
|
|
<el-checkbox
|
|
|
|
v-model="form.menuCheckStrictly"
|
|
|
|
@change="handleCheckedTreeConnect($event, 'menu')"
|
|
|
|
>父子联动</el-checkbox
|
|
|
|
>
|
2023-05-17 09:56:28 +08:00
|
|
|
<el-tree
|
|
|
|
class="tree-border"
|
2023-05-17 12:37:48 +08:00
|
|
|
:data="menuOptions"
|
2023-05-17 09:56:28 +08:00
|
|
|
show-checkbox
|
2023-05-17 12:37:48 +08:00
|
|
|
ref="menuRef"
|
|
|
|
node-key="id"
|
|
|
|
:check-strictly="!form.menuCheckStrictly"
|
|
|
|
empty-text="加载中,请稍候"
|
|
|
|
:props="{ label: 'label', children: 'children' }"
|
2023-05-17 09:56:28 +08:00
|
|
|
></el-tree>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="备注">
|
|
|
|
<el-input
|
|
|
|
v-model="form.remark"
|
|
|
|
type="textarea"
|
2023-05-17 12:37:48 +08:00
|
|
|
placeholder="请输入内容"
|
2023-05-17 09:56:28 +08:00
|
|
|
></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
<template #footer>
|
|
|
|
<div class="dialog-footer">
|
|
|
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
|
<el-button @click="cancel">取 消</el-button>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
<!-- 分配角色数据权限对话框 -->
|
|
|
|
<el-dialog
|
|
|
|
:title="title"
|
2023-05-17 12:37:48 +08:00
|
|
|
v-model="openDataScope"
|
2023-05-17 09:56:28 +08:00
|
|
|
width="500px"
|
2023-05-17 12:37:48 +08:00
|
|
|
append-to-body
|
2023-05-17 09:56:28 +08:00
|
|
|
>
|
|
|
|
<el-form :model="form" label-width="80px">
|
|
|
|
<el-form-item label="角色名称">
|
|
|
|
<el-input v-model="form.roleName" :disabled="true" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="权限字符">
|
|
|
|
<el-input v-model="form.roleKey" :disabled="true" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="权限范围">
|
|
|
|
<el-select v-model="form.dataScope" @change="dataScopeSelectChange">
|
|
|
|
<el-option
|
|
|
|
v-for="item in dataScopeOptions"
|
|
|
|
:key="item.value"
|
|
|
|
:label="item.label"
|
|
|
|
:value="item.value"
|
|
|
|
></el-option>
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
2023-05-17 12:37:48 +08:00
|
|
|
<el-form-item label="数据权限" v-show="form.dataScope == 2">
|
2023-05-17 09:56:28 +08:00
|
|
|
<el-checkbox
|
|
|
|
v-model="deptExpand"
|
|
|
|
@change="handleCheckedTreeExpand($event, 'dept')"
|
2023-05-17 12:37:48 +08:00
|
|
|
>展开/折叠</el-checkbox
|
|
|
|
>
|
2023-05-17 09:56:28 +08:00
|
|
|
<el-checkbox
|
|
|
|
v-model="deptNodeAll"
|
|
|
|
@change="handleCheckedTreeNodeAll($event, 'dept')"
|
2023-05-17 12:37:48 +08:00
|
|
|
>全选/全不选</el-checkbox
|
|
|
|
>
|
|
|
|
<el-checkbox
|
|
|
|
v-model="form.deptCheckStrictly"
|
|
|
|
@change="handleCheckedTreeConnect($event, 'dept')"
|
|
|
|
>父子联动</el-checkbox
|
|
|
|
>
|
2023-05-17 09:56:28 +08:00
|
|
|
<el-tree
|
|
|
|
class="tree-border"
|
2023-05-17 12:37:48 +08:00
|
|
|
:data="deptOptions"
|
|
|
|
show-checkbox
|
2023-05-17 09:56:28 +08:00
|
|
|
default-expand-all
|
2023-05-17 12:37:48 +08:00
|
|
|
ref="deptRef"
|
2023-05-17 09:56:28 +08:00
|
|
|
node-key="id"
|
2023-05-17 12:37:48 +08:00
|
|
|
:check-strictly="!form.deptCheckStrictly"
|
|
|
|
empty-text="加载中,请稍候"
|
|
|
|
:props="{ label: 'label', children: 'children' }"
|
2023-05-17 09:56:28 +08:00
|
|
|
></el-tree>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
<template #footer>
|
|
|
|
<div class="dialog-footer">
|
|
|
|
<el-button type="primary" @click="submitDataScope">确 定</el-button>
|
|
|
|
<el-button @click="cancelDataScope">取 消</el-button>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</el-dialog>
|
|
|
|
</div>
|
2023-05-09 15:21:05 +08:00
|
|
|
</template>
|
|
|
|
|
2023-05-17 12:37:48 +08:00
|
|
|
<script setup name="Role" lang="jsx">
|
2023-05-09 15:21:05 +08:00
|
|
|
import {
|
2023-05-17 09:56:28 +08:00
|
|
|
addRole,
|
|
|
|
changeRoleStatus,
|
|
|
|
dataScope,
|
|
|
|
delRole,
|
|
|
|
getRole,
|
|
|
|
listRole,
|
|
|
|
updateRole,
|
2023-05-17 12:37:48 +08:00
|
|
|
deptTreeSelect,
|
2023-05-09 15:21:05 +08:00
|
|
|
} from "@/api/system/role";
|
2023-05-17 09:56:28 +08:00
|
|
|
import {
|
|
|
|
roleMenuTreeselect,
|
2023-05-17 12:37:48 +08:00
|
|
|
treeSelect as menuTreeselect,
|
2023-05-17 09:56:28 +08:00
|
|
|
} from "@/api/system/menu";
|
|
|
|
import { sys_normal_disable } from "@/constant/dict";
|
2023-05-17 12:37:48 +08:00
|
|
|
import { ElMessageBox } from "element-plus";
|
2023-05-09 15:21:05 +08:00
|
|
|
|
|
|
|
const router = useRouter();
|
2023-05-17 09:56:28 +08:00
|
|
|
const { proxy } = getCurrentInstance();
|
2023-05-17 12:37:48 +08:00
|
|
|
|
2023-05-09 15:21:05 +08:00
|
|
|
const roleList = ref([]);
|
|
|
|
const open = ref(false);
|
|
|
|
const loading = ref(true);
|
|
|
|
const showSearch = ref(true);
|
|
|
|
const ids = ref([]);
|
|
|
|
const single = ref(true);
|
|
|
|
const multiple = ref(true);
|
|
|
|
const total = ref(0);
|
|
|
|
const title = ref("");
|
|
|
|
const dateRange = ref([]);
|
|
|
|
const menuOptions = ref([]);
|
|
|
|
const menuExpand = ref(false);
|
|
|
|
const menuNodeAll = ref(false);
|
|
|
|
const deptExpand = ref(true);
|
|
|
|
const deptNodeAll = ref(false);
|
|
|
|
const deptOptions = ref([]);
|
|
|
|
const openDataScope = ref(false);
|
|
|
|
const menuRef = ref(null);
|
|
|
|
const deptRef = ref(null);
|
|
|
|
|
|
|
|
/** 数据范围选项*/
|
|
|
|
const dataScopeOptions = ref([
|
2023-05-17 09:56:28 +08:00
|
|
|
{ value: "1", label: "全部数据权限" },
|
|
|
|
{ value: "2", label: "自定数据权限" },
|
|
|
|
{ value: "3", label: "本部门数据权限" },
|
|
|
|
{ value: "4", label: "本部门及以下数据权限" },
|
|
|
|
{ value: "5", label: "仅本人数据权限" },
|
2023-05-09 15:21:05 +08:00
|
|
|
]);
|
|
|
|
|
|
|
|
const data = reactive({
|
2023-05-17 09:56:28 +08:00
|
|
|
form: {},
|
|
|
|
queryParams: {
|
|
|
|
pageNum: 1,
|
|
|
|
pageSize: 10,
|
|
|
|
roleName: undefined,
|
|
|
|
roleKey: undefined,
|
|
|
|
status: undefined,
|
|
|
|
},
|
|
|
|
rules: {
|
|
|
|
roleName: [
|
|
|
|
{ required: true, message: "角色名称不能为空", trigger: "blur" },
|
|
|
|
],
|
|
|
|
roleKey: [{ required: true, message: "权限字符不能为空", trigger: "blur" }],
|
|
|
|
roleSort: [
|
|
|
|
{ required: true, message: "角色顺序不能为空", trigger: "blur" },
|
|
|
|
],
|
|
|
|
},
|
2023-05-09 15:21:05 +08:00
|
|
|
});
|
|
|
|
|
2023-05-17 09:56:28 +08:00
|
|
|
const { queryParams, form, rules } = toRefs(data);
|
2023-05-09 15:21:05 +08:00
|
|
|
|
|
|
|
/** 查询角色列表 */
|
|
|
|
function getList() {
|
2023-05-17 09:56:28 +08:00
|
|
|
loading.value = true;
|
|
|
|
listRole(proxy.addDateRange(queryParams.value, dateRange.value)).then(
|
|
|
|
(response) => {
|
|
|
|
roleList.value = response.rows;
|
|
|
|
total.value = response.total;
|
|
|
|
loading.value = false;
|
|
|
|
}
|
|
|
|
);
|
2023-05-09 15:21:05 +08:00
|
|
|
}
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
function handleQuery() {
|
2023-05-17 09:56:28 +08:00
|
|
|
queryParams.value.pageNum = 1;
|
|
|
|
getList();
|
2023-05-09 15:21:05 +08:00
|
|
|
}
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
function resetQuery() {
|
2023-05-17 09:56:28 +08:00
|
|
|
dateRange.value = [];
|
|
|
|
proxy.resetForm("queryRef");
|
|
|
|
handleQuery();
|
2023-05-09 15:21:05 +08:00
|
|
|
}
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
function handleDelete(row) {
|
2023-05-17 09:56:28 +08:00
|
|
|
const roleIds = row.roleId || ids.value;
|
|
|
|
const roleNames = row.roleId
|
|
|
|
? [row.roleName]
|
|
|
|
: roleList.value
|
|
|
|
.filter((el) => roleIds.includes(el.roleId))
|
|
|
|
.map((el) => el.roleName);
|
|
|
|
const messageVnode = () => (
|
|
|
|
<>
|
|
|
|
{roleNames.map((roleName, idx) => (
|
|
|
|
<el-tag
|
|
|
|
key={idx}
|
|
|
|
style={{
|
|
|
|
marginLeft: idx >= 1 ? "4px" : 0,
|
|
|
|
}}
|
|
|
|
type="warning"
|
|
|
|
>
|
|
|
|
{roleName}
|
|
|
|
</el-tag>
|
|
|
|
))}
|
2023-05-09 15:21:05 +08:00
|
|
|
</>
|
2023-05-17 09:56:28 +08:00
|
|
|
);
|
|
|
|
ElMessageBox.confirm(messageVnode, "确认删除", {
|
|
|
|
type: "danger",
|
|
|
|
"confirm-button-class": "confirm-delete-button",
|
|
|
|
})
|
|
|
|
.then(function () {
|
|
|
|
return delRole(roleIds);
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
getList();
|
|
|
|
proxy.$modal.msgSuccess("删除成功");
|
|
|
|
})
|
|
|
|
.catch(() => {});
|
2023-05-09 15:21:05 +08:00
|
|
|
}
|
|
|
|
/** 导出按钮操作 */
|
|
|
|
function handleExport() {
|
2023-05-17 09:56:28 +08:00
|
|
|
proxy.download(
|
|
|
|
"system/role/export",
|
|
|
|
{
|
|
|
|
...queryParams.value,
|
|
|
|
},
|
|
|
|
`role_${new Date().getTime()}.xlsx`
|
|
|
|
);
|
2023-05-09 15:21:05 +08:00
|
|
|
}
|
|
|
|
/** 多选框选中数据 */
|
|
|
|
function handleSelectionChange(selection) {
|
2023-05-17 09:56:28 +08:00
|
|
|
ids.value = selection.map((item) => item.roleId);
|
|
|
|
single.value = selection.length != 1;
|
|
|
|
multiple.value = !selection.length;
|
2023-05-09 15:21:05 +08:00
|
|
|
}
|
|
|
|
/** 角色状态修改 */
|
|
|
|
function handleStatusChange(row) {
|
2023-05-17 12:37:48 +08:00
|
|
|
let text = row.status === "0" ? "启用" : "停用";
|
2023-05-17 09:56:28 +08:00
|
|
|
proxy.$modal
|
2023-05-17 12:37:48 +08:00
|
|
|
.confirm('确认要"' + text + '""' + row.roleName + '"角色吗?')
|
2023-05-17 09:56:28 +08:00
|
|
|
.then(function () {
|
|
|
|
return changeRoleStatus(row.roleId, row.status);
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
proxy.$modal.msgSuccess(text + "成功");
|
|
|
|
})
|
|
|
|
.catch(function () {
|
|
|
|
row.status = row.status === "0" ? "1" : "0";
|
2023-05-09 15:21:05 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
/** 更多操作 */
|
|
|
|
function handleCommand(command, row) {
|
2023-05-17 09:56:28 +08:00
|
|
|
switch (command) {
|
|
|
|
case "handleDataScope":
|
|
|
|
handleDataScope(row);
|
|
|
|
break;
|
|
|
|
case "handleAuthUser":
|
|
|
|
handleAuthUser(row);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2023-05-09 15:21:05 +08:00
|
|
|
}
|
|
|
|
/** 分配用户 */
|
|
|
|
function handleAuthUser(row) {
|
2023-05-17 09:56:28 +08:00
|
|
|
router.push("/system/role-auth/user/" + row.roleId);
|
2023-05-09 15:21:05 +08:00
|
|
|
}
|
|
|
|
/** 查询菜单树结构 */
|
2023-05-17 12:37:48 +08:00
|
|
|
function getMenuTreeselect() {
|
|
|
|
menuTreeselect().then((response) => {
|
2023-05-17 09:56:28 +08:00
|
|
|
menuOptions.value = response.data;
|
|
|
|
});
|
2023-05-09 15:21:05 +08:00
|
|
|
}
|
|
|
|
/** 所有部门节点数据 */
|
|
|
|
function getDeptAllCheckedKeys() {
|
2023-05-17 09:56:28 +08:00
|
|
|
// 目前被选中的部门节点
|
|
|
|
let checkedKeys = deptRef.value.getCheckedKeys();
|
|
|
|
// 半选中的部门节点
|
|
|
|
let halfCheckedKeys = deptRef.value.getHalfCheckedKeys();
|
|
|
|
checkedKeys.unshift.apply(checkedKeys, halfCheckedKeys);
|
|
|
|
return checkedKeys;
|
2023-05-09 15:21:05 +08:00
|
|
|
}
|
|
|
|
/** 重置新增的表单以及其他数据 */
|
|
|
|
function reset() {
|
2023-05-17 09:56:28 +08:00
|
|
|
if (menuRef.value != undefined) {
|
|
|
|
menuRef.value.setCheckedKeys([]);
|
|
|
|
}
|
|
|
|
menuExpand.value = false;
|
|
|
|
menuNodeAll.value = false;
|
|
|
|
deptExpand.value = true;
|
|
|
|
deptNodeAll.value = false;
|
|
|
|
form.value = {
|
|
|
|
roleId: undefined,
|
|
|
|
roleName: undefined,
|
|
|
|
roleKey: undefined,
|
|
|
|
roleSort: 0,
|
2023-05-17 12:37:48 +08:00
|
|
|
status: "0",
|
2023-05-17 09:56:28 +08:00
|
|
|
menuIds: [],
|
|
|
|
deptIds: [],
|
2023-05-17 12:37:48 +08:00
|
|
|
menuCheckStrictly: true,
|
|
|
|
deptCheckStrictly: true,
|
2023-05-17 09:56:28 +08:00
|
|
|
remark: undefined,
|
|
|
|
};
|
|
|
|
proxy.resetForm("roleRef");
|
2023-05-09 15:21:05 +08:00
|
|
|
}
|
|
|
|
/** 添加角色 */
|
|
|
|
function handleAdd() {
|
2023-05-17 09:56:28 +08:00
|
|
|
reset();
|
2023-05-17 12:37:48 +08:00
|
|
|
getMenuTreeselect();
|
2023-05-17 09:56:28 +08:00
|
|
|
open.value = true;
|
|
|
|
title.value = "添加角色";
|
2023-05-09 15:21:05 +08:00
|
|
|
}
|
|
|
|
/** 修改角色 */
|
|
|
|
function handleUpdate(row) {
|
2023-05-17 09:56:28 +08:00
|
|
|
reset();
|
|
|
|
const roleId = row.roleId || ids.value;
|
|
|
|
const roleMenu = getRoleMenuTreeselect(roleId);
|
|
|
|
getRole(roleId).then((response) => {
|
|
|
|
form.value = response.data;
|
|
|
|
form.value.roleSort = Number(form.value.roleSort);
|
|
|
|
open.value = true;
|
|
|
|
nextTick(() => {
|
|
|
|
roleMenu.then((res) => {
|
|
|
|
let checkedKeys = res.checkedKeys;
|
|
|
|
checkedKeys.forEach((v) => {
|
|
|
|
nextTick(() => {
|
|
|
|
menuRef.value.setChecked(v, true, false);
|
|
|
|
});
|
2023-05-09 15:21:05 +08:00
|
|
|
});
|
2023-05-17 09:56:28 +08:00
|
|
|
});
|
2023-05-09 15:21:05 +08:00
|
|
|
});
|
2023-05-17 09:56:28 +08:00
|
|
|
title.value = "修改角色";
|
|
|
|
});
|
2023-05-09 15:21:05 +08:00
|
|
|
}
|
|
|
|
/** 根据角色ID查询菜单树结构 */
|
|
|
|
function getRoleMenuTreeselect(roleId) {
|
2023-05-17 09:56:28 +08:00
|
|
|
return roleMenuTreeselect(roleId).then((response) => {
|
|
|
|
menuOptions.value = response.menus;
|
|
|
|
return response;
|
|
|
|
});
|
2023-05-09 15:21:05 +08:00
|
|
|
}
|
|
|
|
/** 根据角色ID查询部门树结构 */
|
|
|
|
function getDeptTree(roleId) {
|
2023-05-17 09:56:28 +08:00
|
|
|
return deptTreeSelect(roleId).then((response) => {
|
|
|
|
deptOptions.value = response.depts;
|
|
|
|
return response;
|
|
|
|
});
|
2023-05-09 15:21:05 +08:00
|
|
|
}
|
|
|
|
/** 树权限(展开/折叠)*/
|
|
|
|
function handleCheckedTreeExpand(value, type) {
|
2023-05-17 09:56:28 +08:00
|
|
|
if (type == "menu") {
|
|
|
|
let treeList = menuOptions.value;
|
|
|
|
for (let i = 0; i < treeList.length; i++) {
|
|
|
|
menuRef.value.store.nodesMap[treeList[i].id].expanded = value;
|
2023-05-09 15:21:05 +08:00
|
|
|
}
|
2023-05-17 09:56:28 +08:00
|
|
|
} else if (type == "dept") {
|
|
|
|
let treeList = deptOptions.value;
|
|
|
|
for (let i = 0; i < treeList.length; i++) {
|
|
|
|
deptRef.value.store.nodesMap[treeList[i].id].expanded = value;
|
|
|
|
}
|
|
|
|
}
|
2023-05-09 15:21:05 +08:00
|
|
|
}
|
|
|
|
/** 树权限(全选/全不选) */
|
|
|
|
function handleCheckedTreeNodeAll(value, type) {
|
2023-05-17 09:56:28 +08:00
|
|
|
if (type == "menu") {
|
|
|
|
menuRef.value.setCheckedNodes(value ? menuOptions.value : []);
|
|
|
|
} else if (type == "dept") {
|
|
|
|
deptRef.value.setCheckedNodes(value ? deptOptions.value : []);
|
|
|
|
}
|
2023-05-09 15:21:05 +08:00
|
|
|
}
|
|
|
|
/** 树权限(父子联动) */
|
|
|
|
function handleCheckedTreeConnect(value, type) {
|
2023-05-17 09:56:28 +08:00
|
|
|
if (type == "menu") {
|
|
|
|
form.value.menuCheckStrictly = value ? true : false;
|
|
|
|
} else if (type == "dept") {
|
|
|
|
form.value.deptCheckStrictly = value ? true : false;
|
|
|
|
}
|
2023-05-09 15:21:05 +08:00
|
|
|
}
|
|
|
|
/** 所有菜单节点数据 */
|
|
|
|
function getMenuAllCheckedKeys() {
|
2023-05-17 09:56:28 +08:00
|
|
|
// 目前被选中的菜单节点
|
|
|
|
let checkedKeys = menuRef.value.getCheckedKeys();
|
|
|
|
// 半选中的菜单节点
|
|
|
|
let halfCheckedKeys = menuRef.value.getHalfCheckedKeys();
|
|
|
|
checkedKeys.unshift.apply(checkedKeys, halfCheckedKeys);
|
|
|
|
return checkedKeys;
|
2023-05-09 15:21:05 +08:00
|
|
|
}
|
|
|
|
/** 提交按钮 */
|
|
|
|
function submitForm() {
|
2023-05-17 09:56:28 +08:00
|
|
|
proxy.$refs["roleRef"].validate((valid) => {
|
|
|
|
if (valid) {
|
|
|
|
if (form.value.roleId != undefined) {
|
|
|
|
form.value.menuIds = getMenuAllCheckedKeys();
|
|
|
|
updateRole(form.value).then((response) => {
|
|
|
|
proxy.$modal.msgSuccess("修改成功");
|
|
|
|
open.value = false;
|
|
|
|
getList();
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
form.value.menuIds = getMenuAllCheckedKeys();
|
|
|
|
addRole(form.value).then((response) => {
|
|
|
|
proxy.$modal.msgSuccess("新增成功");
|
|
|
|
open.value = false;
|
|
|
|
getList();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2023-05-09 15:21:05 +08:00
|
|
|
}
|
|
|
|
/** 取消按钮 */
|
|
|
|
function cancel() {
|
2023-05-17 09:56:28 +08:00
|
|
|
open.value = false;
|
|
|
|
reset();
|
2023-05-09 15:21:05 +08:00
|
|
|
}
|
|
|
|
/** 选择角色权限范围触发 */
|
|
|
|
function dataScopeSelectChange(value) {
|
2023-05-17 09:56:28 +08:00
|
|
|
if (value !== "2") {
|
|
|
|
deptRef.value.setCheckedKeys([]);
|
|
|
|
}
|
2023-05-09 15:21:05 +08:00
|
|
|
}
|
|
|
|
/** 分配数据权限操作 */
|
|
|
|
function handleDataScope(row) {
|
2023-05-17 09:56:28 +08:00
|
|
|
reset();
|
|
|
|
const deptTreeSelect = getDeptTree(row.roleId);
|
|
|
|
getRole(row.roleId).then((response) => {
|
|
|
|
form.value = response.data;
|
|
|
|
openDataScope.value = true;
|
|
|
|
nextTick(() => {
|
|
|
|
deptTreeSelect.then((res) => {
|
2023-05-09 15:21:05 +08:00
|
|
|
nextTick(() => {
|
2023-05-17 09:56:28 +08:00
|
|
|
if (deptRef.value) {
|
|
|
|
deptRef.value.setCheckedKeys(res.checkedKeys);
|
|
|
|
}
|
2023-05-09 15:21:05 +08:00
|
|
|
});
|
2023-05-17 09:56:28 +08:00
|
|
|
});
|
2023-05-09 15:21:05 +08:00
|
|
|
});
|
2023-05-17 09:56:28 +08:00
|
|
|
title.value = "分配数据权限";
|
|
|
|
});
|
2023-05-09 15:21:05 +08:00
|
|
|
}
|
|
|
|
/** 提交按钮(数据权限) */
|
|
|
|
function submitDataScope() {
|
2023-05-17 09:56:28 +08:00
|
|
|
if (form.value.roleId != undefined) {
|
|
|
|
form.value.deptIds = getDeptAllCheckedKeys();
|
|
|
|
dataScope(form.value).then((response) => {
|
|
|
|
proxy.$modal.msgSuccess("修改成功");
|
|
|
|
openDataScope.value = false;
|
|
|
|
getList();
|
|
|
|
});
|
|
|
|
}
|
2023-05-09 15:21:05 +08:00
|
|
|
}
|
|
|
|
/** 取消按钮(数据权限)*/
|
|
|
|
function cancelDataScope() {
|
2023-05-17 09:56:28 +08:00
|
|
|
openDataScope.value = false;
|
|
|
|
reset();
|
2023-05-09 15:21:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
getList();
|
|
|
|
</script>
|