|
@@ -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);
|
|
|
+
|
|
|
},
|
|
|
|
|
|
/* 设置默认时间选中项 */
|