浏览代码

研报列表、英文研报列表、分类列表-英文分类按钮权限配置化

cxmo 1 年之前
父节点
当前提交
3b6071baa7

+ 11 - 2
src/api/modules/setApi.js

@@ -155,7 +155,7 @@ const departInterence = {
 	getRoleList: params => {
 	getRoleList: params => {
 		return http.get('/system/role/list',params)
 		return http.get('/system/role/list',params)
 	},
 	},
-	/* 新增角色权限
+	/* 新增角色菜单权限 crm14.1上线后弃用
 	MenuIdStr
 	MenuIdStr
 	"RoleId" 
 	"RoleId" 
 	MenuButtonIdStr
 	MenuButtonIdStr
@@ -163,7 +163,7 @@ const departInterence = {
 	saveAuth:params => {
 	saveAuth:params => {
 		return http.post('/system/role/menu/add',params)
 		return http.post('/system/role/menu/add',params)
 	},
 	},
-	/* 获取所有权限
+	/* 获取菜单权限,crm14.1上线后弃用
 	RoleId  */
 	RoleId  */
 	getAuthList:params => {
 	getAuthList:params => {
 		return http.get('/system/role/menu/list',params)
 		return http.get('/system/role/menu/list',params)
@@ -244,6 +244,15 @@ const departInterence = {
 	//从其他系统跳转来用code换token
 	//从其他系统跳转来用code换token
 	useCodeLogin:params=>{
 	useCodeLogin:params=>{
 		return http.get('/sysuser/auth_code_login',params)
 		return http.get('/sysuser/auth_code_login',params)
+	},
+	//获取角色的权限信息,包括菜单和功能 (crm14.1)
+	//RoleId
+	getRoleAuth:params=>{
+		return http.get('/system/role/menu/list',params)
+	},
+	//获取用户所有的按钮权限
+	getRoleBtnAuth:params=>{
+		return http.get('/system/role/menu/buttons',params)
 	}
 	}
 }
 }
 
 

+ 3 - 0
src/main.js

@@ -81,6 +81,9 @@ import { VueMasonryPlugin } from "vue-masonry";
 
 
 Vue.use(VueMasonryPlugin);
 Vue.use(VueMasonryPlugin);
 
 
+import * as permissionBtn from "@/utils/buttonConfig";
+Vue.prototype.permissionBtn = permissionBtn
+
 // flat
 // flat
 Array.prototype.flat = function (count) {
 Array.prototype.flat = function (count) {
   let c = count || 1;
   let c = count || 1;

+ 2 - 1
src/routes/modules/oldRoutes.js

@@ -266,7 +266,8 @@ export default [
       },
       },
       {
       {
         path: "Sysauth",
         path: "Sysauth",
-        component: () => import("@/views/system_manage/authManage.vue"),
+        //component: () => import("@/views/system_manage/authManage.vue"),
+        component: () => import("@/views/system_manage/newAuthManage.vue"),
         name: "设置权限",
         name: "设置权限",
         hidden: true,
         hidden: true,
         meta: {
         meta: {

+ 79 - 0
src/utils/buttonConfig.js

@@ -0,0 +1,79 @@
+//维护 按钮列表 已加载在全局
+//通过 this.permissionBtn 调用
+import {store} from "../main";
+/**
+ * 判断按钮在不在用户的权限内
+ * @param {String} button_code 
+ * @returns Boolean
+ */
+export const checkPermissionBtn = (button_code)=>{
+    const buttonCodes = store.state.permissionButton.permissionButtons.map(item=>item.button_code)
+    return buttonCodes.includes(button_code)
+}
+/*
+ * -----------------------------------------------------------------------------研报管理------------------------------------------------
+ */
+/*
+ *--------中文研报列表----------- 
+ */
+export const reportManageBtn={
+    reportManage_sendMsg:'reportManage:sendMsg',//推送消息/已推送消息
+    reportManage_reportView:'reportManage:reportView',//研报预览:即是否能点击研报名称跳转预览页面
+    reportManage_reportView_wechartShare:'reportManage:reportView:wechartShare',//研报预览页面-微信分享
+    reportManage_reportView_copyWechat:'reportManage_reportView_copyWechat',//研报预览页面-复制链接
+    reportManage_audioDownload:'reportManage:audioDownload',//音频下载
+    reportManage_audioUpload:'reportManage:audioUpload',//音频上传
+    reportManage_reportDel:'reportManage:reportDel',//删除研报
+    reportManage_reportEdit:'reportManage:reportEdit',//编辑研报
+    reportManage_cancelPublish:'reportManage:cancelPublish',//取消发布
+    reportManage_publish:'reportManage:publish',//发布研报
+    reportManage_reportList:'reportManage:reportList',//研报列表的选项
+    reportManage_reportList_uv:'reportManage:reportList:uv',//研报列表-PV/UV
+    reportManage_reportList_sendTime:'reportManage:reportList:sendTime',//研报列表-报告推送时间
+    reportManage_dayWeekReportAdd:'reportManage:dayWeekReportAdd',//添加晨报周报
+    reportManage_reportAdd:'reportManage:reportAdd',//添加研报
+}
+/*
+*--------英文研报列表----------- 
+*/
+export const enReportManageBtn = {
+    enReport_reportView:'enReport:reportView',//研报预览:即是否能点击研报名称跳转预览页面
+    enReport_reportView_wechatShare:'enReport:reportView:wechatShare',//研报预览页面-微信分享
+    enReport_reportView_copyWechat:'enReport:reportView:copyWechat',//研报预览页面-复制链接
+    enReport_sendEmail:'enReport:sendEmail',//群发邮件/群发日志
+    enReport_reportDel:'enReport:reportDel',//删除研报
+    enReport_reportEdit:'enReport:reportEdit',//编辑研报
+    enReport_cancelPublish:'enReport:cancelPublish',//取消发布
+    enReport_publish:'enReport:publish',//发布研报
+    enReport_syncPolicy:'enReport:syncPolicy',//同步策略报告
+    enReport_reportAdd:'enReport:reportAdd',//添加研报
+
+}
+/*
+*--------中文分类----------- 
+*/
+export const classifyBtn={}
+/*
+*--------英文分类----------- 
+*/
+export const enClassifyBtn = {
+    classifyList_enClassify:'classifyList:enClassify',//英文分类这个选项卡是否展示
+    /* -------------线上路演------------- */
+    classifyList_enClassify_roadshow:'classifyList:enClassify:roadshow',//线上路演这个选项卡是否展示
+    classifyList_enClassify_rsDel:'classifyList:enClassify:rsDel',//线上路演一二级分类删除
+    classifyList_enClassify_rsAuthSetting:'classifyList:enClassify:rsAuthSetting',//线上路演二级分类权限设置
+    classifyList_enClassify_rsEdit:'classifyList:enClassify:rsEdit',//线上路演一二级分类编辑
+    classifyList_enClassify_rsAddClassify:'classifyList:enClassify:rsAddClassify',//线上路演添加分类按钮
+    /* -------------英文研报------------- */
+    classifyList_enClassify_report:'classifyList:enClassify:report',//英文研报这个选项卡是否展示
+    classifyList_enClassify_rpDel:'classifyList:enClassify:rpDel',//英文研报一二级删除
+    classifyList_enClassify_rpAuthSetting:'classifyList:enClassify:rpAuthSetting',//英文研报二级分类权限配置
+    classifyList_enClassify_rpEdit:'classifyList:enClassify:rpEdit',//英文研报一二级编辑
+    classifyList_enClassify_rpAddClassify:'classifyList:enClassify:rpAddClassify',//英文研报添加分类
+
+
+
+}
+/*
+ * -----------------------------------------------------------------------------智能PPT------------------------------------------------
+ */

+ 88 - 8
src/views/classify_manage/classifyEnlist.vue

@@ -7,7 +7,8 @@
 					<span class="act">英文分类</span>
 					<span class="act">英文分类</span>
 				</div>
 				</div>
         <div>
         <div>
-        <el-button type="primary" size="small" @click="addClassify"
+        <el-button v-if="isAddClassifyBtnShow"
+        type="primary" size="small" @click="addClassify"
           >添加分类</el-button
           >添加分类</el-button
         >
         >
         <el-input
         <el-input
@@ -22,9 +23,10 @@
         </el-input>
         </el-input>
         </div>
         </div>
       </div>
       </div>
-      <div class="tabs-box">
+      <div class="tabs-box" :style="authTabsOpt.length>1?'':'border:none'"
+        v-if="authTabsOpt.length">
         <span 
         <span 
-          v-for="item in tabsOpt" 
+          v-for="item in authTabsOpt" 
           :key="item.val"
           :key="item.val"
           :class="item.val==aTab?'active':''"
           :class="item.val==aTab?'active':''"
           @click="handleTabChange(item)"
           @click="handleTabChange(item)"
@@ -32,6 +34,7 @@
       </div>
       </div>
 
 
       <el-table
       <el-table
+        v-if="authTabsOpt.length"
         :data="tableData"
         :data="tableData"
         v-loading="dataLoading"
         v-loading="dataLoading"
         row-class-name="tableRowClassName"
         row-class-name="tableRowClassName"
@@ -63,12 +66,15 @@
 
 
             <div v-else-if="item.prop === 'handle'">
             <div v-else-if="item.prop === 'handle'">
               <span 
               <span 
+                
                 class="editsty"
                 class="editsty"
-                v-if="row.ischild" 
+                v-if="row.ischild&&isAuthSetBtnShow" 
                 @click="handleShowSetVariety(row)"
                 @click="handleShowSetVariety(row)"
               >权限配置</span>
               >权限配置</span>
-              <span class="editsty" style="margin:0 20px" @click="itemHandle('edit',row)">编辑</span>
-              <span class="deletesty" @click="itemHandle('del',row)">删除</span>
+              <span class="editsty" v-if="isEditBtnShow"
+                style="margin:0 20px" @click="itemHandle('edit',row)">编辑</span>
+              <span class="deletesty" v-if="isDeleteBtnShow"
+                @click="itemHandle('del',row)">删除</span>
             </div>
             </div>
           </template>
           </template>
         </el-table-column>
         </el-table-column>
@@ -110,7 +116,7 @@
               @change="FormClassifyChange"
               @change="FormClassifyChange"
               :disabled="classifyForm.title=='编辑英文分类'"
               :disabled="classifyForm.title=='编辑英文分类'"
             >
             >
-            <el-option v-for="item in tabsOpt" :key="item.val" :label="item.name" :value="item.val"/>
+            <el-option v-for="item in authTabsOpt" :key="item.val" :label="item.name" :value="item.val"/>
             </el-select>
             </el-select>
 
 
           </el-form-item>
           </el-form-item>
@@ -191,6 +197,77 @@ export default {
       }
       }
     }
     }
   },
   },
+  computed:{
+      //添加分类是否展示
+      isAddClassifyBtnShow(){
+          if(this.aTab===0&&this.authTabsOpt.length){
+              return this.permissionBtn.checkPermissionBtn(
+                  this.permissionBtn.enClassifyBtn.classifyList_enClassify_rpAddClassify
+                )
+          }
+          if(this.aTab===1&&this.authTabsOpt.length){
+            return this.permissionBtn.checkPermissionBtn(
+                  this.permissionBtn.enClassifyBtn.classifyList_enClassify_rsAddClassify
+                )
+          }
+        return false
+      },
+      //编辑是否展示
+      isEditBtnShow(){
+        if(this.aTab===0){
+                return this.permissionBtn.checkPermissionBtn(
+                    this.permissionBtn.enClassifyBtn.classifyList_enClassify_rpEdit
+                )
+            }else{
+            return this.permissionBtn.checkPermissionBtn(
+                    this.permissionBtn.enClassifyBtn.classifyList_enClassify_rsEdit
+                )
+            }
+      },
+      //删除是否展示
+      isDeleteBtnShow(){
+        if(this.aTab===0){
+                return this.permissionBtn.checkPermissionBtn(
+                    this.permissionBtn.enClassifyBtn.classifyList_enClassify_rpDel
+                )
+            }else{
+            return this.permissionBtn.checkPermissionBtn(
+                    this.permissionBtn.enClassifyBtn.classifyList_enClassify_rsDel
+                )
+            }
+      },
+      //权限设置是否展示
+      isAuthSetBtnShow(){
+        if(this.aTab===0){
+                return this.permissionBtn.checkPermissionBtn(
+                    this.permissionBtn.enClassifyBtn.classifyList_enClassify_rpAuthSetting
+                )
+            }else{
+            return this.permissionBtn.checkPermissionBtn(
+                    this.permissionBtn.enClassifyBtn.classifyList_enClassify_rsAuthSetting
+                )
+            }
+      },
+      //英文研报、线上路演选项卡
+      authTabsOpt(){
+        const isShowTabRoadshow = this.permissionBtn.checkPermissionBtn(
+            this.permissionBtn.enClassifyBtn.classifyList_enClassify_roadshow
+        )
+        const isShowTabReport = this.permissionBtn.checkPermissionBtn(
+            this.permissionBtn.enClassifyBtn.classifyList_enClassify_report
+        )
+        //没时间写更好的写法了,有空再优化
+        let authTabs = []
+        if(isShowTabReport){
+            authTabs.push(this.tabsOpt[0])
+        }
+        if(isShowTabRoadshow){
+            authTabs.push(this.tabsOpt[1])
+        }
+        return authTabs
+      },
+      //添加分类时的选项框
+  },
   data() {
   data() {
     return {
     return {
       searchform: {
       searchform: {
@@ -415,7 +492,10 @@ export default {
   },
   },
 
 
   mounted() {
   mounted() {
-    this.getList();
+      if(this.authTabsOpt.length){
+        this.aTab = this.authTabsOpt[0].val
+        this.getList();
+      }
   },
   },
 };
 };
 </script>
 </script>

+ 21 - 10
src/views/report_manage/reportEn/reportlist.vue

@@ -5,6 +5,7 @@
         <el-form :inline="true" :model="searchform" @submit.native.prevent>
         <el-form :inline="true" :model="searchform" @submit.native.prevent>
           <el-form-item label="">
           <el-form-item label="">
             <el-button
             <el-button
+              v-permission="permissionBtn.enReportManageBtn.enReport_reportAdd"
               type="primary"
               type="primary"
               size="medium"
               size="medium"
               @click="$router.push({ path: '/reportEnEditor' })"
               @click="$router.push({ path: '/reportEnEditor' })"
@@ -13,6 +14,7 @@
           </el-form-item>
           </el-form-item>
           <el-form-item label="">
           <el-form-item label="">
             <el-button 
             <el-button 
+              v-permission="permissionBtn.enReportManageBtn.enReport_syncPolicy"
               type="primary" 
               type="primary" 
               :loading="isPull" 
               :loading="isPull" 
               @click="handlePullReport"
               @click="handlePullReport"
@@ -124,17 +126,24 @@
 
 
               <span v-else-if="item.key==='handle'">
               <span v-else-if="item.key==='handle'">
                 <template v-if="row.State===1">
                 <template v-if="row.State===1">
-									<span class="editsty" @click="reportHandle(row,'publish')" v-if="row.CanEdit">发布</span>
-									<span class="editsty" @click="reportHandle(row,'edit')" v-if="row.CanEdit">编辑</span>
+                    <span class="editsty" v-permission="permissionBtn.enReportManageBtn.enReport_publish"
+                        @click="reportHandle(row,'publish')" v-if="row.CanEdit">发布</span>
+                    <span v-permission="permissionBtn.enReportManageBtn.enReport_reportEdit"
+                        class="editsty" @click="reportHandle(row,'edit')" v-if="row.CanEdit">编辑</span>
                   <!-- <span class="editsty" @click="reportHandle(row,'editing')" v-else>{{row.Editor||''}}编辑中...</span> -->
                   <!-- <span class="editsty" @click="reportHandle(row,'editing')" v-else>{{row.Editor||''}}编辑中...</span> -->
-                  <span class="editsty" @click="reportHandle(row,'edit')" v-else>{{row.Editor||''}}编辑中...</span>
-									<span class="deletesty" @click="reportHandle(row,'del')" v-if="row.CanEdit">删除</span>
-								</template>
-								<template v-else>
-									<span @click="reportHandle(row,'cancelPublish')" class="deletesty">取消发布</span>
-                  <span class="editsty copylink" @click="reportHandle(row,'sendEmail')" v-if="row.EmailState===0&&row.EmailAuth">群发邮件</span>
-
-                  <span 
+                  <span v-permission="permissionBtn.enReportManageBtn.enReport_reportEdit"
+                    class="editsty" @click="reportHandle(row,'edit')" v-else>{{row.Editor||''}}编辑中...</span>
+                  <span v-permission="permissionBtn.enReportManageBtn.enReport_reportDel"
+                    class="deletesty" @click="reportHandle(row,'del')" v-if="row.CanEdit">删除</span>
+                </template>
+                <template v-else>
+                    <span v-permission="permissionBtn.enReportManageBtn.enReport_cancelPublish"
+                        @click="reportHandle(row,'cancelPublish')" class="deletesty">取消发布</span>
+                    <span v-permission="permissionBtn.enReportManageBtn.enReport_sendEmail"
+                        class="editsty copylink" @click="reportHandle(row,'sendEmail')" v-if="row.EmailState===0&&row.EmailAuth">群发邮件</span>
+
+                  <span
+                    v-permission="permissionBtn.enReportManageBtn.enReport_sendEmail"
                     class="editsty copylink" 
                     class="editsty copylink" 
                     v-if="row.EmailState===1&&row.EmailAuth" 
                     v-if="row.EmailState===1&&row.EmailAuth" 
                     @click="reportHandle(row,'view-log')"
                     @click="reportHandle(row,'view-log')"
@@ -574,6 +583,8 @@ export default {
 
 
     /* 查看详情 */
     /* 查看详情 */
     lookreportdtl({Id,ReportCode}) {
     lookreportdtl({Id,ReportCode}) {
+        //如果没有预览权限,就不跳转
+      if(!this.permissionBtn.checkPermissionBtn(this.permissionBtn.enReportManageBtn.enReport_reportView)) return
       let {href} = this.$router.resolve({name:'预览报告',query:{id:Id,code:ReportCode,fromPage:'en'}});
       let {href} = this.$router.resolve({name:'预览报告',query:{id:Id,code:ReportCode,fromPage:'en'}});
 			window.open(href,'_blank');
 			window.open(href,'_blank');
     },
     },

+ 8 - 2
src/views/report_manage/reportdtl.vue

@@ -48,10 +48,16 @@
 			</block>
 			</block>
 		</div>
 		</div>
 		<div v-if="linkUrl" style="width:100px;height30px;position:absolute;right:-100px;top:100px;cursor:pointer;">
 		<div v-if="linkUrl" style="width:100px;height30px;position:absolute;right:-100px;top:100px;cursor:pointer;">
-			<div style="display:flex;alignItems:center;color:#333;" :data-clipboard-text='linkUrl' @click="copyHandle" class="copy">
+			<div v-permission="$route.query.fromPage==='en'
+                ?permissionBtn.enReportManageBtn.enReport_reportView_copyWechat
+                :permissionBtn.reportManageBtn.reportManage_reportView_copyWechat"
+                style="display:flex;alignItems:center;color:#333;" :data-clipboard-text='linkUrl' @click="copyHandle" class="copy">
 				<img src="../../assets/img/icons/cop.png" alt="" style="width:30px;height:30px;marginRight:10px;">复制链接
 				<img src="../../assets/img/icons/cop.png" alt="" style="width:30px;height:30px;marginRight:10px;">复制链接
 			</div>
 			</div>
-			<div style="display:flex;alignItems:center;color:#333;marginTop:20px;"  @mouseenter="isShowCode=true" @mouseleave="isShowCode=false">
+			<div v-permission="$route.query.fromPage==='en'
+                ?permissionBtn.enReportManageBtn.enReport_reportView_wechatShare
+                :permissionBtn.reportManageBtn.reportManage_reportView_wechartShare"
+                style="display:flex;alignItems:center;color:#333;marginTop:20px;"  @mouseenter="isShowCode=true" @mouseleave="isShowCode=false">
 				<img src="../../assets/img/icons/wechat.png" alt="" style="width:30px;height:30px;marginRight:10px;">微信分享
 				<img src="../../assets/img/icons/wechat.png" alt="" style="width:30px;height:30px;marginRight:10px;">微信分享
 			</div>
 			</div>
 			<vue-qr :text="linkUrl" :margin="0" colorDark="#333" colorLight="#fff" :dotScale="1" :size="100" style="position:absolute;right:0;top:100px;" v-if="isShowCode"></vue-qr>
 			<vue-qr :text="linkUrl" :margin="0" colorDark="#333" colorLight="#fff" :dotScale="1" :size="100" style="position:absolute;right:0;top:100px;" v-if="isShowCode"></vue-qr>

+ 19 - 1
src/views/report_manage/reportlist.vue

@@ -5,6 +5,7 @@
         <el-form :inline="true" :model="searchform" @submit.native.prevent>
         <el-form :inline="true" :model="searchform" @submit.native.prevent>
           <el-form-item label="">
           <el-form-item label="">
             <el-button
             <el-button
+              v-permission="permissionBtn.reportManageBtn.reportManage_reportAdd"
               type="primary"
               type="primary"
               size="medium"
               size="medium"
               @click="$router.push({ path: '/addreportNew' })"
               @click="$router.push({ path: '/addreportNew' })"
@@ -12,6 +13,7 @@
             >
             >
             <!-- <el-button type="primary" plain size="medium" @click="$router.push({path:'/addreport'})">添加研报(旧版)</el-button> -->
             <!-- <el-button type="primary" plain size="medium" @click="$router.push({path:'/addreport'})">添加研报(旧版)</el-button> -->
             <el-button
             <el-button
+              v-permission="permissionBtn.reportManageBtn.reportManage_dayWeekReportAdd"
               type="primary"
               type="primary"
               size="medium"
               size="medium"
               @click="$router.push({ path: '/dayorweek' })"
               @click="$router.push({ path: '/dayorweek' })"
@@ -76,6 +78,10 @@
           </el-form-item>
           </el-form-item>
           <el-form-item label="">
           <el-form-item label="">
             <el-select
             <el-select
+              v-permission="[
+                  permissionBtn.reportManageBtn.reportManage_reportList,
+                  permissionBtn.reportManageBtn.reportManage_reportList_sendTime,
+                  'or']"
               @change="search"
               @change="search"
               v-model.number="searchform.msgIsSend"
               v-model.number="searchform.msgIsSend"
               placeholder="状态筛选"
               placeholder="状态筛选"
@@ -228,18 +234,21 @@
                 >
                 >
                   <!-- <i class="el-icon-edit-outline" @click="$router.push({name:'编辑研报',query:{id:scope.row.id}})"></i> -->
                   <!-- <i class="el-icon-edit-outline" @click="$router.push({name:'编辑研报',query:{id:scope.row.id}})"></i> -->
                   <span
                   <span
+                    v-permission="permissionBtn.reportManageBtn.reportManage_publish"
                     class="editsty"
                     class="editsty"
                     @click="publishreport(scope.row)"
                     @click="publishreport(scope.row)"
                     v-if="scope.row.CanEdit"
                     v-if="scope.row.CanEdit"
                     >发布</span
                     >发布</span
                   >
                   >
                   <span
                   <span
+                    v-permission="permissionBtn.reportManageBtn.reportManage_reportEdit"
                     class="editsty"
                     class="editsty"
                     @click="editreport(scope.row, 'edit')"
                     @click="editreport(scope.row, 'edit')"
                     v-if="scope.row.CanEdit"
                     v-if="scope.row.CanEdit"
                     >编辑</span
                     >编辑</span
                   >
                   >
                   <span
                   <span
+                    v-permission="permissionBtn.reportManageBtn.reportManage_reportEdit"
                     class="editsty"
                     class="editsty"
                     @click="editreport(scope.row, 'editing')"
                     @click="editreport(scope.row, 'editing')"
                     v-else
                     v-else
@@ -247,6 +256,7 @@
                   >
                   >
                   <!-- <i class="el-icon-delete" @click="deleteitem(scope.row)"></i> -->
                   <!-- <i class="el-icon-delete" @click="deleteitem(scope.row)"></i> -->
                   <span
                   <span
+                    v-permission="permissionBtn.reportManageBtn.reportManage_reportDel"
                     class="deletesty"
                     class="deletesty"
                     @click="deleteitem(scope.row)"
                     @click="deleteitem(scope.row)"
                     v-if="scope.row.CanEdit"
                     v-if="scope.row.CanEdit"
@@ -255,18 +265,21 @@
                 </template>
                 </template>
                 <template v-if="scope.row.State == 2">
                 <template v-if="scope.row.State == 2">
                   <span
                   <span
+                    v-permission="permissionBtn.reportManageBtn.reportManage_cancelPublish"
                     @click="canclepublish(scope.row)"
                     @click="canclepublish(scope.row)"
                     style="color: red; cursor: pointer"
                     style="color: red; cursor: pointer"
                     >取消发布</span
                     >取消发布</span
                   >
                   >
                   <!-- <template v-if="scope.row.ClassifyNameFirst!='周报'"> -->
                   <!-- <template v-if="scope.row.ClassifyNameFirst!='周报'"> -->
                   <span
                   <span
+                    v-permission="permissionBtn.reportManageBtn.reportManage_sendMsg"
                     v-if="scope.row.MsgIsSend == 0"
                     v-if="scope.row.MsgIsSend == 0"
                     style="color: #4099ef; cursor: pointer"
                     style="color: #4099ef; cursor: pointer"
                     @click="messageSend(scope.row)"
                     @click="messageSend(scope.row)"
                     >推送消息</span
                     >推送消息</span
                   >
                   >
-                  <span v-else style="color: red">已推送消息</span>
+                  <span v-permission="permissionBtn.reportManageBtn.reportManage_sendMsg"
+                    v-else style="color: red">已推送消息</span>
                   <!-- </template> -->
                   <!-- </template> -->
                   <!-- <template v-else>
                   <!-- <template v-else>
 										<span v-if="scope.row.MsgIsSend=='0'" @click="gosendTemplateMsg(scope.row)" style="color:#4099ef; cursor:pointer;">推送模版消息</span>
 										<span v-if="scope.row.MsgIsSend=='0'" @click="gosendTemplateMsg(scope.row)" style="color:#4099ef; cursor:pointer;">推送模版消息</span>
@@ -281,12 +294,14 @@
 									</template> -->
 									</template> -->
                 </template>
                 </template>
                 <span
                 <span
+                  v-permission="permissionBtn.reportManageBtn.reportManage_audioUpload"
                   style="color: #46c371; cursor: pointer"
                   style="color: #46c371; cursor: pointer"
                   v-if="!['晨报', '周报'].includes(scope.row.ClassifyNameFirst)"
                   v-if="!['晨报', '周报'].includes(scope.row.ClassifyNameFirst)"
                   @click="openupload(scope.row.Id)"
                   @click="openupload(scope.row.Id)"
                   >音频上传</span
                   >音频上传</span
                 >
                 >
                 <a
                 <a
+                  v-permission="permissionBtn.reportManageBtn.reportManage_audioDownload"
                   :href="hostapi + '?ReportId=' + parseInt(scope.row.Id)"
                   :href="hostapi + '?ReportId=' + parseInt(scope.row.Id)"
                   v-if="
                   v-if="
                     scope.row.VideoUrl &&
                     scope.row.VideoUrl &&
@@ -297,6 +312,7 @@
                   >音频下载</a
                   >音频下载</a
                 >
                 >
                 <span
                 <span
+                  v-permission="permissionBtn.reportManageBtn.reportManage_audioDownload"
                   style="cursor: pointer; color: #4099ef"
                   style="cursor: pointer; color: #4099ef"
                   v-if="
                   v-if="
                     ['晨报', '周报'].includes(scope.row.ClassifyNameFirst) &&
                     ['晨报', '周报'].includes(scope.row.ClassifyNameFirst) &&
@@ -749,6 +765,8 @@ export default {
       });
       });
     },
     },
     lookreportdtl(item) {
     lookreportdtl(item) {
+      //如果没有预览权限,就不跳转
+      if(!this.permissionBtn.checkPermissionBtn(this.permissionBtn.reportManageBtn.reportManage_reportView)) return
       sessionStorage.setItem("reportdtl", JSON.stringify(item));
       sessionStorage.setItem("reportdtl", JSON.stringify(item));
       let { href } = this.$router.resolve({
       let { href } = this.$router.resolve({
         name: "预览报告",
         name: "预览报告",

+ 1363 - 0
src/views/system_manage/mock.js

@@ -0,0 +1,1363 @@
+export const mockList = [
+    {
+      "MenuId": 1,
+      "ParentId": 0,
+      "Name": "研报管理",
+      "RootId": 0,
+      "Sort": "1",
+      "Path": "/",
+      "PathName": "",
+      "IconPath": "https://hzstatic.hzinsights.com/static/eta/admin/icon/yb_manager.png",
+      "Component": 0,
+      "Hidden": 0,
+      "HiddenLayout": 0,
+      "Level": 0,
+      "MenuType": 0,
+      "ButtonCode": "",
+      "Children": [
+        {
+          "MenuId": 2,
+          "ParentId": 1,
+          "Name": "研报列表",
+          "RootId": 0,
+          "Sort": "1",
+          "Path": "reportlist",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": [
+            {
+              "MenuId": 200,
+              "ParentId": 2,
+              "Name": "推送消息/已推送消息",
+              "RootId": 0,
+              "Sort": "1",
+              "Path": "reportManage/sendMsg",
+              "PathName": "",
+              "IconPath": "",
+              "Component": 0,
+              "Hidden": 0,
+              "HiddenLayout": 0,
+              "Level": 0,
+              "MenuType": 1,
+              "ButtonCode": "reportManage:sendMsg",
+              "Children": []
+            },
+            {
+              "MenuId": 199,
+              "ParentId": 2,
+              "Name": "预览",
+              "RootId": 0,
+              "Sort": "1",
+              "Path": "reportManage/reportView",
+              "PathName": "",
+              "IconPath": "",
+              "Component": 0,
+              "Hidden": 0,
+              "HiddenLayout": 0,
+              "Level": 0,
+              "MenuType": 1,
+              "ButtonCode": "reportManage:reportView",
+              "Children": [
+                {
+                  "MenuId": 204,
+                  "ParentId": 199,
+                  "Name": "微信分享",
+                  "RootId": 0,
+                  "Sort": "1",
+                  "Path": "reportManage/reportView/wechartShare",
+                  "PathName": "",
+                  "IconPath": "",
+                  "Component": 0,
+                  "Hidden": 0,
+                  "HiddenLayout": 0,
+                  "Level": 0,
+                  "MenuType": 2,
+                  "ButtonCode": "reportManage:reportView:wechartShare",
+                  "Children": []
+                },
+                {
+                  "MenuId": 203,
+                  "ParentId": 199,
+                  "Name": "复制微信",
+                  "RootId": 0,
+                  "Sort": "1",
+                  "Path": "reportManage/reportView/copyWechat",
+                  "PathName": "",
+                  "IconPath": "",
+                  "Component": 0,
+                  "Hidden": 0,
+                  "HiddenLayout": 0,
+                  "Level": 0,
+                  "MenuType": 2,
+                  "ButtonCode": "reportManage:reportView:copyWechat",
+                  "Children": []
+                }
+              ]
+            },
+            {
+              "MenuId": 198,
+              "ParentId": 2,
+              "Name": "音频下载",
+              "RootId": 0,
+              "Sort": "1",
+              "Path": "reportManage/audioDownload",
+              "PathName": "",
+              "IconPath": "",
+              "Component": 0,
+              "Hidden": 0,
+              "HiddenLayout": 0,
+              "Level": 0,
+              "MenuType": 1,
+              "ButtonCode": "reportManage:audioDownload",
+              "Children": []
+            },
+            {
+              "MenuId": 197,
+              "ParentId": 2,
+              "Name": "音频上传",
+              "RootId": 0,
+              "Sort": "1",
+              "Path": "reportManage/audioUpload",
+              "PathName": "",
+              "IconPath": "",
+              "Component": 0,
+              "Hidden": 0,
+              "HiddenLayout": 0,
+              "Level": 0,
+              "MenuType": 1,
+              "ButtonCode": "reportManage:audioUpload",
+              "Children": []
+            },
+            {
+              "MenuId": 196,
+              "ParentId": 2,
+              "Name": "删除",
+              "RootId": 0,
+              "Sort": "1",
+              "Path": "reportManage/reportDel",
+              "PathName": "",
+              "IconPath": "",
+              "Component": 0,
+              "Hidden": 0,
+              "HiddenLayout": 0,
+              "Level": 0,
+              "MenuType": 1,
+              "ButtonCode": "reportManage:reportDel",
+              "Children": []
+            },
+            {
+              "MenuId": 195,
+              "ParentId": 2,
+              "Name": "编辑",
+              "RootId": 0,
+              "Sort": "1",
+              "Path": "reportManage/reportEdit",
+              "PathName": "",
+              "IconPath": "",
+              "Component": 0,
+              "Hidden": 0,
+              "HiddenLayout": 0,
+              "Level": 0,
+              "MenuType": 1,
+              "ButtonCode": "reportManage:reportEdit",
+              "Children": []
+            },
+            {
+              "MenuId": 194,
+              "ParentId": 2,
+              "Name": "取消发布",
+              "RootId": 0,
+              "Sort": "1",
+              "Path": "reportManage/cancelPublish",
+              "PathName": "",
+              "IconPath": "",
+              "Component": 0,
+              "Hidden": 0,
+              "HiddenLayout": 0,
+              "Level": 0,
+              "MenuType": 1,
+              "ButtonCode": "reportManage:cancelPublish",
+              "Children": []
+            },
+            {
+              "MenuId": 193,
+              "ParentId": 2,
+              "Name": "发布",
+              "RootId": 0,
+              "Sort": "1",
+              "Path": "reportManage/publish",
+              "PathName": "",
+              "IconPath": "",
+              "Component": 0,
+              "Hidden": 0,
+              "HiddenLayout": 0,
+              "Level": 0,
+              "MenuType": 1,
+              "ButtonCode": "reportManage:publish",
+              "Children": []
+            },
+            {
+              "MenuId": 192,
+              "ParentId": 2,
+              "Name": "列表",
+              "RootId": 0,
+              "Sort": "1",
+              "Path": "reportManage/reportList",
+              "PathName": "",
+              "IconPath": "",
+              "Component": 0,
+              "Hidden": 0,
+              "HiddenLayout": 0,
+              "Level": 0,
+              "MenuType": 1,
+              "ButtonCode": "reportManage:reportList",
+              "Children": [
+                {
+                  "MenuId": 202,
+                  "ParentId": 192,
+                  "Name": "UV",
+                  "RootId": 0,
+                  "Sort": "1",
+                  "Path": "reportManage/reportList/uv",
+                  "PathName": "",
+                  "IconPath": "",
+                  "Component": 0,
+                  "Hidden": 0,
+                  "HiddenLayout": 0,
+                  "Level": 0,
+                  "MenuType": 2,
+                  "ButtonCode": "reportManage:reportList:uv",
+                  "Children": []
+                },
+                {
+                  "MenuId": 201,
+                  "ParentId": 192,
+                  "Name": "报告推送时间",
+                  "RootId": 0,
+                  "Sort": "1",
+                  "Path": "reportManage/reportList/sendTime",
+                  "PathName": "",
+                  "IconPath": "",
+                  "Component": 0,
+                  "Hidden": 0,
+                  "HiddenLayout": 0,
+                  "Level": 0,
+                  "MenuType": 2,
+                  "ButtonCode": "reportManage:reportList:sendTime",
+                  "Children": []
+                }
+              ]
+            },
+            {
+              "MenuId": 191,
+              "ParentId": 2,
+              "Name": "添加晨报/周报",
+              "RootId": 0,
+              "Sort": "1",
+              "Path": "reportManage/dayWeekReportAdd",
+              "PathName": "",
+              "IconPath": "",
+              "Component": 0,
+              "Hidden": 0,
+              "HiddenLayout": 0,
+              "Level": 0,
+              "MenuType": 1,
+              "ButtonCode": "reportManage:dayWeekReportAdd",
+              "Children": []
+            },
+            {
+              "MenuId": 190,
+              "ParentId": 2,
+              "Name": "添加研报",
+              "RootId": 0,
+              "Sort": "1",
+              "Path": "reportManage/reportAdd",
+              "PathName": "",
+              "IconPath": "",
+              "Component": 0,
+              "Hidden": 0,
+              "HiddenLayout": 0,
+              "Level": 0,
+              "MenuType": 1,
+              "ButtonCode": "reportManage:reportAdd",
+              "Children": []
+            }
+          ]
+        },
+        {
+          "MenuId": 133,
+          "ParentId": 1,
+          "Name": "英文研报",
+          "RootId": 0,
+          "Sort": "2",
+          "Path": "reportEnList",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        },
+        {
+          "MenuId": 3,
+          "ParentId": 1,
+          "Name": "分类列表",
+          "RootId": 0,
+          "Sort": "3",
+          "Path": "classifylist",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        },
+        {
+          "MenuId": 137,
+          "ParentId": 1,
+          "Name": "作者管理",
+          "RootId": 0,
+          "Sort": "4",
+          "Path": "reportAuthor",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        },
+        {
+          "MenuId": 187,
+          "ParentId": 1,
+          "Name": "英文品种配置",
+          "RootId": 0,
+          "Sort": "5",
+          "Path": "reportvariety",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        },
+        {
+          "MenuId": 155,
+          "ParentId": 1,
+          "Name": "云盘",
+          "RootId": 0,
+          "Sort": "6",
+          "Path": "cloudDisk",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        }
+      ]
+    },
+    {
+      "MenuId": 4,
+      "ParentId": 0,
+      "Name": "智能ppt",
+      "RootId": 0,
+      "Sort": "2",
+      "Path": "/",
+      "PathName": "",
+      "IconPath": "https://hzstatic.hzinsights.com/static/eta/admin/icon/ppt.png",
+      "Component": 0,
+      "Hidden": 0,
+      "HiddenLayout": 0,
+      "Level": 0,
+      "MenuType": 0,
+      "ButtonCode": "",
+      "Children": [
+        {
+          "MenuId": 5,
+          "ParentId": 4,
+          "Name": "ppt列表",
+          "RootId": 0,
+          "Sort": "1",
+          "Path": "pptlist",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        }
+      ]
+    },
+    {
+      "MenuId": 134,
+      "ParentId": 0,
+      "Name": "英文ppt",
+      "RootId": 0,
+      "Sort": "3",
+      "Path": "/",
+      "PathName": "",
+      "IconPath": "https://hzstatic.hzinsights.com/static/eta/admin/icon/english_ppt.png",
+      "Component": 0,
+      "Hidden": 0,
+      "HiddenLayout": 0,
+      "Level": 0,
+      "MenuType": 0,
+      "ButtonCode": "",
+      "Children": [
+        {
+          "MenuId": 135,
+          "ParentId": 134,
+          "Name": "英文ppt",
+          "RootId": 0,
+          "Sort": "1",
+          "Path": "pptenlist",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        }
+      ]
+    },
+    {
+      "MenuId": 6,
+      "ParentId": 0,
+      "Name": "数据源",
+      "RootId": 0,
+      "Sort": "4",
+      "Path": "/",
+      "PathName": "",
+      "IconPath": "https://hzstatic.hzinsights.com/static/eta/admin/icon/data_source.png",
+      "Component": 0,
+      "Hidden": 0,
+      "HiddenLayout": 0,
+      "Level": 0,
+      "MenuType": 0,
+      "ButtonCode": "",
+      "Children": [
+        {
+          "MenuId": 8,
+          "ParentId": 6,
+          "Name": "手工指标列表",
+          "RootId": 0,
+          "Sort": "1",
+          "Path": "targetList",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        },
+        {
+          "MenuId": 7,
+          "ParentId": 6,
+          "Name": "手工数据录入",
+          "RootId": 0,
+          "Sort": "2",
+          "Path": "dataList",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        },
+        {
+          "MenuId": 151,
+          "ParentId": 6,
+          "Name": "期货数据库",
+          "RootId": 0,
+          "Sort": "3",
+          "Path": "futuresbase",
+          "PathName": "",
+          "IconPath": "https://hzchart.oss-cn-shanghai.aliyuncs.com/static/icon/admin_menu/new_icon/futuresbase.png",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        },
+        {
+          "MenuId": 52,
+          "ParentId": 6,
+          "Name": "隆众原始数据库",
+          "RootId": 0,
+          "Sort": "4",
+          "Path": "lzTarget",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        },
+        {
+          "MenuId": 53,
+          "ParentId": 6,
+          "Name": "钢联原始数据库",
+          "RootId": 0,
+          "Sort": "5",
+          "Path": "glTarget",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        },
+        {
+          "MenuId": 129,
+          "ParentId": 6,
+          "Name": "钢联化工数据库",
+          "RootId": 0,
+          "Sort": "6",
+          "Path": "steelChemical",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        },
+        {
+          "MenuId": 54,
+          "ParentId": 6,
+          "Name": "SMM原始数据库",
+          "RootId": 0,
+          "Sort": "7",
+          "Path": "smmTarget",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        },
+        {
+          "MenuId": 160,
+          "ParentId": 6,
+          "Name": "百川盈孚",
+          "RootId": 0,
+          "Sort": "8",
+          "Path": "BAIINFOdata",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        },
+        {
+          "MenuId": 150,
+          "ParentId": 6,
+          "Name": "卓创数据(红桃3)",
+          "RootId": 0,
+          "Sort": "9",
+          "Path": "SCIdata",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        },
+        {
+          "MenuId": 82,
+          "ParentId": 6,
+          "Name": "中国煤炭市场网",
+          "RootId": 0,
+          "Sort": "10",
+          "Path": "chineseCoal",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        },
+        {
+          "MenuId": 64,
+          "ParentId": 6,
+          "Name": "郑商所",
+          "RootId": 0,
+          "Sort": "11",
+          "Path": "zhengzhoushop",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        },
+        {
+          "MenuId": 65,
+          "ParentId": 6,
+          "Name": "大商所",
+          "RootId": 0,
+          "Sort": "12",
+          "Path": "dalianshop",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        },
+        {
+          "MenuId": 66,
+          "ParentId": 6,
+          "Name": "上期所",
+          "RootId": 0,
+          "Sort": "13",
+          "Path": "shanghaifutures",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        },
+        {
+          "MenuId": 67,
+          "ParentId": 6,
+          "Name": "中金所",
+          "RootId": 0,
+          "Sort": "14",
+          "Path": "chinafutures",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        },
+        {
+          "MenuId": 68,
+          "ParentId": 6,
+          "Name": "上期能源",
+          "RootId": 0,
+          "Sort": "15",
+          "Path": "shanghaienergy",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        },
+        {
+          "MenuId": 121,
+          "ParentId": 6,
+          "Name": "谷歌出行指数",
+          "RootId": 0,
+          "Sort": "16",
+          "Path": "googleTravel",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        },
+        {
+          "MenuId": 138,
+          "ParentId": 6,
+          "Name": "EIA  STEO报告",
+          "RootId": 0,
+          "Sort": "17",
+          "Path": "steobase",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        },
+        {
+          "MenuId": 74,
+          "ParentId": 6,
+          "Name": "天然气",
+          "RootId": 0,
+          "Sort": "18",
+          "Path": "gasTarget",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        },
+        {
+          "MenuId": 147,
+          "ParentId": 6,
+          "Name": "UN",
+          "RootId": 0,
+          "Sort": "19",
+          "Path": "UNdata",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        },
+        {
+          "MenuId": 177,
+          "ParentId": 6,
+          "Name": "国家统计局",
+          "RootId": 0,
+          "Sort": "20",
+          "Path": "NationalData",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        }
+      ]
+    },
+    {
+      "MenuId": 46,
+      "ParentId": 0,
+      "Name": "ETA指标库",
+      "RootId": 0,
+      "Sort": "5",
+      "Path": "",
+      "PathName": "",
+      "IconPath": "https://hzstatic.hzinsights.com/static/eta/admin/icon/eta_data.png",
+      "Component": 0,
+      "Hidden": 0,
+      "HiddenLayout": 0,
+      "Level": 0,
+      "MenuType": 0,
+      "ButtonCode": "",
+      "Children": [
+        {
+          "MenuId": 35,
+          "ParentId": 46,
+          "Name": "数据指标库",
+          "RootId": 0,
+          "Sort": "3",
+          "Path": "database",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        }
+      ]
+    },
+    {
+      "MenuId": 125,
+      "ParentId": 0,
+      "Name": "ETA预测指标",
+      "RootId": 0,
+      "Sort": "6",
+      "Path": "",
+      "PathName": "",
+      "IconPath": "https://hzstatic.hzinsights.com/static/eta/admin/icon/eta_predict_data.png",
+      "Component": 0,
+      "Hidden": 0,
+      "HiddenLayout": 0,
+      "Level": 0,
+      "MenuType": 0,
+      "ButtonCode": "",
+      "Children": [
+        {
+          "MenuId": 126,
+          "ParentId": 125,
+          "Name": "ETA预测指标",
+          "RootId": 0,
+          "Sort": "0",
+          "Path": "predictEdb",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        }
+      ]
+    },
+    {
+      "MenuId": 47,
+      "ParentId": 0,
+      "Name": "ETA图库",
+      "RootId": 0,
+      "Sort": "7",
+      "Path": "",
+      "PathName": "",
+      "IconPath": "https://hzstatic.hzinsights.com/static/eta/admin/icon/eta_chart.png",
+      "Component": 0,
+      "Hidden": 0,
+      "HiddenLayout": 0,
+      "Level": 0,
+      "MenuType": 0,
+      "ButtonCode": "",
+      "Children": [
+        {
+          "MenuId": 44,
+          "ParentId": 47,
+          "Name": "研究图库",
+          "RootId": 0,
+          "Sort": "4",
+          "Path": "chartsetting",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        }
+      ]
+    },
+    {
+      "MenuId": 61,
+      "ParentId": 0,
+      "Name": "My ETA",
+      "RootId": 0,
+      "Sort": "8",
+      "Path": "/",
+      "PathName": "",
+      "IconPath": "https://hzstatic.hzinsights.com/static/eta/admin/icon/my_eta.png",
+      "Component": 0,
+      "Hidden": 0,
+      "HiddenLayout": 0,
+      "Level": 0,
+      "MenuType": 0,
+      "ButtonCode": "",
+      "Children": [
+        {
+          "MenuId": 62,
+          "ParentId": 61,
+          "Name": "My ETA",
+          "RootId": 0,
+          "Sort": "1",
+          "Path": "mychart",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        }
+      ]
+    },
+    {
+      "MenuId": 123,
+      "ParentId": 0,
+      "Name": "ETA表格",
+      "RootId": 0,
+      "Sort": "9",
+      "Path": "",
+      "PathName": "",
+      "IconPath": "https://hzstatic.hzinsights.com/static/eta/admin/icon/eta_table.png",
+      "Component": 0,
+      "Hidden": 0,
+      "HiddenLayout": 0,
+      "Level": 0,
+      "MenuType": 0,
+      "ButtonCode": "",
+      "Children": [
+        {
+          "MenuId": 124,
+          "ParentId": 123,
+          "Name": "ETA表格",
+          "RootId": 0,
+          "Sort": "0",
+          "Path": "sheetList",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        }
+      ]
+    },
+    {
+      "MenuId": 75,
+      "ParentId": 0,
+      "Name": "ETA逻辑",
+      "RootId": 0,
+      "Sort": "10",
+      "Path": "/",
+      "PathName": "",
+      "IconPath": "https://hzstatic.hzinsights.com/static/eta/admin/icon/eta_logic.png",
+      "Component": 0,
+      "Hidden": 0,
+      "HiddenLayout": 0,
+      "Level": 0,
+      "MenuType": 0,
+      "ButtonCode": "",
+      "Children": [
+        {
+          "MenuId": 76,
+          "ParentId": 75,
+          "Name": "沙盘列表",
+          "RootId": 0,
+          "Sort": "0",
+          "Path": "sandlist",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        }
+      ]
+    },
+    {
+      "MenuId": 165,
+      "ParentId": 0,
+      "Name": "语义分析",
+      "RootId": 0,
+      "Sort": "11",
+      "Path": "/",
+      "PathName": "",
+      "IconPath": "https://hzstatic.hzinsights.com/static/eta/admin/icon/semantic_analysis.png",
+      "Component": 0,
+      "Hidden": 0,
+      "HiddenLayout": 0,
+      "Level": 0,
+      "MenuType": 0,
+      "ButtonCode": "",
+      "Children": [
+        {
+          "MenuId": 167,
+          "ParentId": 165,
+          "Name": "文档管理",
+          "RootId": 0,
+          "Sort": "2",
+          "Path": "documentPage",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        },
+        {
+          "MenuId": 168,
+          "ParentId": 165,
+          "Name": "文档对比",
+          "RootId": 0,
+          "Sort": "3",
+          "Path": "semanticsPage",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        },
+        {
+          "MenuId": 166,
+          "ParentId": 165,
+          "Name": "标签管理",
+          "RootId": 0,
+          "Sort": "4",
+          "Path": "tagPage",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        }
+      ]
+    },
+    {
+      "MenuId": 158,
+      "ParentId": 0,
+      "Name": "统计分析",
+      "RootId": 0,
+      "Sort": "12",
+      "Path": "",
+      "PathName": "",
+      "IconPath": "https://hzstatic.hzinsights.com/static/eta/admin/icon/statistic_analysis.png",
+      "Component": 0,
+      "Hidden": 0,
+      "HiddenLayout": 0,
+      "Level": 0,
+      "MenuType": 0,
+      "ButtonCode": "",
+      "Children": [
+        {
+          "MenuId": 159,
+          "ParentId": 158,
+          "Name": "相关性分析",
+          "RootId": 0,
+          "Sort": "1",
+          "Path": "chartrelevance",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        },
+        {
+          "MenuId": 182,
+          "ParentId": 158,
+          "Name": "拟合方程曲线",
+          "RootId": 0,
+          "Sort": "2",
+          "Path": "fittingEquationList",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        },
+        {
+          "MenuId": 184,
+          "ParentId": 158,
+          "Name": "统计特征",
+          "RootId": 0,
+          "Sort": "3",
+          "Path": "statisticFeatureList",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        }
+      ]
+    },
+    {
+      "MenuId": 169,
+      "ParentId": 0,
+      "Name": "供应分析",
+      "RootId": 0,
+      "Sort": "13",
+      "Path": "/",
+      "PathName": "",
+      "IconPath": "https://hzstatic.hzinsights.com/static/eta/admin/icon/supply_analysis.png",
+      "Component": 0,
+      "Hidden": 0,
+      "HiddenLayout": 0,
+      "Level": 0,
+      "MenuType": 0,
+      "ButtonCode": "",
+      "Children": [
+        {
+          "MenuId": 170,
+          "ParentId": 169,
+          "Name": "装置检修",
+          "RootId": 0,
+          "Sort": "0",
+          "Path": "stockplant",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        },
+        {
+          "MenuId": 171,
+          "ParentId": 169,
+          "Name": "分析品种",
+          "RootId": 0,
+          "Sort": "1",
+          "Path": "analyseVariety",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 1,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        }
+      ]
+    },
+    {
+      "MenuId": 153,
+      "ParentId": 0,
+      "Name": "商品价格曲线",
+      "RootId": 0,
+      "Sort": "14",
+      "Path": "",
+      "PathName": "",
+      "IconPath": "https://hzstatic.hzinsights.com/static/eta/admin/icon/product_price.png",
+      "Component": 0,
+      "Hidden": 0,
+      "HiddenLayout": 0,
+      "Level": 0,
+      "MenuType": 0,
+      "ButtonCode": "",
+      "Children": [
+        {
+          "MenuId": 154,
+          "ParentId": 153,
+          "Name": "商品价格曲线",
+          "RootId": 0,
+          "Sort": "0",
+          "Path": "commordityChartBase",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        }
+      ]
+    },
+    {
+      "MenuId": 9,
+      "ParentId": 0,
+      "Name": "系统设置",
+      "RootId": 0,
+      "Sort": "107",
+      "Path": "/",
+      "PathName": "",
+      "IconPath": "https://hzstatic.hzinsights.com/static/eta/admin/icon/system_manager.png",
+      "Component": 0,
+      "Hidden": 0,
+      "HiddenLayout": 0,
+      "Level": 0,
+      "MenuType": 0,
+      "ButtonCode": "",
+      "Children": [
+        {
+          "MenuId": 10,
+          "ParentId": 9,
+          "Name": "部门管理",
+          "RootId": 0,
+          "Sort": "1",
+          "Path": "Sysdepart",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        },
+        {
+          "MenuId": 11,
+          "ParentId": 9,
+          "Name": "角色管理",
+          "RootId": 0,
+          "Sort": "2",
+          "Path": "Sysrole",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        },
+        {
+          "MenuId": 48,
+          "ParentId": 9,
+          "Name": "手工数据权限",
+          "RootId": 0,
+          "Sort": "6",
+          "Path": "Sysdatauth",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        },
+        {
+          "MenuId": 141,
+          "ParentId": 9,
+          "Name": "数据操作权限",
+          "RootId": 0,
+          "Sort": "7",
+          "Path": "operateAuth",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        },
+        {
+          "MenuId": 145,
+          "ParentId": 9,
+          "Name": "英文权限配置",
+          "RootId": 0,
+          "Sort": "10",
+          "Path": "enAuthManage",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        },
+        {
+          "MenuId": 189,
+          "ParentId": 9,
+          "Name": "基本配置",
+          "RootId": 0,
+          "Sort": "12",
+          "Path": "etaBaseConfig",
+          "PathName": "",
+          "IconPath": "",
+          "Component": 0,
+          "Hidden": 0,
+          "HiddenLayout": 0,
+          "Level": 0,
+          "MenuType": 0,
+          "ButtonCode": "",
+          "Children": []
+        }
+      ]
+    }
+  ]

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

@@ -0,0 +1,250 @@
+<template>
+    <div class="authManage_container">
+        <div class="auth_cont_top">
+            <div>
+                <span>角色</span>
+                <el-select v-model="role" placeholder="请选择角色" style="width:360px;marginLeft:30px;">
+                    <el-option v-for="item in roleList" :key="item.RoleId" :label="item.RoleName" :value="item.RoleId">
+                    </el-option>
+                </el-select>
+            </div>
+            <el-button type="primary" style="marginRight:50px;width:140px;" @click="saveAuth" v-if="!isLook">确定
+            </el-button>
+        </div>
+        <div class="auth_bot">
+            <div class="menu_auth_cont">
+                <h3 style="color:#333;fontSize:14px;">权限设置</h3>
+                <div class="auth-wrap">
+                    <el-tree ref="checkboxTree" :data="authList" :props="{label:'Name',children:'Children',disabled:(node,data)=>{node.disabled=true}}"
+                        :default-expand-all="false" show-checkbox node-key="MenuId"
+                        :default-checked-keys="defaultCheckedKeys">
+                    </el-tree>
+                </div>
+            </div>
+        </div>
+    </div>
+</template>
+
+<script>
+import {departInterence} from '@/api/api.js';
+import {mockList} from './mock';
+export default {
+    name: '',
+    components: {},
+    data() {
+        return {
+            role: '', //角色
+            roleList: [], //角色列表
+            authList: [], //权限列表
+            defaultCheckedKeys: [],
+            loading: null, //loading
+            isLook: false, //是否仅查看
+        };
+    },
+    watch: {
+        // 监测角色改变对应的权限也改变
+        role() {
+            this.loading = this.$loading({
+                lock: true,
+                target: '.authManage_container',
+                text: '切换角色中...',
+                spinner: 'el-icon-loading',
+                background: 'rgba(255, 255, 255, 0.8)'
+            });
+            this.getAuthList();
+        }
+    },
+    methods: {
+        /* 获取已有角色列表 */
+        getRoles() {
+            departInterence.getRole().then(res => {
+                if (res.Ret === 200) {
+                    this.roleList = res.Data.List;
+                    if (res.Data.List.length && !this.role) {
+                        this.role = res.Data.List[0].RoleId
+                    }
+                }
+            })
+        },
+        /* 根据角色id获取已有权限 */
+        getAuthList() {
+            this.authList = mockList
+            this.loading&&this.loading.close()
+            /* departInterence.getRoleAuth({
+                RoleId: Number(this.role)
+            }).then(res => {
+                if (res.Ret !== 200) return
+                this.loading && this.loading.close()
+                if (!res.Data) return
+                const {
+                    List,
+                    ChoiceList = [],
+                    HalfChoiceList = []
+                } = res.Data
+                this.authList = List || []
+                this.defaultCheckedKeys = ChoiceList.filter((item) => !HalfChoiceList.some((halfItem) =>
+                    item === halfItem))
+            }) */
+        },
+        // 保存
+        saveAuth() {}
+    },
+    created() {
+        //只查看权限 不可编辑
+        if (this.$route.query.id) {
+            this.role = Number(this.$route.query.id);
+            this.isLook = true;
+        }
+    },
+    mounted() {
+        this.getRoles();
+    },
+}
+</script>
+<style lang='scss'>
+.authManage_container {
+    * {
+        box-sizing: border-box;
+    }
+    .auth_cont_top {
+        font-size: 16px;
+        color: #333;
+        display: flex;
+        // justify-content: space-between;
+        align-items: center;
+        border: 1px solid #ECECEC;
+        padding: 20px 30px;
+        background: #fff;
+        border-radius: 4px;
+        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
+        justify-content: space-between;
+    }
+
+    .auth_bot {
+        min-height: calc(100vh - 224px);
+        padding: 30px;
+        background: #fff;
+        margin-top: 20px;
+        position: relative;
+        border: 1px solid #ECECEC;
+        border-radius: 4px;
+        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
+
+        .el-tree {
+            border-top: 1px solid #E5E7ED;
+            border-left: 1px solid #E5E7ED;
+            border-right: 1px solid #E5E7ED;
+            width: 98%;
+            margin-bottom: 40px;
+
+            .el-tree-node__label {
+                margin: 10px;
+            }
+
+            .el-tree-node__content {
+                min-width: 200px;
+                width: 200px;
+                white-space: normal;
+                box-sizing: border-box;
+            }
+
+            .el-tree-node {
+                .el-tree-node {
+                    .el-tree-node__children {
+                        width: 100%;
+                    }
+
+                    .el-tree-node {
+                        &:not(:first-child) {
+                            /* .el-tree-node__content{
+                        border-right: 1px solid #E5E7ED;
+                    } */
+                            border-top: 1px solid #E5E7ED;
+                        }
+
+                        .el-tree-node__content {
+                            border-right: 1px solid #E5E7ED;
+                        }
+                    }
+
+                }
+            }
+
+            .el-tree-node__content {
+                padding: 5px 10px !important;
+                height: auto;
+
+                .el-tree-node__expand-icon.el-icon-caret-right {
+                    //display: none;
+                }
+            }
+
+            >.el-tree-node {
+                padding: 0 !important;
+                display: flex;
+                border-bottom: 1px solid #E5E7ED;
+
+                >.el-tree-node__children {
+                    width: 100%;
+
+                    >.el-tree-node {
+                        &:not(:first-child) {
+                            border-top: 1px solid #E5E7ED;
+                        }
+
+                        >.el-tree-node__content {
+                            border-left: 1px solid #E5E7ED;
+                            border-right: 1px solid #E5E7ED;
+                        }
+                    }
+                }
+            }
+
+            .el-tree-node__children {
+                display: flex;
+                flex-direction: column;
+
+                .el-tree-node {
+                    display: flex;
+                    padding: 0px !important;
+
+                    .el-tree-node__content {
+                        border-bottom: none;
+
+                        .custom-tree-node {
+                            height: 24px;
+                            display: flex;
+                            align-items: center;
+
+                            .tree-btn {
+                                margin-left: 10px;
+                                display: none;
+                            }
+
+                            .el-button {
+                                padding: 0px !important;
+                                border-radius: 4px;
+                                background: #363554;
+                                color: #ffffff;
+                            }
+                        }
+                    }
+
+                    .el-tree-node__children {
+                        .el-tree-node {
+                            &:not(:first-child) {
+                                .el-tree-node__content {
+                                    //border-left: none;
+                                }
+                            }
+                        }
+                    }
+                }
+            }
+        }
+        .auth-wrap{
+            margin-top: 20px;
+        }
+    }
+}
+</style>

+ 8 - 1
src/vuex/modules/permissionButton.js

@@ -18,7 +18,14 @@ const permissionButtons = {
                 }) */
                 }) */
                 const buttons = [
                 const buttons = [
                     {button_code: "system:menu:add"},
                     {button_code: "system:menu:add"},
-                    {button_code: "system:user:add"}
+                    {button_code: "system:user:add"},
+                    {button_code:'reportManage:reportList:sendTime'},
+                    {button_code:'reportManage:reportView'},
+                    {button_code:'reportManage_reportView_copyWechat'},
+                    {button_code:'enReport:reportView'},
+                    {button_code:'enReport:reportView:wechatShare'},
+                    {button_code:'classifyList:enClassify:rpAddClassify'},
+                    {button_code:'classifyList:enClassify:report'}
                 ]
                 ]
                 commit('SET_PERMISSION_BUTTONS',buttons)
                 commit('SET_PERMISSION_BUTTONS',buttons)
                 resolve('获取权限按钮成功')
                 resolve('获取权限按钮成功')