角色管理完成

This commit is contained in:
xiayuping666
2024-04-18 17:15:06 +08:00
parent 480863aa4b
commit 2d7cbc4d9d
7 changed files with 733 additions and 269 deletions
+3 -1
View File
@@ -659,7 +659,9 @@ export default {
"roles": ["admin", "common"], "roles": ["admin", "common"],
"icon": "el-icon-collection" "icon": "el-icon-collection"
} }
} },
] ]
} }
+33
View File
@@ -41,6 +41,39 @@ export function deleteDept (id) {
} }
}) })
} }
// 获取所有的用户
export function getallUser (params) {
return request({
url: `/manager/user/list`,
method: 'get',
params
})
}
// 添加部门用户
export function postDeptUser (data) {
return request({
url: `/manager/dept/user`,
method: 'post',
data
})
}
// 添加部门用户
export function deleteDeptUser (data) {
return request({
url: `/manager/dept/user`,
method: 'DELETE',
data
})
}
// 修改部门用户迁移到其他部门
export function putDeptUser (data) {
return request({
url: `/manager/dept/user`,
method: 'put',
data
})
}
+216 -19
View File
@@ -7,9 +7,9 @@
ref="areaTrees" ref="areaTrees"
:default-expanded-keys="defaultCheckedKeys" :default-expanded-keys="defaultCheckedKeys"
:default-checked-keys="defaultCheckedKeys" :default-checked-keys="defaultCheckedKeys"
accordion accordion
:highlight-current="true" :highlight-current="true"
:props="defaultProps" @node-click="handleNodeClick" :props="defaultProps" @node-click="handleNodeClick"
></el-tree> ></el-tree>
<div class="add-box"> <div class="add-box">
<div class="add-list"> <div class="add-list">
@@ -30,11 +30,10 @@
</el-card> </el-card>
<el-card shadow="hover" style=" margin-top: 20px;" > <el-card shadow="hover" style=" margin-top: 20px;" >
<div style="margin-bottom: 10px;"> <div style="margin-bottom: 10px;">
<el-button type="primary">添加人员</el-button> <el-button @click="onClickAddUser" v-if="deptData.name" type="primary">添加人员</el-button>
</div> </div>
<el-table <el-table
:data="userArr" :data="deptUserArr"
:row-style="{ height: '50px' }" :row-style="{ height: '50px' }"
border border
> >
@@ -51,11 +50,34 @@
<img :src="scope.row.avatar" alt="" style="width: 100px; height: 100px;"> <img :src="scope.row.avatar" alt="" style="width: 100px; height: 100px;">
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="权限" prop="roleName"></el-table-column> <el-table-column label="角色" prop="roleName"></el-table-column>
<el-table-column label="操作" prop="avatar">
<template slot-scope="scope">
<el-button
@click="onClickTransfer(scope.row)"
slot="reference"
style="margin-left: 10px; color: #409eff"
class="el-icon-back"
type="text"
size="small"
>转移人员
</el-button>
<el-popconfirm
@confirm="onClickDelete(scope.row)"
:title="'确定要删除吗?'"
>
<el-button
slot="reference"
style="margin-left: 10px; color: red"
class="el-icon-delete"
type="text"
size="small"
>删除</el-button
>
</el-popconfirm>
</template>
</el-table-column>
</el-table> </el-table>
</el-card> </el-card>
<!-- <Pagination <!-- <Pagination
:total="total" :total="total"
@@ -79,8 +101,8 @@
</el-form-item> </el-form-item>
<el-form-item v-if="resource === 2" label="上级部门" prop="parentId"> <el-form-item v-if="resource === 2" label="上级部门" prop="parentId">
<Treeselect v-model="deptForm.parentId" :options="deptArr" :normalizer="normalizer" placeholder="选择上级部门" /> <Treeselect v-model="deptForm.parentId" :options="deptArr" :normalizer="normalizer" placeholder="选择上级部门" />
</el-form-item> </el-form-item>
<el-form-item label="部门名称"> <el-form-item label="部门名称">
<el-input v-model="deptForm.name" placeholder="请输入部门名称"></el-input> <el-input v-model="deptForm.name" placeholder="请输入部门名称"></el-input>
</el-form-item> </el-form-item>
@@ -114,16 +136,87 @@
<el-button type="primary" @click="onClickAffirmUpdate"> </el-button> <el-button type="primary" @click="onClickAffirmUpdate"> </el-button>
</span> </span>
</el-dialog> </el-dialog>
<!-- 人员添加模态框 -->
<el-dialog title="人员添加"
:visible.sync="isAddUserDialog"
width="60%">
<el-row :gutter="35">
<el-col :xs="24" :sm="12" :md="12" :lg="8" :xl="6" class="mb20">
<div style="display: flex;">
<div style="width: 50px; line-height: 28px; font-weight: 600;">搜索</div>
<el-input v-model="userQuery.condition" placeholder="请输入用户名或手机号搜索" class="input-with-select">
<el-button @click="onClickSearch" slot="append" icon="el-icon-search"></el-button>
</el-input>
</div>
</el-col>
</el-row>
<el-table
ref="multipleTable"
:data="allUserArr"
:row-key="getRowKeys"
tooltip-effect="dark"
style="width: 100%"
@selection-change="handleSelectionChange">
<el-table-column
:reserve-selection="true"
type="selection"
width="55">
</el-table-column>
<el-table-column label="照片" prop="faceImg">
<template slot-scope="scope">
<img :src="scope.row.faceImg" alt="" style="width: 100px; height: 100px;">
</template>
</el-table-column>
<el-table-column label="姓名" prop="name"></el-table-column>
<el-table-column label="性别" prop="gender"></el-table-column>
<el-table-column label="手机号" prop="mobile"></el-table-column>
<el-table-column label="头像" prop="avatar">
<template slot-scope="scope">
<img :src="scope.row.avatar" alt="" style="width: 100px; height: 100px;">
</template>
</el-table-column>
</el-table>
<Pagination
:total="userTotal"
:pageNum="userQuery.current"
:pageSize="userQuery.size"
@clickCurrent="onClickCurrent"
@clickSize="onClickSize"
/>
<span slot="footer" class="dialog-footer">
<el-button @click="isAddUserDialog = false"> </el-button>
<el-button type="primary" @click="onClickAffirmAddUser">确定添加</el-button>
</span>
</el-dialog>
<!-- 人员添加模态框 -->
<el-dialog title="部门人员转移"
:visible.sync="isTransferDialog"
width="30%">
<el-form ref="transferForm" :model="deptForm" label-width="80px">
<el-form-item label="当前部门" prop="newDeptId">
<el-input v-model="deptData.name" disabled />
</el-form-item>
<el-form-item label="新部门" prop="newDeptId">
<Treeselect v-model="transferForm.newDeptId" :options="deptArr" :normalizer="normalizer" placeholder="选择上级部门" />
</el-form-item>
<div style="margin-top: 100px;"></div>
</el-form>
<span slot="footer" class="dialog-footer">
<el-button @click="isTransferDialog = false"> </el-button>
<el-button type="primary" @click="onClickAffirmTransferUser">确定转移</el-button>
</span>
</el-dialog>
</div> </div>
</template> </template>
<script> <script>
import columns from "./columns"; import columns from "./columns";
import { getDept, getDeptUser, postDept, putDept, deleteDept } from "./api"; import { getDept, getDeptUser, postDept, putDept, deleteDept, getallUser, postDeptUser, deleteDeptUser, putDeptUser } from "./api";
import { formatDate } from "@/com/index"; import { formatDate } from "@/com/index";
import CommonHead from './components/CommonHead.vue' import CommonHead from './components/CommonHead.vue'
import Treeselect from "@riophae/vue-treeselect"; import Treeselect from "@riophae/vue-treeselect";
import "@riophae/vue-treeselect/dist/vue-treeselect.css"; import "@riophae/vue-treeselect/dist/vue-treeselect.css";
const errorMessages = { const errorMessages = {
name: '请输入部门名称', name: '请输入部门名称',
sort: '请输入排序', sort: '请输入排序',
@@ -145,7 +238,7 @@ export default {
}, },
deptArr: [], // 校区班级列表 deptArr: [], // 校区班级列表
userArr: [],// 学生列表 deptUserArr: [],// 部门用户列表
defaultCheckedKeys: [], defaultCheckedKeys: [],
isAddDialog: false, // 新增弹框 isAddDialog: false, // 新增弹框
isUpdateDialog: false, // 修改弹框 isUpdateDialog: false, // 修改弹框
@@ -160,7 +253,21 @@ export default {
sort: '', sort: '',
deptId: null, // 部门id deptId: null, // 部门id
}, // 修改部门表单 }, // 修改部门表单
resource: 1 resource: 1, // 是否是一级部门
isAddUserDialog: false, // 添加用户模态框
allUserArr: [], // 所有用户列表
userTotal: 0,
userQuery: { // 获取所有用户参数
current: 1,
size: 10,
condition: null, // 可以是用户名或手机号
},
multipleSelection: '', // 选中的用户
isTransferDialog: false, // 转移用户模态框
transferForm: {
newDeptId: null,
}, // 转移部门的模态框
}; };
}, },
components: { components: {
@@ -170,11 +277,79 @@ export default {
}, },
async created() { async created() {
this.deptList() this.deptList()
this.allUserList()
}, },
mounted () { mounted () {
}, },
methods: { methods: {
// 点击确定转移用户部门
onClickAffirmTransferUser() {
if(this.transferForm.newDeptId){
putDeptUser(this.transferForm).then( res =>{
this.$message.success('转移成功')
this.isTransferDialog = false
this.deptUserList(this.deptData.deptId)
})
}else {
this.$message.error('请选择新部门')
}
// this.isTransferDialog = false
console.log(this.transferForm)
},
// 点击转移用户
onClickTransfer(row) {
this.transferForm = {
newDeptId: null,
deptId: this.deptData.deptId,
userid: row.userid
}, // 转移部门的模态框
this.isTransferDialog = true
},
// 点击删除
onClickDelete(row) {
console.log(row)
let obj = { userid: row.userid, deptId: this.deptData.deptId }
deleteDeptUser(obj).then( res =>{
this.$message.success('删除成功')
this.deptUserList(this.deptData.deptId)
})
},
// 点击搜索
onClickSearch() {
this.userQuery.current = 1
this.userQuery.size = 10
this.allUserList()
},
// 点击添加用户
onClickAddUser() {
this.isAddUserDialog = true;
if(this.multipleSelection.length){
this.$refs.multipleTable.clearSelection();
this.multipleSelection = []
}
},
onClickAffirmAddUser() {
if(this.multipleSelection.length){
let arr = []
this.multipleSelection.forEach(item => {
arr.push(item.userid)
})
let obj = { deptId: this.deptData.deptId, userIds: arr}
// console.log(obj)
postDeptUser(obj).then( res =>{
this.$message.success('添加成功')
this.isAddUserDialog = false
this.deptUserList(this.deptData.deptId)
})
}else{
this.$message.error('请勾选需要添加的人员')
}
},
handleSelectionChange(val) {
this.multipleSelection = val;
console.log(val)
},
normalizer(node) { normalizer(node) {
if (node.childrenList && !node.childrenList.length) { if (node.childrenList && !node.childrenList.length) {
return { id: node.deptId, label: node.name, }; return { id: node.deptId, label: node.name, };
@@ -194,14 +369,21 @@ export default {
getDept().then( res =>{ getDept().then( res =>{
this.deptData.deptId ? this.defaultCheckedKeys = [this.deptData.deptId] : '' this.deptData.deptId ? this.defaultCheckedKeys = [this.deptData.deptId] : ''
this.deptArr = res this.deptArr = res
let arr = this.deptArr .flat(Infinity); let arr = this.deptArr.flat(Infinity);
console.log(arr) console.log(arr)
}) })
}, },
// 获取部门用户列表 // 获取部门用户列表
deptUserList(deptId){ deptUserList(deptId){
getDeptUser(deptId, this.query).then( res =>{ getDeptUser(deptId, this.query).then( res =>{
this.userArr = res this.deptUserArr = res
})
},
// 获取所有用户列表 用于添加部门人员
allUserList() {
getallUser(this.userQuery).then(res =>{
this.allUserArr = res.records
this.userTotal = res.total
}) })
}, },
// 点击确定修改 // 点击确定修改
@@ -270,6 +452,16 @@ export default {
this.$message({ type: 'info', message: '已取消删除' }); this.$message({ type: 'info', message: '已取消删除' });
}); });
}, },
// 点击切换页数
onClickCurrent(val) {
this.userQuery.current = val;
this.allUserList();
},
// 点击了每页页数
onClickSize(val) {
this.userQuery.size = val;
this.allUserList();
},
onChangeRadio() { onChangeRadio() {
this.resetDeptForm() this.resetDeptForm()
}, },
@@ -286,7 +478,12 @@ export default {
sort: '', sort: '',
deptId: null, deptId: null,
} }
} },
// 设置节点id
getRowKeys(row) {
return row.userid
},
}, },
+4 -1
View File
@@ -174,12 +174,13 @@ export default {
}, },
// 登录按钮点击 // 登录按钮点击
submitForm() { submitForm() {
this.submit.loading = true;
this.$router.push('/evaluate') this.$router.push('/evaluate')
console.log(this.$router) console.log(this.$router)
if( rulesPhone(this.loginForm.phone) ){ // 判断是否存在手机号验证码 if( rulesPhone(this.loginForm.phone) ){ // 判断是否存在手机号验证码
if(this.loginForm.code){ if(this.loginForm.code){
this.submit.loading = true;
// 登录发请求获取用户信息 // 登录发请求获取用户信息
let obj = {...this.$store.state.loginConfig.loginConfig, ...this.loginForm} let obj = {...this.$store.state.loginConfig.loginConfig, ...this.loginForm}
let formData = new FormData() let formData = new FormData()
@@ -209,6 +210,8 @@ export default {
this.submit.loading = false; this.submit.loading = false;
this.sendText = '发送' this.sendText = '发送'
}) })
}else{
this.$message.error('请输入验证码!')
} }
}else { }else {
this.$message.error('请输入正确的手机号!') this.$message.error('请输入正确的手机号!')
+34 -27
View File
@@ -1,30 +1,37 @@
import request from '@/utils/request'; import request from '@/utils/request';
// 查询角色列表
// 修改获取增加权限 export function getRole (params) {
export const rqModifyOrAddPermissions = (data) => request({ return request({
url: `/user-dept/user/roleAuthority`, url: '/manager/role/list',
method: 'post', method: 'get',
data params
}) })
}
// 添加角色
export function postRole (data) {
return request({
// 获取角色列表 url: '/manager/role',
export const rqGetRoleList = (groupId=-1) => request({ method: 'post',
url: `/user-dept/user/role/${groupId}`, data
method: 'get', })
}) }
// 获取权限列表 // 修改角色
export const rqGetPermissionList = (parentId=0) => request({ export function putRole (data) {
url: `/user-dept/user/authority/list/${parentId}`, return request({
method: 'get', url: '/manager/role',
}) method: 'put',
data
// 根据id查询它有那些权限 })
export const rqQueryPermission= (id) => request({ }
url: `/user-dept/user/authority/${id}`, // 删除角色
method: 'get', export function deleteRole (id) {
}) return request({
url: '/manager/role',
method: 'DELETE',
params: {
id
}
})
}
+264
View File
@@ -0,0 +1,264 @@
<template>
<div>
<div>
<!-- 搜索 -->
<div class="form-adapt-container">
<el-card shadow="hover">
<CommonHead
@search-data="searchForm"
@reset-data="reset"
@newly-data="add"
></CommonHead>
<!-- newly-data删除所选事件 -->
<!-- reset-data重置表单内容 -->
<!-- search-data搜索事件接收被搜索的内容 -->
<el-form>
<el-form-item label="角色范围" style="margin-top: 10px">
<el-select
size="mini"
v-model="firstLevelRoleid"
placeholder="请选择所属范围"
>
<el-option
v-for="(item, index) in firstLevelRoleList"
:label="item.name"
:key="index"
:value="item.id"
@click.native="queryRoleList(item.id)"
></el-option>
</el-select>
</el-form-item>
</el-form>
</el-card>
<CommonTables
v-loading="loading"
:delete-func="deleteData"
:edit-func="editData"
:columns="columns"
:data="RoleList"
></CommonTables>
<!-- <Pagination
:total="total"
:pageNum="query.pageNum"
:pageSize="query.pageSize"
@clickCurrent="onClickCurrent"
@clickSize="onClickSize"
/> -->
</div>
</div>
<!-- 对话框 -->
<el-dialog
title="设置权限"
:visible.sync="dialogVisible"
width="30%"
:before-close="handleClose"
>
<el-tree
ref="treeOne"
:data="LevelPermissionList"
show-checkbox
node-key="id"
:props="defaultProps"
>
</el-tree>
<span slot="footer" class="dialog-footer">
<el-button @click="dialogVisible = false" size="mini"> </el-button>
<el-button type="primary" @click="confirmSettingRules" size="mini"
> </el-button
>
</span>
</el-dialog>
</div>
</template>
<script>
import columns from "./columns";
import {
rqGetRoleList,
rqGetPermissionList,
rqQueryPermission,
rqModifyOrAddPermissions,
} from "./api";
export default {
name: "rolePermissions",
data() {
return {
columns,
total: 0,
query: {
pageNum: 1,
pageSize: 10,
},
loading: false,
ruleList: [],
dialogVisible: false,
// 一级角色列表
firstLevelRoleList: [],
// 一级id
firstLevelRoleid: "默认",
//操作角色列表
RoleList: [],
// 一级权限列表
LevelPermissionList: [],
// 一级id
firstLevelPermission: "",
defaultProps: {
children: "authorities",
label: "alias",
},
// 角色的id
formRC: {
roleid: "",
// 点击已经选中的id集合
authorityids: [],
},
// 进来已经选择的
selectedByDefault: [],
};
},
created() {
this.getRoleList();
this.getPermissionList();
this.queryRoleList(592539677);
},
methods: {
// 搜索按钮
searchForm() {
this.$message("正在搜索");
},
// 重置按钮
reset() {
this.bus.$emit("onCurrentContextmenuClick", {
id: 0,
path: this.$route.path,
});
},
// 添加
add() {
this.$message("角色新增请联系钉钉后台管理员");
},
// 删除
async deleteData(row) {
this.$message("该角色暂时无法删除");
},
// 编辑
async editData(item) {
this.formRC.roleid = item.id;
this.dialogVisible = true;
console.log(item);
let res = await rqQueryPermission(item.id);
if (res.code == 200) {
let arr = res.data.map((item, index) => {
return item.id;
});
this.selectedByDefault = arr;
this.$refs.treeOne.setCheckedKeys(arr);
} else {
this.$message.error("网络错误");
}
},
// 点击切换页数
onClickCurrent(val) {
this.query.pageNum = val;
this.getAttendanceFormData();
},
// 点击了每页页数
onClickSize(val) {
this.query.pageSize = val;
this.getAttendanceFormData();
},
handleClose(done) {
this.$confirm("确认关闭?")
.then((_) => {
done();
})
.catch((_) => {});
},
// 获取角色列表分类
async getRoleList() {
try {
this.loading = true;
// let result = await rqGetRuleList(this.query.pageNum, this.query.pageSize);//做了分页
let result = await rqGetRoleList();
if (result.code == 200) {
this.loading = false;
this.firstLevelRoleList = result.data;
// this.total = result.data.total;
} else {
this.loading = false;
this.$message.error("服务器错误");
}
} catch (error) {
this.loading = false;
this.$message.error("网络错误");
}
},
// 查询角色列表
async queryRoleList(id) {
try {
this.loading = true;
// let result = await rqGetRuleList(this.query.pageNum, this.query.pageSize);//做了分页
let result = await rqGetRoleList(id);
if (result.code == 200) {
this.loading = false;
this.RoleList = result.data;
// this.total = result.data.total;
} else {
this.loading = false;
this.$message.error("网络错误");
}
} catch (error) {
this.loading = false;
this.$message.error("网络错误");
}
},
// 获取权限列表
async getPermissionList() {
console.log(111);
try {
this.loading = true;
// let result = await rqGetRuleList(this.query.pageNum, this.query.pageSize);//做了分页
let result = await rqGetPermissionList();
if (result.code == 200) {
this.loading = false;
this.LevelPermissionList = result.data;
// this.total = result.data.total;
} else {
this.loading = false;
this.$message.error("服务器错误");
}
} catch (error) {
this.loading = false;
this.$message.error("网络错误");
}
},
// 确认新增或者修改按钮
async confirmSettingRules() {
const treeInstance = this.$refs.treeOne;
// 调用 getCheckedNodes 方法获取已勾选的节点数组
const checkedNodes = treeInstance.getCheckedNodes();
console.log(checkedNodes);
let arr = checkedNodes.map((ion, index) => {
return ion.id;
});
this.formRC.authorityids = arr;
let res = await rqModifyOrAddPermissions(this.formRC);
if (res.code == 200) {
this.$message.success("设置成功");
this.dialogVisible = false;
} else {
this.dialogVisible = false;
this.$message.success("服务器错误");
}
},
},
};
</script>
<style lang="scss" scoped></style>
+179 -221
View File
@@ -1,74 +1,126 @@
<template> <template>
<div> <div>
<div> <el-card shadow="hover">
<!-- 搜索 --> <!-- <h4>{{ classData.name}}</h4> -->
<div class="form-adapt-container"> <div style="display: flex;">
<el-card shadow="hover"> <el-button @click="isAddDialog = true; resetForm()" size="mini" type="primary" class="el-icon-plus">新增角色</el-button>
<CommonHead
@search-data="searchForm" <!-- <el-button @click="isAddDialog = true" slot="reference" style="margin-left: 10px;" class="el-icon-plus" type="text" size="small" >新增</el-button> -->
@reset-data="reset" <!-- <div style="margin-right: 10px; font-size: 16px; line-height: 27px; font-weight: 700;">{{ deptData.name }}</div> -->
@newly-data="add" <!-- <div v-else style="margin-right: 10px; font-size: 16px; line-height: 27px;font-weight: 700;">{{ classData.name}}</div> -->
></CommonHead> <!-- <el-button @click="onClickUpdate" v-if="deptData.name" size="mini" type="warning" class="el-icon-edit">修改角色</el-button>
<!-- newly-data删除所选事件 --> <el-button @click="onClickRemove" v-if="deptData.name" size="mini" type="danger" class="el-icon-delete">删除</el-button> -->
<!-- reset-data重置表单内容 --> </div>
<!-- search-data搜索事件接收被搜索的内容 --> </el-card>
<el-form> <el-card shadow="hover" style=" margin-top: 20px;" >
<el-form-item label="角色范围" style="margin-top: 10px"> <el-table
<el-select :data="roleArr"
size="mini" row-key="id"
v-model="firstLevelRoleid" :tree-props="{ children: 'childrenList'}"
placeholder="请选择所属范围" :row-style="{ height: '50px' }"
border
>
<el-table-column label="角色名" prop="name"></el-table-column>
<el-table-column label="创建时间" prop="createTime"></el-table-column>
<el-table-column label="排序" prop="sort"></el-table-column>
<el-table-column label="操作" prop="avatar">
<template slot-scope="scope">
<el-button
@click="resetForm();isAddDialog = true; roleForm.groupId = scope.row.id;"
v-if="scope.row.groupId == -1"
slot="reference"
style="margin-left: 10px;"
class="el-icon-plus"
type="text"
size="small"
>新增</el-button>
<el-button
@click="resetForm(); roleForm = { ...scope.row }; ;isUpdateDialog = true;"
slot="reference"
style="margin-left: 10px;"
class="el-icon-edit"
type="text"
size="small"
>修改</el-button>
<el-popconfirm
@confirm="onClickDelete(scope.row)"
:title="'确定要删除吗?'"
> >
<el-option <el-button
v-for="(item, index) in firstLevelRoleList" slot="reference"
:label="item.name" style="margin-left: 10px; color: red"
:key="index" class="el-icon-delete"
:value="item.id" type="text"
@click.native="queryRoleList(item.id)" size="small"
></el-option> >删除</el-button
</el-select> >
</el-form-item> </el-popconfirm>
</el-form> </template>
</el-card> </el-table-column>
</el-table>
<CommonTables </el-card>
v-loading="loading"
:delete-func="deleteData"
:edit-func="editData"
:columns="columns"
:data="RoleList"
></CommonTables>
<!-- <Pagination <!-- <Pagination
:total="total" :total="total"
:pageNum="query.pageNum" :pageNum="query.current"
:pageSize="query.pageSize" :pageSize="query.size"
@clickCurrent="onClickCurrent" @clickCurrent="onClickCurrent"
@clickSize="onClickSize" @clickSize="onClickSize"
/> --> /> -->
</div>
</div>
<!-- 对话框 -->
<el-dialog
title="设置权限"
:visible.sync="dialogVisible"
width="30%"
:before-close="handleClose"
>
<el-tree
ref="treeOne"
:data="LevelPermissionList"
show-checkbox
node-key="id"
:props="defaultProps"
>
</el-tree>
<!-- 新增角色 -->
<el-dialog
title="新增角色"
:visible.sync="isAddDialog"
width="30%">
<el-form ref="roleForm" :model="roleForm" label-width="80px">
<el-form-item v-if="roleForm.groupId" label="上级角色" prop="groupId" >
<el-select v-model="roleForm.groupId" disabled>
<el-option
v-for="item in roleArr"
:key="item.id"
:label="item.name"
:value="item.id">
</el-option>
</el-select>
</el-form-item>
<el-form-item label="角色名称">
<el-input v-model="roleForm.name" placeholder="请输入角色名称"></el-input>
</el-form-item>
<el-form-item label="排序">
<el-input v-model="roleForm.sort" type="number" placeholder="数值越小越靠前" ></el-input>
</el-form-item>
</el-form>
<span slot="footer" class="dialog-footer"> <span slot="footer" class="dialog-footer">
<el-button @click="dialogVisible = false" size="mini"> </el-button> <el-button @click="isAddDialog = false"> </el-button>
<el-button type="primary" @click="confirmSettingRules" size="mini" <el-button type="primary" @click="onClickAffirm"> </el-button>
> </el-button </span>
> </el-dialog>
<!-- 修改角色 -->
<el-dialog
title="修改角色"
:visible.sync="isUpdateDialog"
width="30%">
<el-form ref="roleForm" :model="roleForm" label-width="80px">
<!-- <el-form-item v-if="roleForm.groupId" label="上级角色" prop="groupId" >
<el-select v-model="roleForm.groupId" disabled>
<el-option
v-for="item in roleArr"
:key="item.id"
:label="item.name"
:value="item.id">
</el-option>
</el-select>
</el-form-item> -->
<el-form-item label="角色名称">
<el-input v-model="roleForm.name" placeholder="请输入角色名称"></el-input>
</el-form-item>
<el-form-item label="排序">
<el-input v-model="roleForm.sort" type="number" placeholder="数值越小越靠前" ></el-input>
</el-form-item>
</el-form>
<span slot="footer" class="dialog-footer">
<el-button @click="isAddDialog = false"> </el-button>
<el-button type="primary" @click="onClickUpdateAffirm"> </el-button>
</span> </span>
</el-dialog> </el-dialog>
</div> </div>
@@ -76,187 +128,93 @@
<script> <script>
import columns from "./columns"; import columns from "./columns";
import { import { getRole, postRole, putRole, deleteRole} from "./api";
rqGetRoleList,
rqGetPermissionList,
rqQueryPermission,
rqModifyOrAddPermissions,
} from "./api";
const errorMessages = {
name: '请输入角色名称',
sort: '请输入排序',
};
export default { export default {
name: "rolePermissions", name: "rolePermissions",
data() { data() {
return { return {
columns,
total: 0, total: 0,
query: { query: {
pageNum: 1, current: 1,
pageSize: 10, size: 10,
groupId: -1
}, },
loading: false, roleArr: [],
ruleList: [], isAddDialog: false,
dialogVisible: false, roleForm: {
name: null,
sort: null,
groupId: null,
},
roleData: {}, // 点击新增选中的角色
isUpdateDialog: false,
// 一级角色列表
firstLevelRoleList: [],
// 一级id
firstLevelRoleid: "默认",
//操作角色列表
RoleList: [],
// 一级权限列表
LevelPermissionList: [],
// 一级id
firstLevelPermission: "",
defaultProps: {
children: "authorities",
label: "alias",
},
// 角色的id
formRC: {
roleid: "",
// 点击已经选中的id集合
authorityids: [],
},
// 进来已经选择的
selectedByDefault: [],
}; };
}, },
created() { created() {
this.getRoleList(); this.roleList();
this.getPermissionList();
this.queryRoleList(592539677);
}, },
methods: { methods: {
// 搜索按钮 // 点击确定新增
searchForm() { onClickAffirm() {
this.$message("正在搜索"); console.log(this.roleForm)
}, let obj = { ...this.roleForm }
// 重置按钮 if(obj.name === null){
reset() { this.$message.error(errorMessages.name);
this.bus.$emit("onCurrentContextmenuClick", { }else if(obj.sort === null){
id: 0, this.$message.error(errorMessages.sort);
path: this.$route.path, }else {
}); obj.groupId ? '' : obj.groupId = -1
}, postRole(obj).then(res =>{
// 添加 this.roleList();
add() { this.$message.success('新增成功')
this.$message("角色新增请联系钉钉后台管理员"); this.isAddDialog = false
},
// 删除
async deleteData(row) {
this.$message("该角色暂时无法删除");
},
// 编辑
async editData(item) {
this.formRC.roleid = item.id;
this.dialogVisible = true;
console.log(item);
let res = await rqQueryPermission(item.id);
if (res.code == 200) {
let arr = res.data.map((item, index) => {
return item.id;
});
this.selectedByDefault = arr;
this.$refs.treeOne.setCheckedKeys(arr);
} else {
this.$message.error("网络错误");
}
},
// 点击切换页数
onClickCurrent(val) {
this.query.pageNum = val;
this.getAttendanceFormData();
},
// 点击了每页页数
onClickSize(val) {
this.query.pageSize = val;
this.getAttendanceFormData();
},
handleClose(done) {
this.$confirm("确认关闭?")
.then((_) => {
done();
}) })
.catch((_) => {});
},
// 获取角色列表分类
async getRoleList() {
try {
this.loading = true;
// let result = await rqGetRuleList(this.query.pageNum, this.query.pageSize);//做了分页
let result = await rqGetRoleList();
if (result.code == 200) {
this.loading = false;
this.firstLevelRoleList = result.data;
// this.total = result.data.total;
} else {
this.loading = false;
this.$message.error("服务器错误");
}
} catch (error) {
this.loading = false;
this.$message.error("网络错误");
} }
}, },
// 查询角色列表 // 点击确定修改
async queryRoleList(id) { onClickUpdateAffirm() {
try { console.log(this.roleForm)
this.loading = true; putRole(this.roleForm).then(res =>{
// let result = await rqGetRuleList(this.query.pageNum, this.query.pageSize);//做了分页 this.roleList();
let result = await rqGetRoleList(id); this.$message.success('修改成功')
if (result.code == 200) { this.isUpdateDialog = false
this.loading = false; })
this.RoleList = result.data; },
// this.total = result.data.total; normalizer(node) {
} else { if (node.childrenList && !node.childrenList.length) {
this.loading = false; return { id: node.id, label: node.name, };
this.$message.error("网络错误"); }else {
} return { id: node.id, label: node.name, children: node.childrenList };
} catch (error) {
this.loading = false;
this.$message.error("网络错误");
} }
}, },
// 获取权限列表 // 获取角色列表
async getPermissionList() { roleList() {
console.log(111); getRole(this.query).then(res =>{
try { this.roleArr = res
this.loading = true; })
// let result = await rqGetRuleList(this.query.pageNum, this.query.pageSize);//做了分页
let result = await rqGetPermissionList();
if (result.code == 200) {
this.loading = false;
this.LevelPermissionList = result.data;
// this.total = result.data.total;
} else {
this.loading = false;
this.$message.error("服务器错误");
}
} catch (error) {
this.loading = false;
this.$message.error("网络错误");
}
}, },
// 点击删除
// 确认新增或者修改按钮 onClickDelete(item){
async confirmSettingRules() { console.log(item)
const treeInstance = this.$refs.treeOne; deleteRole(item.id).then(res =>{
// 调用 getCheckedNodes 方法获取已勾选的节点数组 this.roleList();
const checkedNodes = treeInstance.getCheckedNodes(); this.$message.success('删除成功')
console.log(checkedNodes); })
let arr = checkedNodes.map((ion, index) => {
return ion.id;
});
this.formRC.authorityids = arr;
let res = await rqModifyOrAddPermissions(this.formRC);
if (res.code == 200) {
this.$message.success("设置成功");
this.dialogVisible = false;
} else {
this.dialogVisible = false;
this.$message.success("服务器错误");
}
}, },
// 重置表单
resetForm() {
this.roleForm = {
name: null,
sort: null,
groupId: null,
}
}
}, },
}; };
</script> </script>