|
|
|
|
@ -1,48 +1,20 @@
@@ -1,48 +1,20 @@
|
|
|
|
|
<template> |
|
|
|
|
<div class="app-container"> |
|
|
|
|
<el-form :model="queryParams" ref="queryRef" v-show="showSearch" :inline="true" label-width="68px"> |
|
|
|
|
<div class="app-container app-container-bg"> |
|
|
|
|
<el-card class="first-card" ref='firstCard' shadow="always"> |
|
|
|
|
<el-form :model="queryParams" ref="queryRef" v-show="showSearch" :inline="true" @submit.native.prevent> |
|
|
|
|
<el-form-item label="角色名称" prop="roleName"> |
|
|
|
|
<el-input |
|
|
|
|
v-model="queryParams.roleName" |
|
|
|
|
placeholder="请输入角色名称" |
|
|
|
|
clearable |
|
|
|
|
style="width: 240px" |
|
|
|
|
@keyup.enter="handleQuery" |
|
|
|
|
/> |
|
|
|
|
<el-input v-model="queryParams.roleName" placeholder="请输入角色名称" clearable style="width: 240px" @keyup.enter="handleQuery" /> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="权限字符" prop="roleKey"> |
|
|
|
|
<el-input |
|
|
|
|
v-model="queryParams.roleKey" |
|
|
|
|
placeholder="请输入权限字符" |
|
|
|
|
clearable |
|
|
|
|
style="width: 240px" |
|
|
|
|
@keyup.enter="handleQuery" |
|
|
|
|
/> |
|
|
|
|
<el-input v-model="queryParams.roleKey" placeholder="请输入权限字符" clearable style="width: 240px" @keyup.enter="handleQuery" /> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="状态" prop="status"> |
|
|
|
|
<el-select |
|
|
|
|
v-model="queryParams.status" |
|
|
|
|
placeholder="角色状态" |
|
|
|
|
clearable |
|
|
|
|
style="width: 240px" |
|
|
|
|
> |
|
|
|
|
<el-option |
|
|
|
|
v-for="dict in sys_normal_disable" |
|
|
|
|
:key="dict.value" |
|
|
|
|
:label="dict.label" |
|
|
|
|
:value="dict.value" |
|
|
|
|
/> |
|
|
|
|
<el-select v-model="queryParams.status" placeholder="角色状态" clearable 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" |
|
|
|
|
value-format="YYYY-MM-DD" |
|
|
|
|
type="daterange" |
|
|
|
|
range-separator="-" |
|
|
|
|
start-placeholder="开始日期" |
|
|
|
|
end-placeholder="结束日期" |
|
|
|
|
></el-date-picker> |
|
|
|
|
<el-date-picker v-model="dateRange" 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="Search" @click="handleQuery">搜索</el-button> |
|
|
|
|
@ -51,48 +23,24 @@
@@ -51,48 +23,24 @@
|
|
|
|
|
</el-form> |
|
|
|
|
<el-row :gutter="10" class="mb8"> |
|
|
|
|
<el-col :span="1.5"> |
|
|
|
|
<el-button |
|
|
|
|
type="primary" |
|
|
|
|
plain |
|
|
|
|
icon="Plus" |
|
|
|
|
@click="handleAdd" |
|
|
|
|
v-hasPermi="['system:role:add']" |
|
|
|
|
>新增</el-button> |
|
|
|
|
<el-button type="primary" plain icon="Plus" @click="handleAdd" v-hasPermi="['system:role:add']">新增</el-button> |
|
|
|
|
</el-col> |
|
|
|
|
<el-col :span="1.5"> |
|
|
|
|
<el-button |
|
|
|
|
type="success" |
|
|
|
|
plain |
|
|
|
|
icon="Edit" |
|
|
|
|
:disabled="single" |
|
|
|
|
@click="handleUpdate" |
|
|
|
|
v-hasPermi="['system:role:edit']" |
|
|
|
|
>修改</el-button> |
|
|
|
|
<el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate" v-hasPermi="['system:role:edit']">修改</el-button> |
|
|
|
|
</el-col> |
|
|
|
|
<el-col :span="1.5"> |
|
|
|
|
<el-button |
|
|
|
|
type="danger" |
|
|
|
|
plain |
|
|
|
|
icon="Delete" |
|
|
|
|
:disabled="multiple" |
|
|
|
|
@click="handleDelete" |
|
|
|
|
v-hasPermi="['system:role:remove']" |
|
|
|
|
>删除</el-button> |
|
|
|
|
<el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete" v-hasPermi="['system:role:remove']">删除</el-button> |
|
|
|
|
</el-col> |
|
|
|
|
<el-col :span="1.5"> |
|
|
|
|
<el-button |
|
|
|
|
type="warning" |
|
|
|
|
plain |
|
|
|
|
icon="Download" |
|
|
|
|
@click="handleExport" |
|
|
|
|
v-hasPermi="['system:role:export']" |
|
|
|
|
>导出</el-button> |
|
|
|
|
<el-button type="warning" plain icon="Download" @click="handleExport" v-hasPermi="['system:role:export']">导出</el-button> |
|
|
|
|
</el-col> |
|
|
|
|
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar> |
|
|
|
|
</el-row> |
|
|
|
|
</el-card> |
|
|
|
|
|
|
|
|
|
<!-- 表格数据 --> |
|
|
|
|
<el-table v-loading="loading" :data="roleList" @selection-change="handleSelectionChange"> |
|
|
|
|
<div class="el-card-p card-shadow carder-border mt10 pad10 "> |
|
|
|
|
<el-table v-table-height v-loading="loading" :data="roleList" @selection-change="handleSelectionChange"> |
|
|
|
|
<el-table-column type="selection" width="55" align="center" /> |
|
|
|
|
<el-table-column label="角色编号" prop="roleId" width="120" /> |
|
|
|
|
<el-table-column label="角色名称" prop="roleName" :show-overflow-tooltip="true" width="150" /> |
|
|
|
|
@ -100,12 +48,7 @@
@@ -100,12 +48,7 @@
|
|
|
|
|
<el-table-column label="显示顺序" prop="roleSort" width="100" /> |
|
|
|
|
<el-table-column label="状态" align="center" width="100"> |
|
|
|
|
<template #default="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"> |
|
|
|
|
@ -131,14 +74,9 @@
@@ -131,14 +74,9 @@
|
|
|
|
|
</el-table-column> |
|
|
|
|
</el-table> |
|
|
|
|
|
|
|
|
|
<pagination |
|
|
|
|
v-show="total > 0" |
|
|
|
|
:total="total" |
|
|
|
|
v-model:page="queryParams.pageNum" |
|
|
|
|
v-model:limit="queryParams.pageSize" |
|
|
|
|
@pagination="getList" |
|
|
|
|
/> |
|
|
|
|
<pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize" @pagination="getList" /> |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
<!-- 添加或修改角色配置对话框 --> |
|
|
|
|
<el-dialog :title="title" v-model="open" width="500px" append-to-body> |
|
|
|
|
<el-form ref="roleRef" :model="form" :rules="rules" label-width="100px"> |
|
|
|
|
@ -161,27 +99,14 @@
@@ -161,27 +99,14 @@
|
|
|
|
|
</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" |
|
|
|
|
>{{ dict.label }}</el-radio> |
|
|
|
|
<el-radio v-for="dict in sys_normal_disable" :key="dict.value" :label="dict.value">{{ dict.label }}</el-radio> |
|
|
|
|
</el-radio-group> |
|
|
|
|
</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-checkbox v-model="form.menuCheckStrictly" @change="handleCheckedTreeConnect($event, 'menu')">父子联动</el-checkbox> |
|
|
|
|
<el-tree |
|
|
|
|
class="tree-border" |
|
|
|
|
:data="menuOptions" |
|
|
|
|
show-checkbox |
|
|
|
|
ref="menuRef" |
|
|
|
|
node-key="id" |
|
|
|
|
:check-strictly="!form.menuCheckStrictly" |
|
|
|
|
empty-text="加载中,请稍候" |
|
|
|
|
:props="{ label: 'label', children: 'children' }" |
|
|
|
|
></el-tree> |
|
|
|
|
<el-tree class="tree-border" :data="menuOptions" show-checkbox ref="menuRef" node-key="id" :check-strictly="!form.menuCheckStrictly" empty-text="加载中,请稍候" :props="{ label: 'label', children: 'children' }"></el-tree> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="备注"> |
|
|
|
|
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容"></el-input> |
|
|
|
|
@ -206,29 +131,14 @@
@@ -206,29 +131,14 @@
|
|
|
|
|
</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-option v-for="item in dataScopeOptions" :key="item.value" :label="item.label" :value="item.value"></el-option> |
|
|
|
|
</el-select> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="数据权限" v-show="form.dataScope == 2"> |
|
|
|
|
<el-checkbox v-model="deptExpand" @change="handleCheckedTreeExpand($event, 'dept')">展开/折叠</el-checkbox> |
|
|
|
|
<el-checkbox v-model="deptNodeAll" @change="handleCheckedTreeNodeAll($event, 'dept')">全选/全不选</el-checkbox> |
|
|
|
|
<el-checkbox v-model="form.deptCheckStrictly" @change="handleCheckedTreeConnect($event, 'dept')">父子联动</el-checkbox> |
|
|
|
|
<el-tree |
|
|
|
|
class="tree-border" |
|
|
|
|
:data="deptOptions" |
|
|
|
|
show-checkbox |
|
|
|
|
default-expand-all |
|
|
|
|
ref="deptRef" |
|
|
|
|
node-key="id" |
|
|
|
|
:check-strictly="!form.deptCheckStrictly" |
|
|
|
|
empty-text="加载中,请稍候" |
|
|
|
|
:props="{ label: 'label', children: 'children' }" |
|
|
|
|
></el-tree> |
|
|
|
|
<el-tree class="tree-border" :data="deptOptions" show-checkbox default-expand-all ref="deptRef" node-key="id" :check-strictly="!form.deptCheckStrictly" empty-text="加载中,请稍候" :props="{ label: 'label', children: 'children' }"></el-tree> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-form> |
|
|
|
|
<template #footer> |
|
|
|
|
@ -242,43 +152,43 @@
@@ -242,43 +152,43 @@
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<script setup name="Role"> |
|
|
|
|
import { addRole, changeRoleStatus, dataScope, delRole, getRole, listRole, updateRole, deptTreeSelect } from "@/api/system/role"; |
|
|
|
|
import { roleMenuTreeselect, treeselect as menuTreeselect } from "@/api/system/menu"; |
|
|
|
|
import { addRole, changeRoleStatus, dataScope, delRole, getRole, listRole, updateRole, deptTreeSelect } from "@/api/system/role"; |
|
|
|
|
import { roleMenuTreeselect, treeselect as menuTreeselect } from "@/api/system/menu"; |
|
|
|
|
|
|
|
|
|
const router = useRouter(); |
|
|
|
|
const { proxy } = getCurrentInstance(); |
|
|
|
|
const { sys_normal_disable } = proxy.useDict("sys_normal_disable"); |
|
|
|
|
const router = useRouter(); |
|
|
|
|
const { proxy } = getCurrentInstance(); |
|
|
|
|
const { sys_normal_disable } = proxy.useDict("sys_normal_disable"); |
|
|
|
|
|
|
|
|
|
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 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([ |
|
|
|
|
/** 数据范围选项*/ |
|
|
|
|
const dataScopeOptions = ref([ |
|
|
|
|
{ value: "1", label: "全部数据权限" }, |
|
|
|
|
{ value: "2", label: "自定数据权限" }, |
|
|
|
|
{ value: "3", label: "本部门数据权限" }, |
|
|
|
|
{ value: "4", label: "本部门及以下数据权限" }, |
|
|
|
|
{ value: "5", label: "仅本人数据权限" } |
|
|
|
|
]); |
|
|
|
|
]); |
|
|
|
|
|
|
|
|
|
const data = reactive({ |
|
|
|
|
const data = reactive({ |
|
|
|
|
form: {}, |
|
|
|
|
queryParams: { |
|
|
|
|
pageNum: 1, |
|
|
|
|
@ -292,54 +202,54 @@ const data = reactive({
@@ -292,54 +202,54 @@ const data = reactive({
|
|
|
|
|
roleKey: [{ required: true, message: "权限字符不能为空", trigger: "blur" }], |
|
|
|
|
roleSort: [{ required: true, message: "角色顺序不能为空", trigger: "blur" }] |
|
|
|
|
}, |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
const { queryParams, form, rules } = toRefs(data); |
|
|
|
|
const { queryParams, form, rules } = toRefs(data); |
|
|
|
|
|
|
|
|
|
/** 查询角色列表 */ |
|
|
|
|
function getList() { |
|
|
|
|
/** 查询角色列表 */ |
|
|
|
|
function getList() { |
|
|
|
|
loading.value = true; |
|
|
|
|
listRole(proxy.addDateRange(queryParams.value, dateRange.value)).then(response => { |
|
|
|
|
roleList.value = response.rows; |
|
|
|
|
total.value = response.total; |
|
|
|
|
loading.value = false; |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
/** 搜索按钮操作 */ |
|
|
|
|
function handleQuery() { |
|
|
|
|
} |
|
|
|
|
/** 搜索按钮操作 */ |
|
|
|
|
function handleQuery() { |
|
|
|
|
queryParams.value.pageNum = 1; |
|
|
|
|
getList(); |
|
|
|
|
} |
|
|
|
|
/** 重置按钮操作 */ |
|
|
|
|
function resetQuery() { |
|
|
|
|
} |
|
|
|
|
/** 重置按钮操作 */ |
|
|
|
|
function resetQuery() { |
|
|
|
|
dateRange.value = []; |
|
|
|
|
proxy.resetForm("queryRef"); |
|
|
|
|
handleQuery(); |
|
|
|
|
} |
|
|
|
|
/** 删除按钮操作 */ |
|
|
|
|
function handleDelete(row) { |
|
|
|
|
} |
|
|
|
|
/** 删除按钮操作 */ |
|
|
|
|
function handleDelete(row) { |
|
|
|
|
const roleIds = row.roleId || ids.value; |
|
|
|
|
proxy.$modal.confirm('是否确认删除角色编号为"' + roleIds + '"的数据项?').then(function () { |
|
|
|
|
return delRole(roleIds); |
|
|
|
|
}).then(() => { |
|
|
|
|
getList(); |
|
|
|
|
proxy.$modal.msgSuccess("删除成功"); |
|
|
|
|
}).catch(() => {}); |
|
|
|
|
} |
|
|
|
|
/** 导出按钮操作 */ |
|
|
|
|
function handleExport() { |
|
|
|
|
}).catch(() => { }); |
|
|
|
|
} |
|
|
|
|
/** 导出按钮操作 */ |
|
|
|
|
function handleExport() { |
|
|
|
|
proxy.download("system/role/export", { |
|
|
|
|
...queryParams.value, |
|
|
|
|
}, `role_${new Date().getTime()}.xlsx`); |
|
|
|
|
} |
|
|
|
|
/** 多选框选中数据 */ |
|
|
|
|
function handleSelectionChange(selection) { |
|
|
|
|
} |
|
|
|
|
/** 多选框选中数据 */ |
|
|
|
|
function handleSelectionChange(selection) { |
|
|
|
|
ids.value = selection.map(item => item.roleId); |
|
|
|
|
single.value = selection.length != 1; |
|
|
|
|
multiple.value = !selection.length; |
|
|
|
|
} |
|
|
|
|
/** 角色状态修改 */ |
|
|
|
|
function handleStatusChange(row) { |
|
|
|
|
} |
|
|
|
|
/** 角色状态修改 */ |
|
|
|
|
function handleStatusChange(row) { |
|
|
|
|
let text = row.status === "0" ? "启用" : "停用"; |
|
|
|
|
proxy.$modal.confirm('确认要"' + text + '""' + row.roleName + '"角色吗?').then(function () { |
|
|
|
|
return changeRoleStatus(row.roleId, row.status); |
|
|
|
|
@ -348,9 +258,9 @@ function handleStatusChange(row) {
@@ -348,9 +258,9 @@ function handleStatusChange(row) {
|
|
|
|
|
}).catch(function () { |
|
|
|
|
row.status = row.status === "0" ? "1" : "0"; |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
/** 更多操作 */ |
|
|
|
|
function handleCommand(command, row) { |
|
|
|
|
} |
|
|
|
|
/** 更多操作 */ |
|
|
|
|
function handleCommand(command, row) { |
|
|
|
|
switch (command) { |
|
|
|
|
case "handleDataScope": |
|
|
|
|
handleDataScope(row); |
|
|
|
|
@ -361,28 +271,28 @@ function handleCommand(command, row) {
@@ -361,28 +271,28 @@ function handleCommand(command, row) {
|
|
|
|
|
default: |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
/** 分配用户 */ |
|
|
|
|
function handleAuthUser(row) { |
|
|
|
|
} |
|
|
|
|
/** 分配用户 */ |
|
|
|
|
function handleAuthUser(row) { |
|
|
|
|
router.push("/system/role-auth/user/" + row.roleId); |
|
|
|
|
} |
|
|
|
|
/** 查询菜单树结构 */ |
|
|
|
|
function getMenuTreeselect() { |
|
|
|
|
} |
|
|
|
|
/** 查询菜单树结构 */ |
|
|
|
|
function getMenuTreeselect() { |
|
|
|
|
menuTreeselect().then(response => { |
|
|
|
|
menuOptions.value = response.data; |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
/** 所有部门节点数据 */ |
|
|
|
|
function getDeptAllCheckedKeys() { |
|
|
|
|
} |
|
|
|
|
/** 所有部门节点数据 */ |
|
|
|
|
function getDeptAllCheckedKeys() { |
|
|
|
|
// 目前被选中的部门节点 |
|
|
|
|
let checkedKeys = deptRef.value.getCheckedKeys(); |
|
|
|
|
// 半选中的部门节点 |
|
|
|
|
let halfCheckedKeys = deptRef.value.getHalfCheckedKeys(); |
|
|
|
|
checkedKeys.unshift.apply(checkedKeys, halfCheckedKeys); |
|
|
|
|
return checkedKeys; |
|
|
|
|
} |
|
|
|
|
/** 重置新增的表单以及其他数据 */ |
|
|
|
|
function reset() { |
|
|
|
|
} |
|
|
|
|
/** 重置新增的表单以及其他数据 */ |
|
|
|
|
function reset() { |
|
|
|
|
if (menuRef.value != undefined) { |
|
|
|
|
menuRef.value.setCheckedKeys([]); |
|
|
|
|
} |
|
|
|
|
@ -403,16 +313,16 @@ function reset() {
@@ -403,16 +313,16 @@ function reset() {
|
|
|
|
|
remark: undefined |
|
|
|
|
}; |
|
|
|
|
proxy.resetForm("roleRef"); |
|
|
|
|
} |
|
|
|
|
/** 添加角色 */ |
|
|
|
|
function handleAdd() { |
|
|
|
|
} |
|
|
|
|
/** 添加角色 */ |
|
|
|
|
function handleAdd() { |
|
|
|
|
reset(); |
|
|
|
|
getMenuTreeselect(); |
|
|
|
|
open.value = true; |
|
|
|
|
title.value = "添加角色"; |
|
|
|
|
} |
|
|
|
|
/** 修改角色 */ |
|
|
|
|
function handleUpdate(row) { |
|
|
|
|
} |
|
|
|
|
/** 修改角色 */ |
|
|
|
|
function handleUpdate(row) { |
|
|
|
|
reset(); |
|
|
|
|
const roleId = row.roleId || ids.value; |
|
|
|
|
const roleMenu = getRoleMenuTreeselect(roleId); |
|
|
|
|
@ -432,23 +342,23 @@ function handleUpdate(row) {
@@ -432,23 +342,23 @@ function handleUpdate(row) {
|
|
|
|
|
}); |
|
|
|
|
title.value = "修改角色"; |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
/** 根据角色ID查询菜单树结构 */ |
|
|
|
|
function getRoleMenuTreeselect(roleId) { |
|
|
|
|
} |
|
|
|
|
/** 根据角色ID查询菜单树结构 */ |
|
|
|
|
function getRoleMenuTreeselect(roleId) { |
|
|
|
|
return roleMenuTreeselect(roleId).then(response => { |
|
|
|
|
menuOptions.value = response.menus; |
|
|
|
|
return response; |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
/** 根据角色ID查询部门树结构 */ |
|
|
|
|
function getDeptTree(roleId) { |
|
|
|
|
} |
|
|
|
|
/** 根据角色ID查询部门树结构 */ |
|
|
|
|
function getDeptTree(roleId) { |
|
|
|
|
return deptTreeSelect(roleId).then(response => { |
|
|
|
|
deptOptions.value = response.depts; |
|
|
|
|
return response; |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
/** 树权限(展开/折叠)*/ |
|
|
|
|
function handleCheckedTreeExpand(value, type) { |
|
|
|
|
} |
|
|
|
|
/** 树权限(展开/折叠)*/ |
|
|
|
|
function handleCheckedTreeExpand(value, type) { |
|
|
|
|
if (type == "menu") { |
|
|
|
|
let treeList = menuOptions.value; |
|
|
|
|
for (let i = 0; i < treeList.length; i++) { |
|
|
|
|
@ -460,34 +370,34 @@ function handleCheckedTreeExpand(value, type) {
@@ -460,34 +370,34 @@ function handleCheckedTreeExpand(value, type) {
|
|
|
|
|
deptRef.value.store.nodesMap[treeList[i].id].expanded = value; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
/** 树权限(全选/全不选) */ |
|
|
|
|
function handleCheckedTreeNodeAll(value, type) { |
|
|
|
|
} |
|
|
|
|
/** 树权限(全选/全不选) */ |
|
|
|
|
function handleCheckedTreeNodeAll(value, type) { |
|
|
|
|
if (type == "menu") { |
|
|
|
|
menuRef.value.setCheckedNodes(value ? menuOptions.value : []); |
|
|
|
|
} else if (type == "dept") { |
|
|
|
|
deptRef.value.setCheckedNodes(value ? deptOptions.value : []); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
/** 树权限(父子联动) */ |
|
|
|
|
function handleCheckedTreeConnect(value, type) { |
|
|
|
|
} |
|
|
|
|
/** 树权限(父子联动) */ |
|
|
|
|
function handleCheckedTreeConnect(value, type) { |
|
|
|
|
if (type == "menu") { |
|
|
|
|
form.value.menuCheckStrictly = value ? true : false; |
|
|
|
|
} else if (type == "dept") { |
|
|
|
|
form.value.deptCheckStrictly = value ? true : false; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
/** 所有菜单节点数据 */ |
|
|
|
|
function getMenuAllCheckedKeys() { |
|
|
|
|
} |
|
|
|
|
/** 所有菜单节点数据 */ |
|
|
|
|
function getMenuAllCheckedKeys() { |
|
|
|
|
// 目前被选中的菜单节点 |
|
|
|
|
let checkedKeys = menuRef.value.getCheckedKeys(); |
|
|
|
|
// 半选中的菜单节点 |
|
|
|
|
let halfCheckedKeys = menuRef.value.getHalfCheckedKeys(); |
|
|
|
|
checkedKeys.unshift.apply(checkedKeys, halfCheckedKeys); |
|
|
|
|
return checkedKeys; |
|
|
|
|
} |
|
|
|
|
/** 提交按钮 */ |
|
|
|
|
function submitForm() { |
|
|
|
|
} |
|
|
|
|
/** 提交按钮 */ |
|
|
|
|
function submitForm() { |
|
|
|
|
proxy.$refs["roleRef"].validate(valid => { |
|
|
|
|
if (valid) { |
|
|
|
|
if (form.value.roleId != undefined) { |
|
|
|
|
@ -507,20 +417,20 @@ function submitForm() {
@@ -507,20 +417,20 @@ function submitForm() {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
/** 取消按钮 */ |
|
|
|
|
function cancel() { |
|
|
|
|
} |
|
|
|
|
/** 取消按钮 */ |
|
|
|
|
function cancel() { |
|
|
|
|
open.value = false; |
|
|
|
|
reset(); |
|
|
|
|
} |
|
|
|
|
/** 选择角色权限范围触发 */ |
|
|
|
|
function dataScopeSelectChange(value) { |
|
|
|
|
} |
|
|
|
|
/** 选择角色权限范围触发 */ |
|
|
|
|
function dataScopeSelectChange(value) { |
|
|
|
|
if (value !== "2") { |
|
|
|
|
deptRef.value.setCheckedKeys([]); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
/** 分配数据权限操作 */ |
|
|
|
|
function handleDataScope(row) { |
|
|
|
|
} |
|
|
|
|
/** 分配数据权限操作 */ |
|
|
|
|
function handleDataScope(row) { |
|
|
|
|
reset(); |
|
|
|
|
const deptTreeSelect = getDeptTree(row.roleId); |
|
|
|
|
getRole(row.roleId).then(response => { |
|
|
|
|
@ -537,9 +447,9 @@ function handleDataScope(row) {
@@ -537,9 +447,9 @@ function handleDataScope(row) {
|
|
|
|
|
}); |
|
|
|
|
title.value = "分配数据权限"; |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
/** 提交按钮(数据权限) */ |
|
|
|
|
function submitDataScope() { |
|
|
|
|
} |
|
|
|
|
/** 提交按钮(数据权限) */ |
|
|
|
|
function submitDataScope() { |
|
|
|
|
if (form.value.roleId != undefined) { |
|
|
|
|
form.value.deptIds = getDeptAllCheckedKeys(); |
|
|
|
|
dataScope(form.value).then(response => { |
|
|
|
|
@ -548,12 +458,12 @@ function submitDataScope() {
@@ -548,12 +458,12 @@ function submitDataScope() {
|
|
|
|
|
getList(); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
/** 取消按钮(数据权限)*/ |
|
|
|
|
function cancelDataScope() { |
|
|
|
|
} |
|
|
|
|
/** 取消按钮(数据权限)*/ |
|
|
|
|
function cancelDataScope() { |
|
|
|
|
openDataScope.value = false; |
|
|
|
|
reset(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
getList(); |
|
|
|
|
getList(); |
|
|
|
|
</script> |