Karsa vor 11 Monaten
Ursprung
Commit
28f7003219

+ 28 - 25
src/views/dataEntry_manage/chartSetting.vue

@@ -788,7 +788,7 @@
                         <span class="text_oneLine" :style="{'padding-left':chart.IsEnChart?'24px':''}">{{ currentLang === 'en' ? (chart.ChartNameEn||chart.ChartName) : chart.ChartName }}</span>
                     </div>
                     <div class="chart-item-img" @click="detailShowHandle(chart)"
-                    :style="chart.ChartImage?{background: `no-repeat top/cover url('${!chart.HaveOperaAuth ? $icons.lock_big : chart.ChartImage}')`}:{}"></div>
+                    :style="{background: `no-repeat top/cover url('${!chart.HaveOperaAuth ? $icons.lock_big : chart.ChartImage}')`}"></div>
                     <div class="chart-item-bottom">
                         <span><!-- 创建时间 -->{{$t('Chart.list_chart_time')}}: {{ chart.CreateTime.slice(0,10) }}</span>
                         <span v-permission="permissionBtn.chartLibPermission.chartLib_addMy"
@@ -1674,37 +1674,15 @@ export default {
       }
       if (res.Ret !== 200) return;
       this.chartInfo = res.Data.ChartInfo;
-
-      //处理下历史默认来源
-			this.setDefaultSourceFrom();
-  
       this.tableData = res.Data.EdbInfoList;
-      //初始化上下限
-      this.setLimitData(this.tableData)
-        
-      // 设置起始日期和最新日期
-      this.setExtremumDate()
-
-      this.setDefaultDateSelect(); //设置默认的日期选中
-      this.setDefaultPreviewOption(); //设置默认预览配置项
 
-      sessionStorage.setItem('defaultArr',JSON.stringify(res.Data.EdbInfoList));
-
-      const chartTypeMap = {
-        7: this.initBarData, //柱形图
-        10: this.initSectionScatterData, //截面散点
-        11: this.initRadarData //雷达图
-      }
-      chartTypeMap[this.chartInfo.ChartType] && chartTypeMap[this.chartInfo.ChartType](res.Data);
-
-      //将指标添加进标签列表中
+      // //将指标添加进标签列表中
       const {ChartNameEn,ChartName,ChartInfoId,UniqueCode,ChartClassifyId}=res.Data.ChartInfo
       this.addLabel({code:UniqueCode,id:ChartInfoId,classifyId:ChartClassifyId,EdbName:ChartName,EdbNameEn:ChartNameEn,chartData:res.Data.ChartInfo})
       this.defaultShowNodes=this.findParentNodeHandle(this.treeData,ChartClassifyId).reverse();
       this.changeTreeNode()
 
-
-      //滚动到高亮节点位置
+       //滚动到高亮节点位置
       this.$refs.treeRef.setCurrentKey(this.select_node);
       setTimeout(() => {
         let node = document.getElementById(`node${this.select_node}`);
@@ -1722,6 +1700,31 @@ export default {
           parent.scrollTop =  node.offsetTop - parent.offsetHeight/2
         }
       },400)
+
+
+      if(!this.chartInfo.HaveOperaAuth) return
+
+      //处理下历史默认来源
+			this.setDefaultSourceFrom();
+  
+      //初始化上下限
+      this.setLimitData(this.tableData)
+        
+      // 设置起始日期和最新日期
+      this.setExtremumDate()
+
+      this.setDefaultDateSelect(); //设置默认的日期选中
+      this.setDefaultPreviewOption(); //设置默认预览配置项
+
+      sessionStorage.setItem('defaultArr',JSON.stringify(res.Data.EdbInfoList));
+
+      const chartTypeMap = {
+        7: this.initBarData, //柱形图
+        10: this.initSectionScatterData, //截面散点
+        11: this.initRadarData //雷达图
+      }
+      chartTypeMap[this.chartInfo.ChartType] && chartTypeMap[this.chartInfo.ChartType](res.Data);
+
     },
 
     /* 设置默认时间选中项 */

+ 2 - 0
src/views/mychart_manage/components/chartDetailDia.vue

@@ -739,6 +739,8 @@ export default {
           this.refreshLoading = false;
           if (res.Ret !== 200) return;
           this.chartInfo = res.Data.ChartInfo;
+          
+          if(!this.chartInfo.HaveOperaAuth) return
 
           if(this.chartInfo.Source===1) {
             //处理下历史默认来源

+ 10 - 4
src/views/system_manage/dataOperaAuth.vue

@@ -104,7 +104,7 @@
               value: 'ClassifyId',
               label: 'ClassifyName',
               children: 'Child',
-              emitPath: false,
+              emitPath: true,
               multiple:true
             }"
             collapse-tags
@@ -479,6 +479,8 @@ export default {
     getTableData(type) {
       if(!this.default_tab) return
 
+      let Classify = Array.from(new Set(this.searchForm.classifys.flat())).join(',')
+
       this.tableLoading = true;
       let params = {
         Source: this.default_tab,
@@ -486,7 +488,7 @@ export default {
         CurrentIndex: this.page_no,
         PageSize: this.pageSize,
         Keyword: this.searchForm.key_word,
-        Classify:this.searchForm.classifys.join(','),
+        Classify,
         SubSource: this.default_tab === 6 ? Number(this.default_sub_tab) : 0
       }
 			operateAuthInterface.list(params).then(res => {
@@ -671,6 +673,8 @@ export default {
       //全量转
       if(this.transferForm.type==='all') return this.transferAllHandle()
 
+      let Classify = Array.from(new Set(this.searchForm.classifys.flat())).join(',')
+
       //单模块转
       const res = await operateAuthInterface.authEdit({
         Source: this.default_tab,
@@ -680,7 +684,7 @@ export default {
         NewUserId: Number(this.transferForm.newUser),
         Keyword:this.searchForm.key_word,
         UserId:this.searchForm.user||0,
-        Classify:this.searchForm.classifys.join(','),
+        Classify,
         IsSelectAll:this.isSelectAll
       })
 
@@ -726,6 +730,8 @@ export default {
       
       let checked = type === 'single' ? [ DataId ] : this.checkedList.map(_ => _.DataId)
 
+      let Classify = Array.from(new Set(this.searchForm.classifys.flat())).join(',')
+
       this.authForm = {
         type,
         dataName: Name,
@@ -736,7 +742,7 @@ export default {
           NoDataIdList: (this.isSelectAll&&type==='multiple') ? checked : [],
           Keyword:this.searchForm.key_word,
           UserId:this.searchForm.user||0,
-          Classify:this.searchForm.classifys.join(','),
+          Classify,
           IsSelectAll:(this.isSelectAll&&type==='multiple') ? true : false
         } : null
       }