cxmo 1 жил өмнө
parent
commit
7ea6092b22

+ 17 - 0
src/views/Home.vue

@@ -425,6 +425,7 @@ export default {
     if (this.$route.path === "/sealApprovalList") {
       this.isShowApprovalNotice = true;
     }
+    this.resetLinkSys()
   },
   mounted() {
     if (sessionStorage.getItem("hasGetMenu")) {
@@ -875,6 +876,22 @@ export default {
         this.$router.push({ path: "/" + item.meta.pathFrom });
       }
     },
+    resetLinkSys(){
+        const {baseConfigPermission,checkPermissionBtn} = this.permissionBtn
+        const sysMap = {
+            'fd':baseConfigPermission.sysJump_finance,
+            'hr':baseConfigPermission.sysJump_hr,
+            'crm':baseConfigPermission.sysJump_crm,
+        }
+        const linkSystems = this.$setting.linkSystems
+        let linkArr = []
+        for(const k in sysMap){
+            if(checkPermissionBtn(sysMap[k])){
+                linkArr.push(linkSystems.find(i=>i.key===k))
+            }
+        }
+        this.linkSystems = linkArr
+    }
   },
 };
 </script>

+ 16 - 0
src/views/system_manage/newAuthManage.vue

@@ -81,6 +81,9 @@ export default {
                 this.authList = List || []
                 this.defaultCheckedKeys = ChoiceList.filter((item) => !HalfChoiceList.some((halfItem) =>
                     item === halfItem))
+                this.authList.forEach(l=>{
+                    this.formatTree(l)
+                })
             })
         },
         // 保存
@@ -102,6 +105,19 @@ export default {
             })
         }
     },
+    formatTree(data){
+        if(data.MenuType===2){
+            //同时存一下ParentId
+            //监听check事件,如果是ParentId的check,就把子项从defaultCheckedKeys中删除
+            data.Disabled = true
+        }
+        if(data.Children && data.Children.length){
+            data.Children = data.Children.map(i=>{
+                return this.formatTree(i)
+            })
+        }
+        return data
+    },
     created() {
         //只查看权限 不可编辑
         if (this.$route.query.id) {

+ 4 - 34
src/vuex/modules/permissionButton.js

@@ -12,46 +12,16 @@ const permissionButtons = {
     actions:{
         getPermissionButtons({commit}){
             return new Promise((resolve,reject)=>{
-                departInterence.getRoleBtnAuth().then(res=>{
+                /* departInterence.getRoleBtnAuth().then(res=>{
                     const buttons = res.Data || []
                     commit('SET_PERMISSION_BUTTONS',buttons)
                     resolve('获取权限按钮成功')
-                })
-                /* const buttons = [
+                }) */
+                const buttons = [
                     {ButtonCode: "system:menu:add"},
-                    {ButtonCode: "system:user:add"},
-                    {ButtonCode:'reportManage:reportList:sendTime'},
-                    {ButtonCode:'reportManage:reportView'},
-                    {ButtonCode:'reportManage_reportView_copyWechat'},
-                    {ButtonCode:'enReport:reportView'},
-                    {ButtonCode:'enReport:reportView:wechatShare'},
-                    //{ButtonCode:'classifyList:enClassify'},
-                    {ButtonCode:'classifyList:cnClassify'},
-                    {ButtonCode:'classifyList:cnClassify:classifyAdd'},
-                    {ButtonCode:'authorManage:add'},
-                    {ButtonCode:'authorManage:cnReport'},
-                    {ButtonCode:'authorManage:enReport'},
-                    {ButtonCode:'authorManage:cnReport:edit'},
-                    //ppt test
-                    {ButtonCode:'ppt:show'},
-                    {ButtonCode:'pptEn:show'},
-                    //table test
-                    {ButtonCode:'etaTable:excel:download'},
-                    //sandbox test
-                    {ButtonCode:'sandbox:saveView'},
-                    //chartHandle test
-                    {ButtonCode:'statisticFeature:share'},
-                    //stockPlant:anlysisView
-                    {ButtonCode:'stockPlant:anlysisView'},
-                    //goodsPrice:incomeLine:refresh
-                    {ButtonCode:'goodsPrice:incomeLine:refresh'},
-                    //operaAuth test
-                    {ButtonCode:'operateAuth:etaLib'},
-                    {ButtonCode:'operateAuth:etaLib:authSetting'},
-                    {ButtonCode:'operateAuth:mysteel'},
                 ]
                 commit('SET_PERMISSION_BUTTONS',buttons)
-                resolve('获取权限按钮成功') */
+                resolve('获取权限按钮成功')
             })
         }
     },