123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390 |
- <!--
- * @Author: your name
- * @Date: 2021-11-29 11:26:07
- * @LastEditTime: 2022-02-28 16:30:03
- * @LastEditors: Please set LastEditors
- * @Description:权限项
- * @FilePath: \Foshan4A2.0\src\views\authorityManagement\components\authorityPower.vue
- -->
- <template>
- <div class="authorityPower">
- <!--新增权限项-->
- <div class="addApp-form">
- <div class="addApp-form-title flex">
- <div class="title">
- 编辑权限项
- <!-- <span class="isqy">
- <span>是否启用</span>
- <el-radio v-model="radio" :label="1">是</el-radio>
- <el-radio v-model="radio" :label="0">否</el-radio>
- </span> -->
- </div>
- <div class="btn">
- <!-- <el-button @click="deleteAuth" class="r24" type="danger">删除</el-button> -->
- <el-button @click="saveBtn('form')" type="primary">保存</el-button>
- </div>
- </div>
- <div class="addApp-form-content dialog-public-background">
- <el-form :inline="true" ref="form" :rules="rules" class="form" :model="form">
- <el-form-item prop="name" label="权限项名称">
- <el-input placeholder="请输入权限项名称" maxlength="32" v-model="form.name"></el-input>
- </el-form-item>
- <el-form-item prop="id" label="标识符">
- <el-input placeholder="请输入标识符" maxlength="32" v-model="form.id"></el-input>
- </el-form-item>
- <el-form-item label="描述">
- <el-input style="width: 640px" maxlength="200" placeholder="请输入描述" v-model="form.app"></el-input>
- </el-form-item>
- </el-form>
- </div>
- </div>
- <div class="power-content flex-wrap">
- <div :class="!openRole && !OpenGroup ? '' : 'r24'" class="flex1 part">
- <Organization :defaultProps="defaultProps" :checkedKeys="checkedKeys" @getTreeData="getTreeData" :orgType="orgType" :data="data" nodekey="AuthId" title="上级权限项" />
- </div>
- <!--有角色-->
- <template v-if="openRole">
- <div class="r24 flex1 part">
- <Rulesofcompetency @getData="getData" :authTo="authTo" title="权限规则" />
- </div>
- <div v-is="['authtree_role_card']" class="flex1 part">
- <Rolelist @checkChange="checkChange" :roleType="roleType" :checkBoxList="checkBoxList" :number="8" title="角色" />
- </div>
- </template>
- <!--有岗位-->
- <template v-else-if="OpenGroup">
- <div class="r24 flex1 part">
- <Rulesofcompetency @getData="getData" :authTo="authTo" title="权限规则" />
- </div>
- <div v-is="['authtree_role_card']" class="flex1 part">
- <Rolelist @checkChange="checkChange" :roleType="roleType" :checkBoxList="checkBoxList" :number="8" title="账号授权" />
- </div>
- </template>
- </div>
- </div>
- </template>
- <script>
- import Rolelist from "@/components/rolelist";
- import Rulesofcompetency from "@/components/rulesofcompetency";
- import Organization from "@/components/organization";
- import {
- GetAuthDetails,
- QueryRole,
- GetUserList,
- SaveAuth,
- DeleteAuth,
- } from "@/api/apiAuthority";
- import treeData from "../minixs/treeData";
- import { mapGetters } from "vuex";
- export default {
- name: "AuthorityPower",
- components: { Rolelist, Rulesofcompetency, Organization },
- mixins: [treeData],
- data () {
- return {
- radio: 1,
- form: {
- //应用表单
- name: "",
- id: "",
- app: "",
- },
- rules: {
- //表单验证
- name: [
- { required: true, message: "请输入权限项名称", trigger: "blur" },
- ],
- id: [{ required: true, message: "请输入标识符", trigger: "blur" }],
- },
- defaultProps: {
- children: "children",
- label: "AuthName",
- },
- AppId: null, //参数类型
- UpAuthId: null,
- data: [],
- openRole: null,
- OpenGroup: null,
- roleList: [],
- title: "角色",
- editRoles: [],
- checkBoxList: [],
- authTo: {},
- rulesObj: {},
- msgDatas: [],
- roleType: '',
- orgType: '',
- checkedKeys: []
- };
- },
- computed: {
- ...mapGetters(["systemSet"]),
- },
- watch: {
- dataList: {
- handler (val) {
- const arr = [val];
- this.decompose(arr, this.AppId);
- this.data = [this.dataObj];
- this.checkedKeys = [this.AppId];
- },
- deep: true,
- },
- },
- created () {
- const { AuthId, Status, UpAuthId } = this.$route.query;
- const { OpenRole, OpenGroup } =
- typeof this.systemSet === "string"
- ? JSON.parse(this.systemSet)
- : this.systemSet; //1是请求角色 0是请求用户
- this.radio = Status;
- this.AppId = AuthId;
- this.UpAuthId = UpAuthId;
- this.openRole = OpenRole;
- this.OpenGroup = OpenGroup;
- this.getAuthTree();
- },
- mounted () {
- if (this.openRole) {
- this.roleType = 'onlyRole';
- } else if (this.OpenGroup) {
- this.roleType = 'account';
- }
- this.orgType = 'auth';
- },
- methods: {
- //获取指定数据
- decompose (data, id) {
- for (let i = 0; i < data.length; i++) {
- if (data[i].AuthId == id) {
- this.dataObj = data[i];
- delete this.dataObj.children;
- } else if (data[i].children && data[i].children.length > 0) {
- this.decompose(data[i].children, id);
- }
- }
- },
- //保存
- saveBtn (formName) {
- this.$refs[formName].validate((valid) => {
- if (valid) {
- this.editAuth();
- } else {
- console.log("error submit!!");
- return false;
- }
- });
- },
- //获取权限树回调
- getTreeData (arr) {
- const { AuthId, UpAuthId } = arr[0];
- this.AppId = AuthId;
- this.UpAuthId = UpAuthId;
- },
- //获取权限规则
- getData (obj) {
- this.rulesObj = obj;
- },
- //获取应用详情
- async getAuthDetails (id) {
- try {
- const res = await GetAuthDetails({
- AuthId: id,
- });
- if (res.code === 0) {
- const {
- AuthDesc,
- AuthName,
- AuthIdent,
- RoleInfo,
- AuthTo,
- UserInfo,
- AuthStatus,
- } = res.returnData;
- this.form.name = AuthName;
- this.form.id = AuthIdent;
- this.form.app = AuthDesc;
- this.radio = AuthStatus;
- if (AuthTo) {
- this.authTo = AuthTo;
- this.$store.dispatch("auth/changeAuthId", AuthTo.AuthId);
- this.$store.dispatch("auth/changeAuthArrs", [AuthTo]);
- }
- if (this.openRole) {
- if (RoleInfo && RoleInfo.length) {
- RoleInfo.forEach((item) => {
- if (item.IsSelected) {
- this.msgDatas.push(item);
- }
- });
- this.checkBoxList = this.msgDatas;
- } else {
- this.msgDatas = [];
- }
- } else if (this.OpenGroup) {
- if (UserInfo && UserInfo.length) {
- UserInfo.forEach((item) => {
- if (item.IsSelected) {
- this.msgDatas.push(item);
- }
- });
- this.checkBoxList = this.msgDatas;
- } else {
- this.msgDatas = [];
- }
- }
- } else {
- this.$message.error(res.message);
- }
- } catch (error) {
- console.log("出错了", error);
- }
- },
- //角色列表
- async queryRole () {
- try {
- const res = await QueryRole({
- QueryName: "",
- });
- if (res.code === 0) {
- const arr = res.returnData;
- arr.forEach((item) => {
- item.name = item.RoleName;
- });
- this.roleList = arr;
- } else {
- this.$message.error(res.message);
- }
- } catch (error) {
- console.log("出错了", error);
- }
- },
- //账号列表
- async getUserList () {
- try {
- const res = await GetUserList({
- QueryName: "",
- });
- if (res.code === 0) {
- const arr = res.returnData;
- arr.forEach((item) => {
- item.name = item.UserName;
- });
- this.roleList = arr;
- } else {
- this.$message.error(res.message);
- }
- } catch (error) {
- console.log("出错了", error);
- }
- },
- //角色选取
- checkChange (arr) {
- this.msgDatas = arr;
- },
- //权限新增保存
- async editAuth () {
- try {
- const datas = this.msgDatas;
- if (datas && datas.length) {
- datas.forEach((item) => {
- item.IsSelected = 1;
- });
- }
- const res = await SaveAuth({
- AuthName: this.form.name,
- AuthIdent: this.form.id,
- AuthDesc: this.form.app,
- UpAuthId: this.AppId,
- RoleInfo: this.openRole ? datas : [],
- UserInfo: this.openRole ? [] : datas,
- AuthTo: this.rulesObj,
- AuthStatus: this.radio,
- });
- if (res.code === 0) {
- this.$message.success(res.message);
- this.$store.dispatch("tagsView/delView", this.$route);
- this.$router.push("/authority");
- } else {
- this.$message.error(res.message);
- }
- } catch (error) {
- console.log("出错了", error);
- }
- },
- //删除权限
- async deleteAuth () {
- try {
- const res = await DeleteAuth({
- AuthId: this.AppId,
- });
- if (res.code === 0) {
- this.$message.success(res.message);
- setTimeout(() => {
- this.$router.push("/authority");
- }, 2000);
- } else {
- this.$message.error(res.message);
- }
- } catch (error) {
- console.log("出错了", error);
- }
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .authorityPower {
- padding: 0 64px;
- padding-top: 32px;
- }
- .addApp-form {
- background: #ffffff;
- box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.06);
- border-radius: 16px;
- padding: 32px 32px 40px 32px;
- .title {
- font-size: 24px;
- font-family: Microsoft YaHei;
- font-weight: bold;
- color: #303133;
- .isqy {
- span {
- font-weight: 400;
- font-size: 14px;
- margin: 0 28px 0 42px;
- }
- }
- }
- .addApp-form-content {
- margin-top: 40px;
- ::v-deep .form {
- .el-form-item {
- margin-bottom: 0;
- margin-right: 40px;
- }
- .el-input__inner {
- height: 32px;
- line-height: 32px;
- min-width: 184px;
- }
- .content {
- .el-form-item__content {
- flex: 1;
- }
- .el-form-item__label {
- margin-left: 27px;
- }
- }
- }
- }
- }
- .power-content {
- margin-top: 24px;
- .part {
- height: 704px;
- }
- }
- </style>
|