Browse Source

通过环境变量控制职务显示和用户组/岗位命名

zhongxiaoyu 3 years ago
parent
commit
493e915d0a

+ 6 - 0
.env.development

@@ -3,3 +3,9 @@ ENV = 'development'
 
 # base api
 VUE_APP_BASE_API = '/dev-api'
+
+# does job show yes/no 显示/不显示职务
+VUE_APP_SHOW_JOB = 'no'
+
+# account group accountGroup命名
+VUE_APP_ACCOUNT_GROUP_TYPE = '用户组'

+ 5 - 0
.env.production

@@ -4,3 +4,8 @@ ENV = 'production'
 # base api
 VUE_APP_BASE_API = '/prod-api'
 
+# does job show yes/no 显示/不显示职务
+VUE_APP_SHOW_JOB = 'no'
+
+# account group accountGroup命名
+VUE_APP_ACCOUNT_GROUP_TYPE = '用户组'

+ 5 - 0
.env.staging

@@ -6,3 +6,8 @@ ENV = 'staging'
 # base api
 VUE_APP_BASE_API = '/stage-api'
 
+# does job show yes/no 显示/不显示职务
+VUE_APP_SHOW_JOB = 'no'
+
+# account group accountGroup命名
+VUE_APP_ACCOUNT_GROUP_TYPE = '用户组'

+ 2 - 2
src/components/msgTree/index.vue

@@ -1,7 +1,7 @@
 <!--
  * @Author: zk
  * @Date: 2022-02-09 15:47:09
- * @LastEditTime: 2022-03-10 17:25:18
+ * @LastEditTime: 2022-03-14 10:48:53
  * @LastEditors: your name
  * @Description: 用户组树
  * @FilePath: \Foshan4A4.0\src\components\usergrouptree\index.vue
@@ -120,7 +120,7 @@ export default {
       const obj = {
         AuthCount: 0,
         GroupId: -1,
-        GroupName: '岗位',
+        GroupName: this.accountGroupType,
         GroupUpid: 0,
         QueryTarget: 0,
         Status: 0,

+ 8 - 6
src/components/organization/index.vue

@@ -4,11 +4,13 @@
     <div class="left">
       <div class="paren_header">
         <p>{{ title }}</p>
-        <div class="column" v-show="vice">
-          <div :class="active == index ? 'column_childs' : 'column_child'" v-for="(item, index) in colType" :key="index" @click="upStart(index)">
-            {{ item.name }}
+        <template v-if="doesJobShow">
+          <div class="column" v-show="vice">
+            <div :class="active == index ? 'column_childs' : 'column_child'" v-for="(item, index) in colType" :key="index" @click="upStart(index)">
+              {{ item.name }}
+            </div>
           </div>
-        </div>
+        </template>
       </div>
       <div class="paren_content">
         <div class="dptBox" v-show="active == 0">
@@ -23,7 +25,7 @@
             </el-tree>
           </el-scrollbar>
         </div>
-        <div class="dptBox" v-show="active == 1">
+        <div class="dptBox" v-if="doesJobShow" v-show="active == 1">
           <Rolelist :type="true" @radioChange="radioChange" :radioCheck="radioCheck" :number="8" :active="true" class="lessData" :mainData="mainData" />
         </div>
       </div>
@@ -97,7 +99,7 @@ export default {
       checkedDatas: [],
       checkedId: null,
       checkedList: [], //选中的列表,
-      nodekeys: "nodekey",
+      nodekeys: "nodekey"
     };
   },
   watch: {

+ 3 - 3
src/components/usergrouptree/index.vue

@@ -1,7 +1,7 @@
 <!--
  * @Author: zk
  * @Date: 2022-02-09 15:47:09
- * @LastEditTime: 2022-03-11 16:42:20
+ * @LastEditTime: 2022-03-14 10:48:50
  * @LastEditors: your name
  * @Description: 用户组树
  * @FilePath: \Foshan4A4.0\src\components\usergrouptree\index.vue
@@ -106,7 +106,7 @@ export default {
           const obj = {
           AuthCount: 0,
           GroupId: -1,
-          GroupName: '岗位',
+          GroupName: this.accountGroupType,
           GroupUpid: 0,
           QueryTarget: 0,
           Status: 0,
@@ -146,7 +146,7 @@ export default {
         const obj = {
           AuthCount: 0,
           GroupId: -1,
-          GroupName: '岗位',
+          GroupName: this.accountGroupType,
           GroupUpid: 0,
           QueryTarget: 0,
           Status: 0,

+ 2 - 0
src/main.js

@@ -16,6 +16,8 @@ import '@/checkPermission' //按钮权限 全局自定义指令v-is
 // import lodash
 import _ from 'lodash'
 Vue.prototype._ = _
+Vue.prototype.doesJobShow = process.env.VUE_APP_SHOW_JOB === 'yes'
+Vue.prototype.accountGroupType = process.env.VUE_APP_ACCOUNT_GROUP_TYPE
 
 // import echarts
 import * as echarts from 'echarts'

+ 7 - 3
src/router/index.js

@@ -1,8 +1,8 @@
 /*
  * @Author: your name
  * @Date: 2021-10-14 17:17:53
- * @LastEditTime: 2022-02-28 17:54:47
- * @LastEditors: Please set LastEditors
+ * @LastEditTime: 2022-03-14 09:33:38
+ * @LastEditors: your name
  * @Description: In User Settings Edit
  * @FilePath: \Foshan4A\src\router\index.js
  */
@@ -64,7 +64,11 @@ export const constantRoutes = [
 ]
 // 插入路由
 export const asyncRoutes = []
-routesPush([...routesOne, ...routesTwo, ...routesThree, ...routesFour, ...routesFive], asyncRoutes)
+if (process.env.VUE_APP_SHOW_JOB === 'yes') {
+  routesPush([...routesOne, ...routesTwo, ...routesThree, ...routesFour, ...routesFive], asyncRoutes)
+} else {
+  routesPush([...routesOne, ...routesTwo, ...routesFour, ...routesFive], asyncRoutes)
+}
 asyncRoutes.push({ path: '/', component: () => import('@/views/noPower'), hidden: true })
 asyncRoutes.push({ path: '*', component: () => import('@/views/404'), hidden: true })
 

+ 9 - 7
src/router/routes/routes-file-five.js

@@ -1,23 +1,25 @@
 /*
  * @Author: your name
  * @Date: 2022-01-06 10:05:44
- * @LastEditTime: 2022-02-28 21:31:43
- * @LastEditors: Please set LastEditors
+ * @LastEditTime: 2022-03-14 11:21:28
+ * @LastEditors: your name
  * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
  * @FilePath: \src\router\routes\routes-file-five.js
  */
 import Layout from '@/layout'
 
+const accountGroupType = process.env.VUE_APP_ACCOUNT_GROUP_TYPE
+
 const accountGroupRoutes = {
   path: '/accountGroup',
   component: Layout,
-  meta: { roles: ['group_menu'], title: '岗位管理' },
+  meta: { roles: ['group_menu'], title: `${accountGroupType}管理` },
   children: [
     {
       path: '/accountGroup',
       component: () => import('@/views/accountGroupManagement/index'),
       meta: {
-        title: '岗位管理'
+        title: `${accountGroupType}管理`
       },
       children: [
         {
@@ -25,7 +27,7 @@ const accountGroupRoutes = {
           name: 'accountGroupHome',
           component: () => import('@/views/accountGroupManagement/components/accountGroupHome'),
           meta: {
-            title: '岗位管理',
+            title: `${accountGroupType}管理`,
             roles: ['group_page']
           }
         },
@@ -34,7 +36,7 @@ const accountGroupRoutes = {
           name: 'accountGroupAdd',
           component: () => import('@/views/accountGroupManagement/components/accountGroupEdit'),
           meta: {
-            title: '新增岗位'
+            title: `新增${accountGroupType}`
           }
         },
         {
@@ -42,7 +44,7 @@ const accountGroupRoutes = {
           name: 'accountGroupEdit',
           component: () => import('@/views/accountGroupManagement/components/accountGroupEdit'),
           meta: {
-            title: '编辑岗位',
+            title: `编辑${accountGroupType}`,
             doesGroupExist: true
           }
         }

+ 0 - 450
src/views/accountGroupManagement/components/accountGroupAdd copy.vue

@@ -1,450 +0,0 @@
-<template>
-  <div class="bf-postmanagementadd">
-    <div class="postmanagementadd_header">
-      <div class="postmanagementadd_top">
-        <p>新增岗位</p>
-        <div class="btn">
-          <el-button @click="saveAuth" type="primary">保存</el-button>
-        </div>
-      </div>
-      <div class="addApp-form-content dialog-public-background">
-        <el-form :inline="true" ref="addFrom" :rules="rules" class="form" :model="addFrom">
-          <el-form-item prop="name" label="岗位名称">
-            <el-input maxlength="16" placeholder="岗位名称" v-model="addFrom.name"></el-input>
-          </el-form-item>
-          <el-form-item label="描述" style="margin-left: 40px">
-            <el-input maxlength="200" style="width: 640px" placeholder="请输入描述" v-model="addFrom.textarea2"></el-input>
-          </el-form-item>
-        </el-form>
-      </div>
-    </div>
-    <div class="content">
-      <!-- 开启角色 -->
-      <el-row :gutter="24" v-if="this.openRole != 0">
-        <el-col :span="8">
-          <div class="part">
-            <Organization title="上级岗位" :data="dataObj" :checkedKeys="[GroupId]" :defaultProps="defaultProps" nodekey="GroupId" @getTreeData="getTreeData" />
-          </div>
-        </el-col>
-        <el-col :span="8">
-          <div class="part">
-            <rolelist title="角色列表" @checkChange="checkChange" @radioChanges="radioChanges" :dataList="roleList" :roleType="roleType" :GroupIds="GroupIds" :number="8" />
-          </div>
-        </el-col>
-        <el-col :span="8">
-          <div class="part">
-            <permissionlist title="权限列表" :RoleList="powerList" :check="true" class="hucPower" @Competen="Competen" />
-          </div>
-        </el-col>
-      </el-row>
-      <!-- 无角色 -->
-      <el-row :gutter="24" v-else>
-        <el-col :span="8">
-          <div class="part">
-            <Organization title="上级岗位" :data="dataObj" :defaultProps="defaultProps" :nodekey="'GroupId'" @getTreeData="getTreeData" />
-          </div>
-        </el-col>
-        <el-col :span="8">
-          <div class="part">
-            <Permissiontree @nodeClick="nodeClick" @getTreeData="getTreeDatas" :queryType="queryType" :queryId="queryId" title="权限树" />
-          </div>
-        </el-col>
-        <el-col :span="8">
-          <div class="part">
-            <Rulesofcompetency title="权限规则" />
-          </div>
-        </el-col>
-      </el-row>
-    </div>
-  </div>
-</template>
-<script>
-import Organization from "@/components/organization/index.vue";
-import Permissiontree from "@/components/permissiontree/index.vue";
-import Rulesofcompetency from "@/components/rulesofcompetency/index.vue";
-import loginpolicy from "@/components/loginpolicy/index.vue";
-import rolelist from "@/components/rolelist/index.vue";
-import permissionlist from "@/components/permissionlist/index.vue";
-import { QueryRole, RoleAuths } from "@/api/apiAuthority";
-import { SaveGroup, getUserOne } from "@/api/AccountGroup.js";
-import { mapGetters } from "vuex";
-import treeData from "../minixs/treeData";
-export default {
-  mixins: [treeData],
-  props: {
-    postList: {
-      type: String,
-    },
-    arrs: {
-      type: Array,
-      default: () => [],
-    },
-  },
-  components: {
-    Organization,
-    Permissiontree,
-    Rulesofcompetency,
-    loginpolicy,
-    rolelist,
-    permissionlist,
-  },
-  data () {
-    return {
-      roleType: "",
-      checkedAuthList: [],
-      GroupId: this.$route.query.GroupId,
-      butPreser: "保存",
-      openRole: 0,
-      OpenGroup: 0,
-      data: [], //岗位
-      TacList: [], //登录策略
-      AuthList: [], //授权信息
-      roleList: [], //角色
-      checkRoles: [], //选中的角色
-      treeData1: [], //权限树数据
-      powerList: [], //权限列表
-      addFrom: {
-        name: "",
-        textarea2: "",
-      },
-      rules: {
-        //表单验证
-        name: [
-          { required: true, message: "请输入岗位名称", trigger: "blur" },
-        ],
-      },
-      defaultProps: {
-        children: "children",
-        label: "GroupName",
-      },
-      AppId: 0,
-      UpId: 0,
-      dataObj: null,
-      queryId: "",
-      queryType: "group",
-      objID: "",
-      GroupIds: [],
-    };
-  },
-  computed: {
-    ...mapGetters(["systemSet"]),
-  },
-  created () {
-    const { GroupId } = this.$route.query;
-    this.AppId = GroupId;
-    this.UpId = GroupId;
-    this.queryId = GroupId;
-    let obj;
-    this.getGroupTree();
-    if (typeof this.$store.state.app.systemSet == "string") {
-      obj = JSON.parse(this.$store.state.app.systemSet);
-    } else {
-      obj = this.$store.state.app.systemSet;
-    }
-    const { OpenRole, OpenGroup } = obj;
-    this.openRole = OpenRole;
-    this.OpenGroup = OpenGroup;
-    if (OpenRole) {
-      this.title = "角色";
-      this.GroupIds = [GroupId];
-
-    }
-    if (this.UpId == -1) {
-      this.queryId = "";
-      this.queryType = "all";
-    }
-  },
-  watch: {
-    dataList: {
-      handler (val) {
-        const arr = [val];
-        if (arr.length) {
-          this.decompose(arr, this.UpId);
-        }
-        if (Array.isArray(val)) {
-          this.data = val;
-        } else {
-          this.data = [val];
-        }
-      },
-      deep: true,
-    },
-  },
-  methods: {
-    //获取选中的树数据
-    getTreeData (arr) {
-      this.checkTrees = arr;
-      this.checkTrees.forEach((item) => {
-        if (item[0]) {
-          item.disabled = true;
-        }
-      });
-      let objArr = arr[arr.length - 1];
-      this.roleList = [];
-      if (objArr.GroupId != -1) {
-        this.objID = objArr.GroupId + "";
-        this.queryRole();
-      } else {
-        this.RoleBox();
-      }
-    },
-    //获取权限规则
-    getData (obj) {
-      this.rulesObj = obj;
-    },
-    async radioChanges (data) {
-      try {
-        let params = {
-          RoleId: data,
-        };
-        const res = await RoleAuths(params);
-        if (res.code === 0) {
-          this.powerList = res.returnData;
-        } else {
-          this.$message.error(res.message);
-        }
-      } catch (error) {
-        console.log("出错了", error);
-      }
-    },
-    //权限树点击
-    nodeClick (obj) {
-      const arr = this.$store.getters.authArrs;
-      arr.push(obj);
-      this.$store.dispatch("auth/changeAuthArrs", arr);
-    },
-    //获取权限树回调
-    getTreeDatas (arr) {
-      this.checkedAuthList = arr;
-    },
-    //获取指定数据
-    decompose (data, id) {
-      for (let i = 0; i < data.length; i++) {
-        if (data[i].GroupId == id) {
-          this.dataObj = data[i];
-          delete this.dataObj.children;
-          this.dataObj = [this.dataObj];
-        } else if (data[i].children && data[i].children.length > 0) {
-          this.decompose(data[i].children, id);
-        }
-      }
-    },
-    //角色列表
-    async queryRole () {
-      try {
-        const res = await getUserOne({
-          GroupId: this.objID,
-        });
-        if (res.code === 0) {
-          const arr = res.returnData;
-          const userArr = [];
-          arr.forEach((item) => {
-            item.name = item.RoleName;
-            if (item.IsSelected == 1) {
-              userArr.push(item);
-            }
-          });
-
-          this.roleList = userArr; //这里 已经给角色列表赋值了
-        } else {
-          this.$message.error(res.message);
-        }
-      } catch (error) {
-        console.log("出错了", error);
-      }
-    },
-    //所有角色列表
-    async RoleBox () {
-      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);
-      }
-    },
-    Competen (data) {
-      this.$emit("Competen", data);
-    },
-    //角色选取
-    checkChange (arr) {
-      let datas = [];
-      const arrs = [];
-      datas = arr;
-      datas.forEach((item) => {
-        const RoleC = {
-          IsSelected: 1,
-          RoleId: item.RoleId,
-          RoleName: item.RoleName,
-        };
-        arrs.push(RoleC);
-      });
-      this.checkRoles = arrs;
-    },
-    async saveAuth () {
-      this.checkedAuthList.forEach((item) => {
-        this.treeData1.push(item.AuthList);
-      });
-      this.treeData1.forEach((item, index) => {
-        this.$store.getters.authArrs.forEach((item2) => {
-          if (item.AuthId == item2.AuthId) {
-            this.treeData1[index] = item2.AuthList;
-          }
-        });
-      });
-      try {
-        const res = await SaveGroup({
-          GroupName: this.addFrom.name,
-          GroupDesc: this.addFrom.textarea2,
-          GroupUpid: this.UpId,
-          AuthList: this.treeData1,
-          RoleList: this.checkRoles,
-        });
-        if (res.code === 0) {
-          this.$message.success(res.message);
-          setTimeout(() => {
-            this.$router.push("/AccountGroup");
-          }, 2000);
-        } else {
-          this.$message.error(res.message);
-        }
-      } catch (error) {
-        console.log("出错了", error);
-      }
-    },
-  },
-  mounted () {
-    this.roleType = "roleByUpId"
-  }
-};
-</script>
-<style lang="scss">
-.bf-postmanagementadd {
-  width: 100%;
-  padding: 30px 64px;
-  > .postmanagementadd_header {
-    width: 100%;
-    height: 184px;
-    background: #ffffff;
-    box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.06);
-    border-radius: 16px;
-    padding: 0 32px 0 32px;
-    margin-bottom: 24px;
-    > .postmanagementadd_top {
-      width: 100%;
-      height: 88px;
-      display: flex;
-      align-items: center;
-      justify-content: space-between;
-      margin-bottom: 16px;
-      > p {
-        font-size: 24px;
-        font-family: Microsoft YaHei;
-        font-weight: bold;
-        color: #303133;
-        margin-top: 0;
-        margin-bottom: 0;
-      }
-      > .but {
-        height: 40px;
-      }
-    }
-    > .postmanagementadd_list {
-      width: 60%;
-      display: flex;
-
-      > .list_up {
-        display: flex;
-        margin-right: 40px;
-        > p {
-          white-space: nowrap;
-          text-overflow: ellipsis;
-          font-size: 14px;
-          font-family: Microsoft YaHei;
-          font-weight: 400;
-          color: #303133;
-          margin-top: 0;
-          margin-bottom: 0;
-          display: flex;
-          align-items: center;
-          margin-right: 16px;
-        }
-        > .el-input {
-          width: 184px;
-          height: 32px;
-          background: #f9fbff;
-          border-radius: 6px;
-          > .el-input__inner {
-            width: 100%;
-            height: 100%;
-            background: #f9fbff;
-            border-radius: 6px;
-          }
-        }
-        > .el-textarea {
-          width: 640px;
-          height: 33px;
-          border-radius: 4px;
-          .el-textarea__inner {
-            width: 100%;
-            height: 100%;
-            background: #f9fbff;
-            border: 1px solid #d7dae3;
-            border-radius: 4px;
-            resize: none;
-          }
-        }
-      }
-    }
-  }
-  .content {
-    width: 100%;
-    height: calc(100% - 184px);
-    padding-top: 24px;
-    box-sizing: border-box;
-    // .el-row {
-    //   height: 100%;
-    //   .el-col {
-    //     height: 100%;
-    //   }
-    // }
-    .part {
-      width: 100%;
-      height: 856px;
-      background: #ffffff;
-      box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.06);
-      border-radius: 16px;
-    }
-    .last {
-      display: flex;
-      flex-direction: column;
-      justify-content: space-between;
-    }
-    .part2 {
-      width: 100%;
-      height: 512px;
-      background: #ffffff;
-      box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.06);
-      border-radius: 16px;
-    }
-    .part3 {
-      width: 100%;
-      height: 320px;
-      background: #ffffff;
-      box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.06);
-      border-radius: 16px;
-      margin-top: 25px;
-      overflow: hidden;
-    }
-  }
-}
-</style>

+ 0 - 295
src/views/accountGroupManagement/components/accountGroupAdd.vue

@@ -1,295 +0,0 @@
-<!--
- * @Author: Badguy
- * @Date: 2022-02-21 04:13:18
- * @LastEditTime: 2022-02-28 17:04:19
- * @LastEditors: Please set LastEditors
- * @Description: 
- * have a nice day!
--->
-<template>
-  <div class="accountGroup">
-    <div class="addApp-form">
-      <div class="addApp-form-title flex">
-        <div class="title">新增岗位</div>
-        <div v-is="['group_btn_save']" class="btn">
-          <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 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="r24 flex1 part">
-        <Organization :defaultProps="defaultProps" :data="data" nodekey="GroupId" :checkedKeys="checkedKeys" title="上级岗位" />
-      </div>
-      <!--有角色-->
-      <template v-if="OpenRole">
-        <div class="r24 flex1 part">
-          <Rolelist title="角色" @checkClick="checkClick" @checkChange="checkChange" :GroupIds="GroupIds" />
-        </div>
-        <div class="flex1 part">
-          <Permissionlist :RoleList="RoleList" :check="true" title="权限列表" />
-        </div>
-      </template>
-      <!--无角色-->
-      <template v-else>
-        <div class="r24 flex1 part">
-          <Permissiontree :queryType="queryType" :queryId="queryId" @nodeClick="nodeClick" @getTreeData="getTreeData" title="权限树" />
-        </div>
-        <div class="flex1 part">
-          <Rulesofcompetency class="hucPower" title="权限规则" />
-        </div>
-      </template>
-    </div>
-  </div>
-</template>
-
-<script>
-import { mapGetters } from 'vuex'
-import Organization from '@/components/organization'
-import Permissiontree from '@/components/permissiontree'
-import Rulesofcompetency from '@/components/rulesofcompetency'
-import Rolelist from '@/components/rolelist'
-import Permissionlist from '@/components/permissionlist'
-import treeData from '../minixs/treeData'
-import { RoleAuths } from '@/api/apiAuthority'
-import { SaveGroup } from '@/api/AccountGroup'
-export default {
-  name: 'AddAccountGroup',
-  components: {
-    Organization,
-    Permissiontree,
-    Rulesofcompetency,
-    Rolelist,
-    Permissionlist
-  },
-  mixins: [treeData],
-  data () {
-    return {
-      form: {
-        //岗位表单
-        name: '',
-        app: ''
-      },
-      rules: {
-        //表单验证
-        name: [{ required: true, message: '请输入岗位名称', trigger: 'blur' }]
-      },
-      OpenRole: null,
-      AppId: null,
-      data: [], //上级权限
-      defaultProps: {
-        children: 'children',
-        label: 'GroupName'
-      },
-      queryId: '',
-      queryType: '',
-      authList: [],
-      checkRoles: [], //角色选中
-      rulesObj: {}, //权限规则
-      checkTrees: [], //权限树选中
-      GroupIds: [], //角色列表
-      checkedKeys: [], //岗位选中
-      RoleList: [] //权限列表
-    }
-  },
-  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 { GroupId } = this.$route.query
-    const { OpenRole } = typeof this.systemSet === 'string' ? JSON.parse(this.systemSet) : this.systemSet //1是请求角色 0是请求用户
-    this.OpenRole = OpenRole
-    this.AppId = GroupId
-    if (!OpenRole && GroupId != -1) {
-      this.queryId = String(GroupId)
-      this.queryType = 'group'
-    }
-    if (!OpenRole && GroupId == -1) {
-      this.queryId = ''
-      this.queryType = 'all'
-    }
-  },
-  mounted () {
-    if (this.OpenRole) {
-      this.GroupIds = [this.AppId]
-    }
-  },
-  methods: {
-    //保存
-    saveBtn (formName) {
-      this.$refs[formName].validate(valid => {
-        if (valid) {
-          this.saveAuth()
-        } else {
-          console.log('error submit!!')
-          return false
-        }
-      })
-    },
-    //获取指定数据
-    decompose (data, id) {
-      for (let i = 0; i < data.length; i++) {
-        if (data[i].GroupId == id) {
-          if (data[i].children && data[i].children.length) {
-            delete data[i].children
-          }
-          this.dataObj = data[i]
-        } else if (data[i].children && data[i].children.length > 0) {
-          this.decompose(data[i].children, id)
-        }
-      }
-    },
-    //根据角色查看权限列表
-    async roleAuths (id) {
-      try {
-        let params = {
-          RoleId: id
-        }
-        const res = await RoleAuths(params)
-        if (res.code === 0) {
-          this.RoleList = res.returnData
-        } else {
-          this.$message.error(res.message)
-        }
-      } catch (error) {
-        console.log('出错了', error)
-      }
-    },
-    //角色点击回调
-    checkClick (item) {
-      this.roleAuths(item.RoleId)
-    },
-    //角色选取
-    checkChange (arr) {
-      const arrs = []
-      arr.forEach(item => {
-        const RoleC = {
-          IsSelected: 1,
-          RoleId: item.RoleId,
-          RoleName: item.RoleName
-        }
-        arrs.push(RoleC)
-      })
-      this.checkRoles = arrs
-    },
-    //权限树点击
-    nodeClick (obj) {
-      const arr = this.$store.getters.authArrs
-      arr.push(obj)
-      this.$store.dispatch('auth/changeAuthArrs', arr)
-    },
-    //获取选中的树数据
-    getTreeData (arr) {
-      this.checkTrees = arr
-    },
-    //获取权限规则
-    getData (obj) {
-      this.rulesObj = obj
-    },
-    //新增保存
-    async saveAuth () {
-      const datas = []
-      if (this.checkTrees.length) {
-        this.checkTrees.forEach(item => {
-          datas.push(item.AuthList)
-        })
-      }
-      try {
-        const res = await SaveGroup({
-          GroupName: this.form.name,
-          GroupDesc: this.form.app,
-          GroupUpid: this.AppId,
-          AuthList: datas,
-          RoleList: this.checkRoles
-        })
-        if (res.code === 0) {
-          this.$message.success(res.message)
-          setTimeout(() => {
-            this.$router.push('/AccountGroup')
-          }, 2000)
-        } else {
-          this.$message.error(res.message)
-        }
-      } catch (error) {
-        console.log('出错了', error)
-      }
-    }
-  }
-}
-</script>
-
-<style lang="scss" scoped>
-.accountGroup {
-  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;
-  // min-height: 58vh;
-  .part {
-    height: 704px;
-  }
-}
-</style>

+ 5 - 5
src/views/accountGroupManagement/components/accountGroupEdit.vue

@@ -24,12 +24,12 @@
         >
           <el-form-item
             prop="name"
-            label="岗位名称"
+            :label="`${accountGroupType}名称`"
           >
             <el-input
               v-model="editForm.name"
               maxlength="32"
-              placeholder="岗位名称"
+              :placeholder="`${accountGroupType}名称`"
             />
           </el-form-item>
           <el-form-item
@@ -51,7 +51,7 @@
         <el-col :span="8">
           <div class="part">
             <AccountGroupTree
-              title="上级岗位"
+              :title="`上级${accountGroupType}`"
               nodekey="GroupId"
               :single-node="doesGroupExist ? GroupUpId : 0"
               :type="true"
@@ -189,7 +189,7 @@ export default {
       rules: {
         // 表单验证
         name: [
-          { required: true, message: '请输入岗位名称', trigger: 'blur' },
+          { required: true, message: `请输入${this.accountGroupType}名称`, trigger: 'blur' },
           { min: 1, max: 32, message: '长度在 1到 32 个字符', trigger: 'blur' }
         ]
       },
@@ -202,7 +202,7 @@ export default {
   computed: {
     ...mapGetters(['systemSet']),
     pageTitle() {
-      return this.doesGroupExist ? '编辑岗位' : '新增岗位'
+      return this.doesGroupExist ? `编辑${this.accountGroupType}` : `新增${this.accountGroupType}`
     }
   },
   created() {

+ 13 - 13
src/views/accountGroupManagement/components/accountGroupHome.vue

@@ -1,7 +1,7 @@
 <!--
  * @Author: your name
  * @Date: 2022-01-08 09:27:43
- * @LastEditTime: 2022-03-11 14:54:37
+ * @LastEditTime: 2022-03-14 10:50:41
  * @LastEditors: your name
  * @Description: 用户组管理
  * @FilePath: \Foshan4A2.0\src\views\accountGroupManagement\components\home.vue
@@ -28,7 +28,7 @@
           class="bodyPart"
         >
           <div class="grid-content">
-            <div class="title">岗位树</div>
+            <div class="title">{{ accountGroupType }}树</div>
             <div class="contentTree">
               <el-tree
                 ref="tree"
@@ -53,7 +53,7 @@
             <div
               class="title"
               style="margin-bottom: 15px"
-            >当前岗位</div>
+            >当前{{ accountGroupType }}</div>
             <div class="content">
               <el-empty
                 :image-size="100"
@@ -77,11 +77,11 @@
                             <el-tooltip
                               v-is="['grouptree_btn_update_group']"
                               effect="dark"
-                              content="编辑岗位"
+                              :content="`编辑${accountGroupType}`"
                               placement="bottom"
                             >
                               <span
-                                title="编辑岗位"
+                                :title="`编辑${accountGroupType}`"
                                 class="cap cap-edit"
                                 @click="renderEdit(data)"
                                 v-if="data.GroupId != -1"
@@ -91,11 +91,11 @@
                             <el-tooltip
                               v-is="['grouptree_btn_add_group']"
                               effect="dark"
-                              content="新增岗位"
+                              :content="`新增${accountGroupType}`"
                               placement="bottom"
                             >
                               <span
-                                title="新增岗位"
+                                :title="`新增${accountGroupType}`"
                                 class="cap cap-sub"
                                 @click="renderAdd(data)"
                               ></span>
@@ -158,7 +158,7 @@
             </div>
           </div>
           <div class="grid-contentBottom">
-            <div class="title">下级岗位</div>
+            <div class="title">下级{{ accountGroupType }}</div>
             <div class="content">
               <el-empty
                 :image-size="150"
@@ -219,11 +219,11 @@
                             <el-tooltip
                               v-is="['grouptree_btn_update_group']"
                               effect="dark"
-                              content="编辑岗位"
+                              :content="`编辑${accountGroupType}`"
                               placement="bottom"
                             >
                               <span
-                                title="编辑岗位"
+                                :title="`编辑${accountGroupType}`"
                                 class="cap cap-edit"
                                 @click.stop="renderEdit(data)"
                                 v-if="data.GroupId != -1"
@@ -233,11 +233,11 @@
                             <el-tooltip
                               v-is="['grouptree_btn_add_group']"
                               effect="dark"
-                              content="新增岗位"
+                              :content="`新增${accountGroupType}`"
                               placement="bottom"
                             >
                               <span
-                                title="新增岗位"
+                                :title="`新增${accountGroupType}`"
                                 class="cap cap-sub"
                                 @click.stop="renderAdd(data)"
                               ></span>
@@ -322,7 +322,7 @@
 import Search from '@/layout/components/Search'
 import Dialog from '@/layout/components/Dialog'
 import { DeleteGroup, ChangeGroupStatus } from '@/api/AccountGroup'
-import treeData from '../minixs/treeData'
+import treeData from '../mixins/treeData'
 export default {
   name: 'accountGroup',
   components: { Search, Dialog },

+ 0 - 0
src/views/accountGroupManagement/minixs/roleData.js → src/views/accountGroupManagement/mixins/roleData.js


+ 4 - 4
src/views/accountGroupManagement/minixs/treeData.js → src/views/accountGroupManagement/mixins/treeData.js

@@ -1,7 +1,7 @@
 /*
  * @Author: your name
  * @Date: 2021-12-22 17:00:22
- * @LastEditTime: 2022-03-10 19:03:10
+ * @LastEditTime: 2022-03-14 10:50:13
  * @LastEditors: your name
  * @Description: 获取权限树
  * @FilePath: \Foshan4A2.0\src\views\authorityManagement\minixs\treeData.js
@@ -14,7 +14,7 @@ export default {
     return {
       dataList: {
         GroupId: -1,
-        GroupName: "岗位",
+        GroupName: this.accountGroupType,
         GroupUpid: -2,
         UserCount: 0,
         AuthCount: 0,
@@ -40,7 +40,7 @@ export default {
           })
           const obj = {
             GroupId: -1,
-            GroupName: "岗位",
+            GroupName: this.accountGroupType,
             GroupUpid: -2,
             UserCount: 0,
             AuthCount: 0,
@@ -52,7 +52,7 @@ export default {
           this.dataArr = result.returnData;
           this.dataArr.push({
             GroupId: -1,
-            GroupName: "岗位",
+            GroupName: this.accountGroupType,
             GroupUpid: -2,
             UserCount: 0,
             AuthCount: 0,

+ 3 - 3
src/views/accountManagement/components/accountEdit.vue

@@ -1,7 +1,7 @@
 <!--
  * @Author: Badguy
  * @Date: 2022-02-15 11:37:42
- * @LastEditTime: 2022-03-10 18:34:30
+ * @LastEditTime: 2022-03-14 10:51:10
  * @LastEditors: your name
  * @Description: 编辑账号
  * have a nice day!
@@ -79,7 +79,7 @@
       <el-row v-if="openGroup && openRole" :gutter="24">
         <el-col :span="8">
           <div class="content-card content-card-xl">
-            <AccountGroupTree title="所属岗位" nodekey="GroupId" :default-props="accountGroupTreeProps" :checked-keys="accountGroupTreeCheckedList" @getTreeData="getAccountGroupChecked" />
+            <AccountGroupTree :title="`所属${accountGroupType}`" nodekey="GroupId" :default-props="accountGroupTreeProps" :checked-keys="accountGroupTreeCheckedList" @getTreeData="getAccountGroupChecked" />
           </div>
         </el-col>
         <el-col v-is="['account_edit_role_list']" :span="8">
@@ -100,7 +100,7 @@
       <el-row v-if="openGroup && !openRole" :gutter="24">
         <el-col :span="8">
           <div class="content-card content-card-xxl">
-            <AccountGroupTree title="所属岗位" nodekey="GroupId" :default-props="accountGroupTreeProps" :checked-keys="accountGroupTreeCheckedList" @getTreeData="getAccountGroupChecked" />
+            <AccountGroupTree :title="`所属${accountGroupType}`" nodekey="GroupId" :default-props="accountGroupTreeProps" :checked-keys="accountGroupTreeCheckedList" @getTreeData="getAccountGroupChecked" />
           </div>
         </el-col>
         <el-col :span="8">

+ 4 - 4
src/views/dashboard/components/analysis.vue

@@ -1,8 +1,8 @@
 <!--
  * @Author: your name
  * @Date: 2021-11-25 10:40:42
- * @LastEditTime: 2022-03-02 10:37:43
- * @LastEditors: Please set LastEditors
+ * @LastEditTime: 2022-03-14 11:07:59
+ * @LastEditors: your name
  * @Description: 数据分析
  * @FilePath: \Foshan4A2.0\src\views\dashboard\components\analysis.vue
 -->
@@ -160,7 +160,7 @@ export default {
             hoverAnimation: false,
             data: [
               { value: 0, name: '账号数' },
-              { value: 0, name: '岗位数' },
+              { value: 0, name: `${this.accountGroupType}数` },
             ]
           },
           {
@@ -706,7 +706,7 @@ export default {
       } else {
         this.accountOption.title.text = '职员信息分析'
         this.accountTeamsOne[0].txt = '职员数'
-        this.accountTeamsOne[1].txt = '组织及岗位数'
+        this.accountTeamsOne[1].txt = `组织及${this.accountGroupType}数`
         this.getOfficerAna()
       }
     },

+ 3 - 3
src/views/dashboard/index.vue

@@ -1,8 +1,8 @@
 <!--
  * @Author: your name
  * @Date: 2021-10-14 17:17:53
- * @LastEditTime: 2022-03-02 14:35:53
- * @LastEditors: Please set LastEditors
+ * @LastEditTime: 2022-03-14 11:02:48
+ * @LastEditors: your name
  * @Description: In User Settings Edit
  * @FilePath: \Foshan4A\src\views\dashboard\index.vue
 -->
@@ -75,7 +75,7 @@ export default {
         },
         {
           id: 2,
-          name: "岗位管理",
+          name: "账号组管理",
           value: 2,
         },
         {

+ 2 - 2
src/views/jobsManagement/add.vue

@@ -28,7 +28,7 @@
           <el-row :gutter="40">
             <el-col :span="5">
               <el-form-item label="职务名称" prop="JobName">
-                <el-input v-model="FormData.JobName" maxlength="32" placeholder="请输入岗位名称" size="small"></el-input>
+                <el-input v-model="FormData.JobName" maxlength="32" :placeholder="`请输入${accountGroupType}名称`" size="small"></el-input>
               </el-form-item>
             </el-col>
             <el-col :span="10">
@@ -66,7 +66,7 @@ export default {
       },
       rules: {
         JobName: [
-          { required: true, message: "请输入岗位名称", trigger: "blur" },
+          { required: true, message: `请输入${this.accountGroupType}名称`, trigger: "blur" },
           {
             min: 1,
             max: 16,

+ 2 - 2
src/views/jobsManagement/edit.vue

@@ -28,7 +28,7 @@
           <el-row :gutter="40">
             <el-col :span="5">
               <el-form-item label="职务名称" prop="JobName">
-                <el-input v-model="FormData.JobName" maxlength="32" placeholder="请输入岗位名称" size="small"></el-input>
+                <el-input v-model="FormData.JobName" maxlength="32" :placeholder="`请输入${accountGroupType}名称`" size="small"></el-input>
               </el-form-item>
             </el-col>
             <el-col :span="10">
@@ -66,7 +66,7 @@ export default {
       },
       rules: {
         JobName: [
-          { required: true, message: "请输入岗位名称", trigger: "blur" },
+          { required: true, message: `请输入${this.accountGroupType}名称`, trigger: "blur" },
           {
             min: 1,
             max: 16,

+ 2 - 2
src/views/jobsManagement/list.vue

@@ -61,8 +61,8 @@
     </template>
     <Dialog :flag="dialogVisible">
       <div class="closeDialog">
-        <div class="title">删除岗位</div>
-        <div class="content">是否确定要删除该岗位?</div>
+        <div class="title">删除{{ accountGroupType }}</div>
+        <div class="content">是否确定要删除该{{ accountGroupType }}?</div>
         <div class="foot right t30">
           <el-button size="medium" type="danger" class="r24" @click="del()">删除</el-button>
 

+ 46 - 26
src/views/organizationManagement/components/organizationHome.vue

@@ -1,8 +1,8 @@
 <!--
  * @Author: your name
  * @Date: 2021-11-29 09:27:43
- * @LastEditTime: 2022-03-01 11:12:24
- * @LastEditors: Please set LastEditors
+ * @LastEditTime: 2022-03-14 11:04:03
+ * @LastEditors: your name
  * @Description: 权限管理
  * @FilePath: \Foshan4A2.0\src\views\authorityManagement\components\home.vue
 -->
@@ -64,18 +64,28 @@
                           </div>
                         </div>
                       </el-col>
-                      <el-col :span="8" v-if="data.OrganId != -1">
-                        <span @click="toJob(data)" class="cursor">
-                          <span class="msg">职务:</span>
-                          <span>{{ data.JobCount }}</span>
-                        </span>
-                      </el-col>
-                      <el-col :span="8" v-if="data.OrganId != -1">
-                        <span @click="toOfficer(data)" class="cursor">
-                          <span class="msg">职员:</span>
-                          <span>{{ data.OfficerCount }}</span>
-                        </span>
-                      </el-col>
+                      <template v-if="doesJobShow">
+                        <el-col :span="8" v-if="data.OrganId != -1">
+                          <span @click="toJob(data)" class="cursor">
+                            <span class="msg">职务:</span>
+                            <span>{{ data.JobCount }}</span>
+                          </span>
+                        </el-col>
+                        <el-col :span="8" v-if="data.OrganId != -1">
+                          <span @click="toOfficer(data)" class="cursor">
+                            <span class="msg">职员:</span>
+                            <span>{{ data.OfficerCount }}</span>
+                          </span>
+                        </el-col>
+                      </template>
+                      <template v-else>
+                        <el-col :span="24" v-if="data.OrganId != -1">
+                          <span @click="toOfficer(data)" class="cursor">
+                            <span class="msg">职员:</span>
+                            <span>{{ data.OfficerCount }}</span>
+                          </span>
+                        </el-col>
+                      </template>
                       <!-- <el-col :span="8" v-if="data.OrganId != -1">
                         <span class="msg">权限:</span>
                         <span>{{ data.AuthCount }}</span>
@@ -131,18 +141,28 @@
                           </div>
                         </div>
                       </el-col>
-                      <el-col :span="8" v-if="data.OrganId != -1">
-                        <span @click="toJob(data)" class="cursor">
-                          <span class="msg">职务:</span>
-                          <span>{{ data.JobCount }}</span>
-                        </span>
-                      </el-col>
-                      <el-col :span="8" v-if="data.OrganId != -1">
-                        <span @click="toOfficer(data)" class="cursor">
-                          <span class="msg">职员:</span>
-                          <span>{{ data.OfficerCount }}</span>
-                        </span>
-                      </el-col>
+                      <template v-if="doesJobShow">
+                        <el-col :span="8" v-if="data.OrganId != -1">
+                          <span @click="toJob(data)" class="cursor">
+                            <span class="msg">职务:</span>
+                            <span>{{ data.JobCount }}</span>
+                          </span>
+                        </el-col>
+                        <el-col :span="8" v-if="data.OrganId != -1">
+                          <span @click="toOfficer(data)" class="cursor">
+                            <span class="msg">职员:</span>
+                            <span>{{ data.OfficerCount }}</span>
+                          </span>
+                        </el-col>
+                      </template>
+                      <template v-else>
+                        <el-col :span="24" v-if="data.OrganId != -1">
+                          <span @click="toOfficer(data)" class="cursor">
+                            <span class="msg">职员:</span>
+                            <span>{{ data.OfficerCount }}</span>
+                          </span>
+                        </el-col>
+                      </template>
                       <!-- <el-col :span="8" v-if="data.OrganId != -1">
                         <span class="msg">权限:</span>
                         <span>{{ data.AuthCount }}</span>

+ 3 - 3
src/views/staffManagement/compontents/staffAdd.vue

@@ -1,7 +1,7 @@
 <!--
  * @Author: your name
  * @Date: 2022-02-10 14:49:20
- * @LastEditTime: 2022-03-11 00:52:13
+ * @LastEditTime: 2022-03-14 10:58:17
  * @LastEditors: your name
  * @Description: 编辑职员
  * @FilePath: \Foshan4A4.0\src\views\staffManagement\compontents\staffEdit.vue
@@ -54,7 +54,7 @@
         <!--有岗位 无角色-->
         <template v-if="OpenGroup && !openRole">
           <div class="r24 flex1 part">
-            <Usergroup @getTreeData="getUserGroup" :checkedKeys="userGroupKeys" title="岗位树" />
+            <Usergroup @getTreeData="getUserGroup" :checkedKeys="userGroupKeys" :title="`${accountGroupType}树`" />
           </div>
           <div class="r24 flex1 part">
             <Permissiontree ref="Permissiontree" :queryType="queryType" :queryId="treeId" :checkedKeys="checkedBoxs" :isMainJob="isMainJob" @nodeClick="nodeClick" @getTreeData="getTreeData" title="权限树" />
@@ -77,7 +77,7 @@
         <!--有角色 有岗位-->
         <template v-if="openRole && OpenGroup">
           <div class="r24 flex1 part">
-            <Usergroup @getTreeData="getUserGroup" :checkedKeys="userGroupKeys" title="岗位树" />
+            <Usergroup @getTreeData="getUserGroup" :checkedKeys="userGroupKeys" :title="`${accountGroupType}树`" />
           </div>
           <div class="r24 flex1 part">
             <Rolelist @checkChange="checkChange" @role-list-change="roleChange" :imageSize="120" needType="1" :GroupIds="GroupIds" @checkClick="checkClick" :roleType="roleType" :active="true" class="hucRole" :number="8" title="角色列表" />

+ 3 - 3
src/views/staffManagement/compontents/staffEdit.vue

@@ -1,7 +1,7 @@
 <!--
  * @Author: your name
  * @Date: 2022-02-10 14:49:20
- * @LastEditTime: 2022-03-11 00:51:19
+ * @LastEditTime: 2022-03-14 10:59:58
  * @LastEditors: your name
  * @Description: 编辑职员
  * @FilePath: \Foshan4A4.0\src\views\staffManagement\compontents\staffEdit.vue
@@ -54,7 +54,7 @@
         <!--有岗位 无角色-->
         <template v-if="OpenGroup && !openRole">
           <div class="r24 flex1 part">
-            <Usergroup @getTreeData="getUserGroup" :checkedKeys="userGroupKeys" title="岗位树" />
+            <Usergroup @getTreeData="getUserGroup" :checkedKeys="userGroupKeys" :title="`${accountGroupType}树`" />
           </div>
           <div class="r24 flex1 part">
             <Permissiontree ref="Permissiontree" :queryType="queryType" :queryId="treeId" :checkedKeys="checkedBoxs" :isMainJob="isMainJob" @nodeClick="nodeClick" @getTreeData="getTreeData" title="权限树" />
@@ -77,7 +77,7 @@
         <!--有角色 有岗位-->
         <template v-if="openRole && OpenGroup">
           <div class="r24 flex1 part">
-            <Usergroup @getTreeData="getUserGroup" :checkedKeys="userGroupKeys" title="岗位树" />
+            <Usergroup @getTreeData="getUserGroup" :checkedKeys="userGroupKeys" :title="`${accountGroupType}树`" />
           </div>
           <div class="r24 flex1 part">
             <Rolelist @checkChange="checkChange" :imageSize="120" @checkClick="checkClick" :GroupIds="GroupIds" :roleType="roleType" :checkBoxList="roleCheckBoxs" @role-list-change="roleChange" :active="true" class="hucRole" :number="8" title="角色列表" />

+ 7 - 5
src/views/staffManagement/compontents/staffHome.vue

@@ -1,7 +1,7 @@
 <!--
  * @Author: your name
  * @Date: 2021-11-29 14:37:54
- * @LastEditTime: 2022-03-11 00:19:19
+ * @LastEditTime: 2022-03-14 11:03:58
  * @LastEditors: your name
  * @Description: 角色管理
  * @FilePath: \Foshan4A2.0\src\views\authorityManagement\components\authorityRole.vue
@@ -32,10 +32,12 @@
                     <i @click="checkRemove(item,index)" class="icon el-icon-close"></i>
                   </div>
                 </div>
-                <div class="flex ip">
-                  <div class="time-info flex1">职务名称:<span :title="item.JobName" class="glr">{{item.JobName ? item.JobName : '暂无'}}</span></div>
-                  <!-- <div class="ip-info flex1">是否有副岗:<span class="glr">{{item.HasDepJob == 1 ? '是':'否'}}</span></div> -->
-                </div>
+                <template v-if="doesJobShow">
+                  <div class="flex ip">
+                    <div class="time-info flex1">职务名称:<span :title="item.JobName" class="glr">{{item.JobName ? item.JobName : '暂无'}}</span></div>
+                    <!-- <div class="ip-info flex1">是否有副岗:<span class="glr">{{item.HasDepJob == 1 ? '是':'否'}}</span></div> -->
+                  </div>
+                </template>
                 <div class="flex time">
                   <div class="time-msg flex1">所属组织:<span :title="item.OrganName" class="glr">{{item.OrganName}}</span></div>
                 </div>

+ 1 - 1
src/views/systemManagement/index.vue

@@ -7,7 +7,7 @@
           <el-button v-is="['system_btn_save']" v-show="isShow" @click="save()">保存</el-button>
         </div>
         <div class="boxList">
-          <span class="ListName">是否开启岗位</span>
+          <span class="ListName">是否开启{{ accountGroupType }}</span>
           <div class="riaStyle">
             <el-radio v-model="FormData.OpenGroup" :label="1">是</el-radio>
             <el-radio v-model="FormData.OpenGroup" :label="0">否</el-radio>