|
@@ -9,6 +9,7 @@ import apiStatisticFeatureChart from '@/api/statisticFeatureChart'
|
|
|
import apiCrossVarietyChart from '@/api/crossVarietyChart'
|
|
|
import apiMyETAChart from '@/api/myETA'
|
|
|
import apiDataEDB from '@/api/dataEDB'
|
|
|
+import apiSheet from '@/api/sheet'
|
|
|
import { useRoute, useRouter } from 'vue-router'
|
|
|
import {useChartRender} from '@/hooks/chart/render'
|
|
|
import {yearSelectOpt,sameOptionType} from '@/hooks/chart/config'
|
|
@@ -522,20 +523,21 @@ function handleDeleteChart(){
|
|
|
title: '提示',
|
|
|
message: '删除后该图表将不能再引用,确认删除吗?',
|
|
|
showCancelButton:true
|
|
|
- }).then(() => {
|
|
|
+ }).then(async () => {
|
|
|
// on close
|
|
|
- apiMyETAChart.chartDel({
|
|
|
+ const res=chartInfo.value.Source===11?await apiSheet.balanceSheetChartDel({
|
|
|
+ ChartInfoId:chartInfo.value.ChartInfoId
|
|
|
+ }):await apiMyETAChart.chartDel({
|
|
|
ChartInfoId:chartInfo.value.ChartInfoId
|
|
|
- }).then(res=>{
|
|
|
- if(res.Ret===200){
|
|
|
- showToast('删除成功')
|
|
|
- cachedViewsStore.removeCaches('MyETAIndex')
|
|
|
- cachedViewsStore.removeCaches('MyETASearchList')
|
|
|
- setTimeout(() => {
|
|
|
- router.back()
|
|
|
- }, 1500)
|
|
|
- }
|
|
|
})
|
|
|
+ if(res.Ret===200){
|
|
|
+ showToast('删除成功')
|
|
|
+ cachedViewsStore.removeCaches('MyETAIndex')
|
|
|
+ cachedViewsStore.removeCaches('MyETASearchList')
|
|
|
+ setTimeout(() => {
|
|
|
+ router.back()
|
|
|
+ }, 1500)
|
|
|
+ }
|
|
|
}).catch(()=>{})
|
|
|
}
|
|
|
|
|
@@ -558,6 +560,8 @@ async function handleChartRefresh(){
|
|
|
res=await apiStatisticFeatureChart.refreshChart({ ChartInfoId })
|
|
|
}else if(Source===10) {
|
|
|
res=await apiCrossVarietyChart.refreshChart({ ChartInfoId })
|
|
|
+ }else if(Source===11){
|
|
|
+ res=await apiSheet.sheetRefresh({ChartInfoId})
|
|
|
}
|
|
|
if(res.Ret!==200)return
|
|
|
showToast('刷新成功')
|
|
@@ -1066,7 +1070,7 @@ const isShowAddToMyETADialog=ref(false)
|
|
|
<div class="item" @click.stop="isShowAddToMyETADialog=true" v-if="$route.query.from==='edbRelationChart'">
|
|
|
加入我的图库
|
|
|
</div>
|
|
|
- <div class="item" @click.stop="showSaveChartOther=true" v-if="chartInfo.Button.IsCopy&&checkAuthBtn(myETABtn.myChart_otherSave)">
|
|
|
+ <div class="item" @click.stop="showSaveChartOther=true" v-if="chartInfo.Button.IsCopy&&checkAuthBtn(myETABtn.myChart_otherSave)&&chartInfo.Source!==11">
|
|
|
另存为
|
|
|
</div>
|
|
|
<div class="item" @click.stop="handleChartSavePicture" v-if="!chartInfo.Disabled&&checkAuthBtn(myETABtn.myChart_copyWechat)&&checkAuthBtn(myETABtn.myChart_copyOffice)">
|