|
@@ -1,200 +1,79 @@
|
|
|
<template>
|
|
|
<div class="app-container">
|
|
|
- <doc-alert
|
|
|
- title="功能权限"
|
|
|
- url="https://doc.iocoder.cn/resource-permission"
|
|
|
- />
|
|
|
+ <doc-alert title="功能权限" url="https://doc.iocoder.cn/resource-permission" />
|
|
|
<doc-alert title="数据权限" url="https://doc.iocoder.cn/data-permission" />
|
|
|
-
|
|
|
- <el-form
|
|
|
- :model="queryParams"
|
|
|
- ref="queryForm"
|
|
|
- v-show="showSearch"
|
|
|
- :inline="true"
|
|
|
- >
|
|
|
+ <el-form :model="queryParams" ref="queryForm" v-show="showSearch" :inline="true">
|
|
|
<el-form-item label="角色名称" prop="name">
|
|
|
- <el-input
|
|
|
- v-model="queryParams.name"
|
|
|
- placeholder="请输入角色名称"
|
|
|
- clearable
|
|
|
- size="small"
|
|
|
- style="width: 240px"
|
|
|
- @keyup.enter.native="handleQuery"
|
|
|
- />
|
|
|
+ <el-input v-model="queryParams.name" placeholder="请输入角色名称" clearable size="small" style="width: 240px"
|
|
|
+ @keyup.enter.native="handleQuery"/>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="角色标识" prop="code">
|
|
|
- <el-input
|
|
|
- v-model="queryParams.code"
|
|
|
- placeholder="请输入角色标识"
|
|
|
- clearable
|
|
|
- size="small"
|
|
|
- style="width: 240px"
|
|
|
- @keyup.enter.native="handleQuery"
|
|
|
- />
|
|
|
+ <el-input v-model="queryParams.code" placeholder="请输入角色标识" clearable size="small" style="width: 240px"
|
|
|
+ @keyup.enter.native="handleQuery"/>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="状态" prop="status">
|
|
|
- <el-select
|
|
|
- v-model="queryParams.status"
|
|
|
- placeholder="角色状态"
|
|
|
- clearable
|
|
|
- size="small"
|
|
|
- style="width: 240px"
|
|
|
- >
|
|
|
- <el-option
|
|
|
- v-for="dict in statusDictDatas"
|
|
|
- :key="parseInt(dict.value)"
|
|
|
- :label="dict.label"
|
|
|
- :value="parseInt(dict.value)"
|
|
|
- />
|
|
|
+ <el-select v-model="queryParams.status" placeholder="角色状态" clearable size="small" style="width: 240px">
|
|
|
+ <el-option v-for="dict in statusDictDatas" :key="parseInt(dict.value)" :label="dict.label" :value="parseInt(dict.value)"/>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="创建时间">
|
|
|
- <el-date-picker
|
|
|
- v-model="dateRange"
|
|
|
- size="small"
|
|
|
- style="width: 240px"
|
|
|
- value-format="yyyy-MM-dd"
|
|
|
- type="daterange"
|
|
|
- range-separator="-"
|
|
|
- start-placeholder="开始日期"
|
|
|
- end-placeholder="结束日期"
|
|
|
- ></el-date-picker>
|
|
|
+ <el-date-picker v-model="dateRange" size="small" style="width: 240px" value-format="yyyy-MM-dd" type="daterange"
|
|
|
+ range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期"></el-date-picker>
|
|
|
</el-form-item>
|
|
|
<el-form-item>
|
|
|
- <el-button
|
|
|
- type="primary"
|
|
|
- icon="el-icon-search"
|
|
|
- size="mini"
|
|
|
- @click="handleQuery"
|
|
|
- >搜索</el-button
|
|
|
- >
|
|
|
- <el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
|
|
|
- >重置</el-button
|
|
|
- >
|
|
|
+ <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
|
+ <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
<el-col :span="1.5">
|
|
|
- <el-button
|
|
|
- type="primary"
|
|
|
- plain
|
|
|
- icon="el-icon-plus"
|
|
|
- size="mini"
|
|
|
- @click="handleAdd"
|
|
|
- v-hasPermi="['system:role:create']"
|
|
|
- >新增</el-button
|
|
|
- >
|
|
|
+ <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd"
|
|
|
+ v-hasPermi="['system:role:create']">新增</el-button>
|
|
|
</el-col>
|
|
|
<el-col :span="1.5">
|
|
|
- <el-button
|
|
|
- type="warning"
|
|
|
- icon="el-icon-download"
|
|
|
- size="mini"
|
|
|
- @click="handleExport"
|
|
|
- :loading="exportLoading"
|
|
|
- v-hasPermi="['system:role:export']"
|
|
|
- >导出</el-button
|
|
|
- >
|
|
|
+ <el-button type="warning" icon="el-icon-download" size="mini" @click="handleExport" :loading="exportLoading"
|
|
|
+ v-hasPermi="['system:role:export']">导出</el-button>
|
|
|
</el-col>
|
|
|
- <right-toolbar
|
|
|
- :showSearch.sync="showSearch"
|
|
|
- @queryTable="getList"
|
|
|
- ></right-toolbar>
|
|
|
+ <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
</el-row>
|
|
|
|
|
|
<el-table v-loading="loading" :data="roleList">
|
|
|
<el-table-column label="角色编号" prop="id" width="120" />
|
|
|
- <el-table-column
|
|
|
- label="角色名称"
|
|
|
- prop="name"
|
|
|
- :show-overflow-tooltip="true"
|
|
|
- width="150"
|
|
|
- />
|
|
|
- <el-table-column
|
|
|
- label="角色标识"
|
|
|
- prop="code"
|
|
|
- :show-overflow-tooltip="true"
|
|
|
- width="150"
|
|
|
- />
|
|
|
+ <el-table-column label="角色名称" prop="name" :show-overflow-tooltip="true" width="150" />
|
|
|
+ <el-table-column label="角色标识" prop="code" :show-overflow-tooltip="true" width="150" />
|
|
|
<el-table-column label="角色类型" prop="type" width="80">
|
|
|
<template slot-scope="scope">
|
|
|
- <dict-tag
|
|
|
- :type="DICT_TYPE.SYSTEM_ROLE_TYPE"
|
|
|
- :value="scope.row.type"
|
|
|
- />
|
|
|
+ <dict-tag :type="DICT_TYPE.SYSTEM_ROLE_TYPE" :value="scope.row.type"/>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="显示顺序" prop="sort" width="100" />
|
|
|
<el-table-column label="状态" align="center" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-switch
|
|
|
- v-model="scope.row.status"
|
|
|
- :active-value="0"
|
|
|
- :inactive-value="1"
|
|
|
- @change="handleStatusChange(scope.row)"
|
|
|
- ></el-switch>
|
|
|
+ <el-switch v-model="scope.row.status" :active-value="0" :inactive-value="1" @change="handleStatusChange(scope.row)"></el-switch>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column
|
|
|
- label="创建时间"
|
|
|
- align="center"
|
|
|
- prop="createTime"
|
|
|
- width="180"
|
|
|
- >
|
|
|
+ <el-table-column label="创建时间" align="center" prop="createTime" width="180">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ parseTime(scope.row.createTime) }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column
|
|
|
- label="操作"
|
|
|
- align="center"
|
|
|
- class-name="small-padding fixed-width"
|
|
|
- >
|
|
|
+ <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-button
|
|
|
- size="mini"
|
|
|
- type="text"
|
|
|
- icon="el-icon-edit"
|
|
|
- @click="handleUpdate(scope.row)"
|
|
|
- v-hasPermi="['system:role:update']"
|
|
|
- >修改</el-button
|
|
|
- >
|
|
|
- <el-button
|
|
|
- size="mini"
|
|
|
- type="text"
|
|
|
- icon="el-icon-circle-check"
|
|
|
- @click="handleMenu(scope.row)"
|
|
|
- v-hasPermi="['system:permission:assign-role-menu']"
|
|
|
- >菜单权限</el-button
|
|
|
- >
|
|
|
- <el-button
|
|
|
- size="mini"
|
|
|
- type="text"
|
|
|
- icon="el-icon-circle-check"
|
|
|
- @click="handleDataScope(scope.row)"
|
|
|
- v-hasPermi="['system:permission:assign-role-data-scope']"
|
|
|
- >数据权限</el-button
|
|
|
- >
|
|
|
- <el-button
|
|
|
- size="mini"
|
|
|
- type="text"
|
|
|
- icon="el-icon-delete"
|
|
|
- @click="handleDelete(scope.row)"
|
|
|
- v-hasPermi="['system:role:delete']"
|
|
|
- >删除</el-button
|
|
|
- >
|
|
|
+ <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
|
|
|
+ v-hasPermi="['system:role:update']">修改</el-button>
|
|
|
+ <el-button size="mini" type="text" icon="el-icon-circle-check" @click="handleMenu(scope.row)"
|
|
|
+ v-hasPermi="['system:permission:assign-role-menu']">菜单权限</el-button>
|
|
|
+ <el-button size="mini" type="text" icon="el-icon-circle-check" @click="handleDataScope(scope.row)"
|
|
|
+ v-hasPermi="['system:permission:assign-role-data-scope']">数据权限</el-button>
|
|
|
+ <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
|
|
|
+ v-hasPermi="['system:role:delete']">删除</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
- <pagination
|
|
|
- v-show="total > 0"
|
|
|
- :total="total"
|
|
|
- :page.sync="queryParams.pageNo"
|
|
|
- :limit.sync="queryParams.pageSize"
|
|
|
- @pagination="getList"
|
|
|
- />
|
|
|
+ <pagination v-show="total>0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
|
|
|
+ @pagination="getList"/>
|
|
|
|
|
|
<!-- 添加或修改角色配置对话框 -->
|
|
|
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
|
@@ -206,18 +85,10 @@
|
|
|
<el-input v-model="form.code" placeholder="请输入角色标识" />
|
|
|
</el-form-item>
|
|
|
<el-form-item label="角色顺序" prop="sort">
|
|
|
- <el-input-number
|
|
|
- v-model="form.sort"
|
|
|
- controls-position="right"
|
|
|
- :min="0"
|
|
|
- />
|
|
|
+ <el-input-number v-model="form.sort" controls-position="right" :min="0" />
|
|
|
</el-form-item>
|
|
|
<el-form-item label="备注">
|
|
|
- <el-input
|
|
|
- v-model="form.remark"
|
|
|
- type="textarea"
|
|
|
- placeholder="请输入内容"
|
|
|
- ></el-input>
|
|
|
+ <el-input v-model="form.remark" type="textarea" placeholder="请输入内容"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
<div slot="footer" class="dialog-footer">
|
|
@@ -227,12 +98,7 @@
|
|
|
</el-dialog>
|
|
|
|
|
|
<!-- 分配角色的数据权限对话框 -->
|
|
|
- <el-dialog
|
|
|
- title="分配数据权限"
|
|
|
- :visible.sync="openDataScope"
|
|
|
- width="500px"
|
|
|
- append-to-body
|
|
|
- >
|
|
|
+ <el-dialog title="分配数据权限" :visible.sync="openDataScope" width="500px" append-to-body>
|
|
|
<el-form :model="form" label-width="80px">
|
|
|
<el-form-item label="角色名称">
|
|
|
<el-input v-model="form.name" :disabled="true" />
|
|
@@ -250,25 +116,10 @@
|
|
|
></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
- <el-form-item
|
|
|
- label="数据权限"
|
|
|
- v-show="form.dataScope === SysDataScopeEnum.DEPT_CUSTOM"
|
|
|
- >
|
|
|
- <el-checkbox
|
|
|
- :checked="!form.deptCheckStrictly"
|
|
|
- @change="handleCheckedTreeConnect($event, 'dept')"
|
|
|
- >父子联动(选中父节点,自动选择子节点)</el-checkbox
|
|
|
- >
|
|
|
- <el-checkbox
|
|
|
- v-model="deptExpand"
|
|
|
- @change="handleCheckedTreeExpand($event, 'dept')"
|
|
|
- >展开/折叠</el-checkbox
|
|
|
- >
|
|
|
- <el-checkbox
|
|
|
- v-model="deptNodeAll"
|
|
|
- @change="handleCheckedTreeNodeAll($event, 'dept')"
|
|
|
- >全选/全不选</el-checkbox
|
|
|
- >
|
|
|
+ <el-form-item label="数据权限" v-show="form.dataScope === SysDataScopeEnum.DEPT_CUSTOM">
|
|
|
+ <el-checkbox :checked="!form.deptCheckStrictly" @change="handleCheckedTreeConnect($event, 'dept')">父子联动(选中父节点,自动选择子节点)</el-checkbox>
|
|
|
+ <el-checkbox v-model="deptExpand" @change="handleCheckedTreeExpand($event, 'dept')">展开/折叠</el-checkbox>
|
|
|
+ <el-checkbox v-model="deptNodeAll" @change="handleCheckedTreeNodeAll($event, 'dept')">全选/全不选</el-checkbox>
|
|
|
<el-tree
|
|
|
class="tree-border"
|
|
|
:data="deptOptions"
|
|
@@ -289,12 +140,7 @@
|
|
|
</el-dialog>
|
|
|
|
|
|
<!-- 分配角色的菜单权限对话框 -->
|
|
|
- <el-dialog
|
|
|
- :title="title"
|
|
|
- :visible.sync="openMenu"
|
|
|
- width="500px"
|
|
|
- append-to-body
|
|
|
- >
|
|
|
+ <el-dialog :title="title" :visible.sync="openMenu" width="500px" append-to-body>
|
|
|
<el-form :model="form" label-width="80px">
|
|
|
<el-form-item label="角色名称">
|
|
|
<el-input v-model="form.name" :disabled="true" />
|
|
@@ -303,26 +149,10 @@
|
|
|
<el-input v-model="form.code" :disabled="true" />
|
|
|
</el-form-item>
|
|
|
<el-form-item label="菜单权限">
|
|
|
- <el-checkbox
|
|
|
- v-model="menuExpand"
|
|
|
- @change="handleCheckedTreeExpand($event, 'menu')"
|
|
|
- >展开/折叠</el-checkbox
|
|
|
- >
|
|
|
- <el-checkbox
|
|
|
- v-model="menuNodeAll"
|
|
|
- @change="handleCheckedTreeNodeAll($event, 'menu')"
|
|
|
- >全选/全不选</el-checkbox
|
|
|
- >
|
|
|
- <el-tree
|
|
|
- class="tree-border"
|
|
|
- :data="menuOptions"
|
|
|
- show-checkbox
|
|
|
- ref="menu"
|
|
|
- node-key="id"
|
|
|
- :check-strictly="form.menuCheckStrictly"
|
|
|
- empty-text="加载中,请稍后"
|
|
|
- :props="defaultProps"
|
|
|
- ></el-tree>
|
|
|
+ <el-checkbox v-model="menuExpand" @change="handleCheckedTreeExpand($event, 'menu')">展开/折叠</el-checkbox>
|
|
|
+ <el-checkbox v-model="menuNodeAll" @change="handleCheckedTreeNodeAll($event, 'menu')">全选/全不选</el-checkbox>
|
|
|
+ <el-tree class="tree-border" :data="menuOptions" show-checkbox ref="menu" node-key="id"
|
|
|
+ :check-strictly="form.menuCheckStrictly" empty-text="加载中,请稍后" :props="defaultProps"></el-tree>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
<div slot="footer" class="dialog-footer">
|
|
@@ -342,17 +172,13 @@ import {
|
|
|
exportRole,
|
|
|
getRole,
|
|
|
listRole,
|
|
|
- updateRole,
|
|
|
+ updateRole
|
|
|
} from "@/api/system/role";
|
|
|
-import { listSimpleMenus } from "@/api/system/menu";
|
|
|
-import {
|
|
|
- assignRoleMenu,
|
|
|
- listRoleMenus,
|
|
|
- assignRoleDataScope,
|
|
|
-} from "@/api/system/permission";
|
|
|
-import { listSimpleDepts } from "@/api/system/dept";
|
|
|
-import { CommonStatusEnum, SystemDataScopeEnum } from "@/utils/constants";
|
|
|
-import { DICT_TYPE, getDictDatas } from "@/utils/dict";
|
|
|
+import {listSimpleMenus} from "@/api/system/menu";
|
|
|
+import {assignRoleMenu, listRoleMenus, assignRoleDataScope} from "@/api/system/permission";
|
|
|
+import {listSimpleDepts} from "@/api/system/dept";
|
|
|
+import {CommonStatusEnum, SystemDataScopeEnum} from "@/utils/constants";
|
|
|
+import {DICT_TYPE, getDictDatas} from "@/utils/dict";
|
|
|
|
|
|
export default {
|
|
|
name: "Role",
|
|
@@ -393,25 +219,25 @@ export default {
|
|
|
pageSize: 10,
|
|
|
name: undefined,
|
|
|
code: undefined,
|
|
|
- status: undefined,
|
|
|
+ status: undefined
|
|
|
},
|
|
|
// 表单参数
|
|
|
form: {},
|
|
|
defaultProps: {
|
|
|
label: "name",
|
|
|
- children: "children",
|
|
|
+ children: "children"
|
|
|
},
|
|
|
// 表单校验
|
|
|
rules: {
|
|
|
name: [
|
|
|
- { required: true, message: "角色名称不能为空", trigger: "blur" },
|
|
|
+ { required: true, message: "角色名称不能为空", trigger: "blur" }
|
|
|
],
|
|
|
code: [
|
|
|
- { required: true, message: "角色标识不能为空", trigger: "blur" },
|
|
|
+ { required: true, message: "角色标识不能为空", trigger: "blur" }
|
|
|
],
|
|
|
sort: [
|
|
|
- { required: true, message: "角色顺序不能为空", trigger: "blur" },
|
|
|
- ],
|
|
|
+ { required: true, message: "角色顺序不能为空", trigger: "blur" }
|
|
|
+ ]
|
|
|
},
|
|
|
|
|
|
// 枚举
|
|
@@ -420,7 +246,7 @@ export default {
|
|
|
// 数据字典
|
|
|
roleTypeDictDatas: getDictDatas(DICT_TYPE.SYSTEM_ROLE_TYPE),
|
|
|
statusDictDatas: getDictDatas(DICT_TYPE.COMMON_STATUS),
|
|
|
- dataScopeDictDatas: getDictDatas(DICT_TYPE.SYSTEM_DATA_SCOPE),
|
|
|
+ dataScopeDictDatas: getDictDatas(DICT_TYPE.SYSTEM_DATA_SCOPE)
|
|
|
};
|
|
|
},
|
|
|
created() {
|
|
@@ -430,34 +256,28 @@ export default {
|
|
|
/** 查询角色列表 */
|
|
|
getList() {
|
|
|
this.loading = true;
|
|
|
- listRole(
|
|
|
- this.addDateRange(this.queryParams, [
|
|
|
- this.dateRange[0] ? this.dateRange[0] + " 00:00:00" : undefined,
|
|
|
- this.dateRange[1] ? this.dateRange[1] + " 23:59:59" : undefined,
|
|
|
- ])
|
|
|
- ).then((response) => {
|
|
|
- this.roleList = response.data.list;
|
|
|
- this.total = response.data.total;
|
|
|
- this.loading = false;
|
|
|
- });
|
|
|
+ listRole(this.addDateRange(this.queryParams, [
|
|
|
+ this.dateRange[0] ? this.dateRange[0] + ' 00:00:00' : undefined,
|
|
|
+ this.dateRange[1] ? this.dateRange[1] + ' 23:59:59' : undefined,
|
|
|
+ ])).then(
|
|
|
+ response => {
|
|
|
+ this.roleList = response.data.list;
|
|
|
+ this.total = response.data.total;
|
|
|
+ this.loading = false;
|
|
|
+ }
|
|
|
+ );
|
|
|
},
|
|
|
// 角色状态修改
|
|
|
handleStatusChange(row) {
|
|
|
// 此时,row 已经变成目标状态了,所以可以直接提交请求和提示
|
|
|
let text = row.status === CommonStatusEnum.ENABLE ? "启用" : "停用";
|
|
|
- this.$modal
|
|
|
- .confirm('确认要"' + text + '""' + row.name + '"角色吗?')
|
|
|
- .then(function () {
|
|
|
+ this.$modal.confirm('确认要"' + text + '""' + row.name + '"角色吗?').then(function() {
|
|
|
return changeRoleStatus(row.id, row.status);
|
|
|
- })
|
|
|
- .then(() => {
|
|
|
+ }).then(() => {
|
|
|
this.$modal.msgSuccess(text + "成功");
|
|
|
- })
|
|
|
- .catch(function () {
|
|
|
+ }).catch(function() {
|
|
|
// 异常时,需要将 row.status 状态重置回之前的
|
|
|
- row.status =
|
|
|
- row.status === CommonStatusEnum.ENABLE
|
|
|
- ? CommonStatusEnum.DISABLE
|
|
|
+ row.status = row.status === CommonStatusEnum.ENABLE ? CommonStatusEnum.DISABLE
|
|
|
: CommonStatusEnum.ENABLE;
|
|
|
});
|
|
|
},
|
|
@@ -495,7 +315,7 @@ export default {
|
|
|
dataScope: undefined,
|
|
|
deptCheckStrictly: false,
|
|
|
menuCheckStrictly: true,
|
|
|
- remark: undefined,
|
|
|
+ remark: undefined
|
|
|
};
|
|
|
this.resetForm("form");
|
|
|
},
|
|
@@ -512,12 +332,12 @@ export default {
|
|
|
},
|
|
|
// 树权限(展开/折叠)
|
|
|
handleCheckedTreeExpand(value, type) {
|
|
|
- if (type === "menu") {
|
|
|
+ if (type === 'menu') {
|
|
|
let treeList = this.menuOptions;
|
|
|
for (let i = 0; i < treeList.length; i++) {
|
|
|
this.$refs.menu.store.nodesMap[treeList[i].id].expanded = value;
|
|
|
}
|
|
|
- } else if (type === "dept") {
|
|
|
+ } else if (type === 'dept') {
|
|
|
let treeList = this.deptOptions;
|
|
|
for (let i = 0; i < treeList.length; i++) {
|
|
|
this.$refs.dept.store.nodesMap[treeList[i].id].expanded = value;
|
|
@@ -526,18 +346,18 @@ export default {
|
|
|
},
|
|
|
// 树权限(全选/全不选)
|
|
|
handleCheckedTreeNodeAll(value, type) {
|
|
|
- if (type === "menu") {
|
|
|
- this.$refs.menu.setCheckedNodes(value ? this.menuOptions : []);
|
|
|
- } else if (type === "dept") {
|
|
|
+ if (type === 'menu') {
|
|
|
+ this.$refs.menu.setCheckedNodes(value ? this.menuOptions: []);
|
|
|
+ } else if (type === 'dept') {
|
|
|
// this.$refs.dept.setCheckedNodes(value ? this.deptOptions: []);
|
|
|
- this.$refs.dept.setCheckedNodes(value ? this.depts : []);
|
|
|
+ this.$refs.dept.setCheckedNodes(value ? this.depts: []);
|
|
|
}
|
|
|
},
|
|
|
// 树权限(父子联动)
|
|
|
handleCheckedTreeConnect(value, type) {
|
|
|
- if (type === "menu") {
|
|
|
+ if (type === 'menu') {
|
|
|
this.form.menuCheckStrictly = value;
|
|
|
- } else if (type === "dept") {
|
|
|
+ } else if (type === 'dept') {
|
|
|
this.form.deptCheckStrictly = !value;
|
|
|
}
|
|
|
},
|
|
@@ -550,8 +370,8 @@ export default {
|
|
|
/** 修改按钮操作 */
|
|
|
handleUpdate(row) {
|
|
|
this.reset();
|
|
|
- const id = row.id;
|
|
|
- getRole(id).then((response) => {
|
|
|
+ const id = row.id
|
|
|
+ getRole(id).then(response => {
|
|
|
this.form = response.data;
|
|
|
this.open = true;
|
|
|
this.title = "修改角色";
|
|
@@ -560,7 +380,7 @@ export default {
|
|
|
/** 分配菜单权限操作 */
|
|
|
handleMenu(row) {
|
|
|
this.reset();
|
|
|
- const id = row.id;
|
|
|
+ const id = row.id
|
|
|
// 处理了 form 的角色 name 和 code 的展示
|
|
|
this.form.id = id;
|
|
|
this.form.name = row.name;
|
|
@@ -568,20 +388,21 @@ export default {
|
|
|
// 打开弹窗
|
|
|
this.openMenu = true;
|
|
|
// 获得菜单列表
|
|
|
- listSimpleMenus().then((response) => {
|
|
|
+ listSimpleMenus().then(response => {
|
|
|
// 处理 menuOptions 参数
|
|
|
this.menuOptions = [];
|
|
|
this.menuOptions.push(...this.handleTree(response.data, "id"));
|
|
|
// 获取角色拥有的菜单权限
|
|
|
- listRoleMenus(id).then((response) => {
|
|
|
+ listRoleMenus(id).then(response => {
|
|
|
// 设置为严格,避免设置父节点自动选中子节点,解决半选中问题
|
|
|
- this.form.menuCheckStrictly = true;
|
|
|
+ this.form.menuCheckStrictly = true
|
|
|
// 设置选中
|
|
|
this.$refs.menu.setCheckedKeys(response.data);
|
|
|
// 设置为非严格,继续使用半选中
|
|
|
- this.form.menuCheckStrictly = false;
|
|
|
- });
|
|
|
+ this.form.menuCheckStrictly = false
|
|
|
+ })
|
|
|
});
|
|
|
+
|
|
|
},
|
|
|
/** 分配数据权限操作 */
|
|
|
handleDataScope(row) {
|
|
@@ -593,31 +414,31 @@ export default {
|
|
|
// 打开弹窗
|
|
|
this.openDataScope = true;
|
|
|
// 获得部门列表
|
|
|
- listSimpleDepts().then((response) => {
|
|
|
+ listSimpleDepts().then(response => {
|
|
|
// 处理 deptOptions 参数
|
|
|
this.deptOptions = [];
|
|
|
this.deptOptions.push(...this.handleTree(response.data, "id"));
|
|
|
this.depts = response.data;
|
|
|
// this.deptIds = response.data.map(x => x.id);
|
|
|
// 获得角色拥有的数据权限
|
|
|
- getRole(row.id).then((response) => {
|
|
|
+ getRole(row.id).then(response => {
|
|
|
this.form.dataScope = response.data.dataScope;
|
|
|
this.$refs.dept.setCheckedKeys(response.data.dataScopeDeptIds, false);
|
|
|
});
|
|
|
});
|
|
|
},
|
|
|
/** 提交按钮 */
|
|
|
- submitForm: function () {
|
|
|
- this.$refs["form"].validate((valid) => {
|
|
|
+ submitForm: function() {
|
|
|
+ this.$refs["form"].validate(valid => {
|
|
|
if (valid) {
|
|
|
if (this.form.id !== undefined) {
|
|
|
- updateRole(this.form).then((response) => {
|
|
|
+ updateRole(this.form).then(response => {
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
|
this.open = false;
|
|
|
this.getList();
|
|
|
});
|
|
|
} else {
|
|
|
- addRole(this.form).then((response) => {
|
|
|
+ addRole(this.form).then(response => {
|
|
|
this.$modal.msgSuccess("新增成功");
|
|
|
this.open = false;
|
|
|
this.getList();
|
|
@@ -627,16 +448,14 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
/** 提交按钮(数据权限) */
|
|
|
- submitDataScope: function () {
|
|
|
+ submitDataScope: function() {
|
|
|
if (this.form.id !== undefined) {
|
|
|
assignRoleDataScope({
|
|
|
roleId: this.form.id,
|
|
|
dataScope: this.form.dataScope,
|
|
|
- dataScopeDeptIds:
|
|
|
- this.form.dataScope !== SystemDataScopeEnum.DEPT_CUSTOM
|
|
|
- ? []
|
|
|
- : this.$refs.dept.getCheckedKeys(),
|
|
|
- }).then((response) => {
|
|
|
+ dataScopeDeptIds: this.form.dataScope !== SystemDataScopeEnum.DEPT_CUSTOM ? [] :
|
|
|
+ this.$refs.dept.getCheckedKeys()
|
|
|
+ }).then(response => {
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
|
this.openDataScope = false;
|
|
|
this.getList();
|
|
@@ -644,15 +463,12 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
/** 提交按钮(菜单权限) */
|
|
|
- submitMenu: function () {
|
|
|
+ submitMenu: function() {
|
|
|
if (this.form.id !== undefined) {
|
|
|
assignRoleMenu({
|
|
|
roleId: this.form.id,
|
|
|
- menuIds: [
|
|
|
- ...this.$refs.menu.getCheckedKeys(),
|
|
|
- ...this.$refs.menu.getHalfCheckedKeys(),
|
|
|
- ],
|
|
|
- }).then((response) => {
|
|
|
+ menuIds: [...this.$refs.menu.getCheckedKeys(), ...this.$refs.menu.getHalfCheckedKeys()]
|
|
|
+ }).then(response => {
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
|
this.openMenu = false;
|
|
|
this.getList();
|
|
@@ -662,32 +478,24 @@ export default {
|
|
|
/** 删除按钮操作 */
|
|
|
handleDelete(row) {
|
|
|
const ids = row.id || this.ids;
|
|
|
- this.$modal
|
|
|
- .confirm('是否确认删除角色编号为"' + ids + '"的数据项?')
|
|
|
- .then(function () {
|
|
|
+ this.$modal.confirm('是否确认删除角色编号为"' + ids + '"的数据项?').then(function() {
|
|
|
return delRole(ids);
|
|
|
- })
|
|
|
- .then(() => {
|
|
|
+ }).then(() => {
|
|
|
this.getList();
|
|
|
this.$modal.msgSuccess("删除成功");
|
|
|
- })
|
|
|
- .catch(() => {});
|
|
|
+ }).catch(() => {});
|
|
|
},
|
|
|
/** 导出按钮操作 */
|
|
|
handleExport() {
|
|
|
const queryParams = this.queryParams;
|
|
|
- this.$modal
|
|
|
- .confirm("是否确认导出所有角色数据项?")
|
|
|
- .then(function () {
|
|
|
+ this.$modal.confirm('是否确认导出所有角色数据项?').then(function() {
|
|
|
this.exportLoading = true;
|
|
|
return exportRole(queryParams);
|
|
|
- })
|
|
|
- .then((response) => {
|
|
|
- this.$download.excel(response, "角色数据.xls");
|
|
|
+ }).then(response => {
|
|
|
+ this.$download.excel(response, '角色数据.xls');
|
|
|
this.exportLoading = false;
|
|
|
- })
|
|
|
- .catch(() => {});
|
|
|
- },
|
|
|
- },
|
|
|
+ }).catch(() => {});
|
|
|
+ }
|
|
|
+ }
|
|
|
};
|
|
|
</script>
|