|
@@ -14,7 +14,8 @@ import AddChartToMyETA from './components/AddChartToMyETA.vue'
|
|
|
import SetChartEnName from './components/SetChartEnName.vue'
|
|
|
import {useCachedViewsStore} from '@/store/modules/cachedViews'
|
|
|
import { setExtremumDate } from '@/hooks/chart/commonFun.js'
|
|
|
-
|
|
|
+import {chartLibBtn,useAuthBtn} from '@/hooks/useAuthBtn'
|
|
|
+const {checkAuthBtn} = useAuthBtn()
|
|
|
import _ from 'lodash';
|
|
|
|
|
|
|
|
@@ -260,48 +261,68 @@ function handleShowSourceDetail(){
|
|
|
let showMoreAction = ref(false)
|
|
|
let chartActions = ref([])
|
|
|
function getChartActions(chartInfo){
|
|
|
- return [
|
|
|
+ //加上权限判断
|
|
|
+ const actionsArr = [
|
|
|
{
|
|
|
type:'refresh',
|
|
|
label:'刷新',
|
|
|
- show:true
|
|
|
+ show:true,
|
|
|
+ btnCode:chartLibBtn.chartLib_refresh
|
|
|
},
|
|
|
{
|
|
|
type:'share',
|
|
|
label:'分享',
|
|
|
- show:!Boolean(chartInfo.Disabled)
|
|
|
+ show:!Boolean(chartInfo.Disabled),
|
|
|
+ btnCode:chartLibBtn.chartLib_share
|
|
|
},
|
|
|
{
|
|
|
type:'save',
|
|
|
label:'保存',
|
|
|
show:true,
|
|
|
+ btnCode:chartLibBtn.chartLib_save
|
|
|
},
|
|
|
{
|
|
|
type:'saveOther',
|
|
|
label:'另存为',
|
|
|
- show:true
|
|
|
+ show:true,
|
|
|
+ btnCode:chartLibBtn.chartLib_otherSave
|
|
|
},
|
|
|
{
|
|
|
type:'savePic',
|
|
|
label:'保存图片',
|
|
|
- show:true
|
|
|
+ show:true,
|
|
|
},
|
|
|
{
|
|
|
type:'setEnName',
|
|
|
label:'设置英文名称',
|
|
|
- show:true
|
|
|
+ show:true,
|
|
|
+ btnCode:chartLibBtn.chartLib_enNameSetting
|
|
|
},
|
|
|
{
|
|
|
type:'addToMyETA',
|
|
|
label:'加入我的图库',
|
|
|
- show:true
|
|
|
+ show:true,
|
|
|
+ btnCode:chartLibBtn.chartLib_addMy
|
|
|
},
|
|
|
{
|
|
|
type:'delete',
|
|
|
label:'删除',
|
|
|
- show:chartInfo.IsEdit
|
|
|
+ show:chartInfo.IsEdit,
|
|
|
+ btnCode:chartLibBtn.chartLib_del
|
|
|
}
|
|
|
]
|
|
|
+ let currentArr=[]
|
|
|
+ actionsArr.forEach(item=>{
|
|
|
+ if(item.btnCode&&checkAuthBtn(item.btnCode)){
|
|
|
+ currentArr.push(item)
|
|
|
+ }
|
|
|
+ if(item.type==='savePic'){
|
|
|
+ if(checkAuthBtn(chartLibBtn.chartLib_copyWechat)&&checkAuthBtn(chartLibBtn.chartLib_copyOffice)){
|
|
|
+ currentArr.push(item)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
+ return currentArr
|
|
|
}
|
|
|
|
|
|
function handleActionClick(action){
|
|
@@ -686,7 +707,7 @@ function openDateSelect(){
|
|
|
</span>
|
|
|
</div>
|
|
|
<div class="right-action-box">
|
|
|
- <div class="item" @click="showMoreAction=true" >
|
|
|
+ <div class="item" @click="showMoreAction=true" v-if="chartActions.length">
|
|
|
<img src="@/assets/imgs/chartETA/more-icon.png" alt="">
|
|
|
<span>更多设置</span>
|
|
|
</div>
|
|
@@ -726,7 +747,7 @@ function openDateSelect(){
|
|
|
<!-- 指标模块 -->
|
|
|
<div class="edb-list-box">
|
|
|
<!-- pad 设置上下限按钮 -->
|
|
|
- <div class="pad-limit-set-btn" @click="handleShowAxisLimitOpt" v-if="![3,4,6,7,8,9].includes(chartInfo.Source)">设置上下限</div>
|
|
|
+ <div class="pad-limit-set-btn" @click="handleShowAxisLimitOpt" v-if="![3,4,6,7,8,9].includes(chartInfo.Source)&&checkAuthBtn(chartLibBtn.chartLib_editLimit)">设置上下限</div>
|
|
|
<!-- <div class="list-lable">指标信息</div> -->
|
|
|
<div class="list-box">
|
|
|
<div class="list-item" v-for="item in edbList" :key="item.EdbInfoId" @click="handleShowEDBInfo(item)">
|
|
@@ -746,11 +767,11 @@ function openDateSelect(){
|
|
|
<img class="icon" style="transform: rotate(180deg);" src="@/assets/imgs/icon_arrow.png" alt="">
|
|
|
<div>下一张</div>
|
|
|
</div>
|
|
|
- <div class="item" @click="handleShowAxisLimitOpt" v-if="![3,4,6,7,8,9].includes(chartInfo.Source)">
|
|
|
+ <div class="item" @click="handleShowAxisLimitOpt" v-if="![3,4,6,7,8,9].includes(chartInfo.Source)&&checkAuthBtn(chartLibBtn.chartLib_editLimit)">
|
|
|
<img class="icon" src="@/assets/imgs/myETA/icon_limit.png" alt="">
|
|
|
<div>上下限</div>
|
|
|
</div>
|
|
|
- <div class="item" @click="showMoreAction=true">
|
|
|
+ <div class="item" @click="showMoreAction=true" v-if="chartActions.length">
|
|
|
<img class="icon" src="@/assets/imgs/myETA/icon_menu.png" alt="">
|
|
|
<div>更多</div>
|
|
|
</div>
|