From 97d94ddee893328989dc97dcfccab506adca0509 Mon Sep 17 00:00:00 2001 From: MrZhai Date: Sat, 12 Mar 2022 14:20:34 +0800 Subject: [PATCH] =?UTF-8?q?1.=E8=A7=92=E8=89=B2=E7=AE=A1=E7=90=86=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E5=A2=9E=E5=8A=A0=E6=89=AB=E7=A0=81=E5=8D=95=E6=8D=AE?= =?UTF-8?q?=E6=8E=88=E6=9D=83=E5=8A=9F=E8=83=BD=E9=A1=B5=E9=9D=A2=EF=BC=8C?= =?UTF-8?q?=E6=9A=82=E6=97=B6=E5=B1=8F=E8=94=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/basic/bussinessTypeRole.js | 17 ++++ src/views/userManage/admin/authRole.vue | 120 ++++++++++++++++++++++++ 2 files changed, 137 insertions(+) create mode 100644 src/api/basic/bussinessTypeRole.js diff --git a/src/api/basic/bussinessTypeRole.js b/src/api/basic/bussinessTypeRole.js new file mode 100644 index 0000000..3f97dcc --- /dev/null +++ b/src/api/basic/bussinessTypeRole.js @@ -0,0 +1,17 @@ +import axios from "../../utils/axios"; + +export function getBussinessTypeRole(query) { + return axios({ + url: '/admin/auth/role/getBussinessTypeRole', + method: "get", + params: query + }); +} + +export function updateBussinessTypeRole(query) { + return axios({ + url: '/admin/auth/role/updateBussinessTypeRole', + method: 'post', + params: query + }); +} diff --git a/src/views/userManage/admin/authRole.vue b/src/views/userManage/admin/authRole.vue index f4edd5a..e68b375 100644 --- a/src/views/userManage/admin/authRole.vue +++ b/src/views/userManage/admin/authRole.vue @@ -78,6 +78,13 @@ >删除 + @@ -171,6 +178,56 @@ > + + + + + + + + + + + + + + + + + + + + + + + @@ -182,6 +239,8 @@ import { authRoleSave, authRoleDelete } from "../../../api/auth/authRole"; +import {getBussinessType} from "../../../api/basic/bussinessType"; +import {getBussinessTypeRole, updateBussinessTypeRole} from "../../../api/basic/bussinessTypeRole"; const formJson = { id: "", @@ -210,6 +269,10 @@ export default { }, authLoading: false, authFormVisible: false, + authBussinessTypeFormVisible: false, + bussinessTypeList: {}, + multipleSelection: [], + currentCheckedRoleId: null, authFormData: { role_id: "", auth_rules: [] @@ -225,6 +288,10 @@ export default { 0: "否", 1: "是", }, + enableMap: { + true: "是", + false: "否", + }, formLoading: false, formVisible: false, formData: formJson, @@ -454,6 +521,55 @@ export default { this.$message.info("取消删除"); }); } + }, + //单据类型 + handleAuthBussinessType(index, row) { + this.authBussinessTypeFormVisible = true; + this.currentCheckedRoleId = row.id; + let query = {'roleId': row.id}; + getBussinessTypeRole(query).then((res) => { + this.multipleSelection = []; + let count = 0; + if (res.data.length > 0) { + this.bussinessTypeList.forEach(type => { + res.data.forEach(data => { + if (type.action == data.action) { + this.$refs.typeList.toggleRowSelection(type, true); + } else { + //未匹配上取消勾选,清除数据缓存 + this.$refs.typeList.toggleRowSelection(type, false); + } + }); + }); + } + }); + }, + updateBussinessTypeRole() { + this.authBussinessTypeFormVisible = false; + if (this.multipleSelection.length == 0) { + this.$message.error("至少选中一行数据") + } + let actions = this.multipleSelection.join(","); + let query = { + 'roleId': this.currentCheckedRoleId, + 'actions': actions + }; + updateBussinessTypeRole(query).then((res) => { + if (res.code == 20000) { + this.$message.info("授权成功"); + this.multipleSelection = []; + } + }).catch((error) => { + + }); + this.multipleSelection = null; + }, + handleSelectionChange(row) { + let _this = this; + _this.multipleSelection = []; + row.forEach((item) => { + _this.multipleSelection.push(item.action); + }) } }, filters: { @@ -477,6 +593,10 @@ export default { created() { // 加载表格数据 this.getList(); + + getBussinessType().then((res) => { + this.bussinessTypeList = res.data.list; + }); } };