Browse Source

我的图库中平衡表图表兼容

jwyu 10 months ago
parent
commit
75f7ce0a48
2 changed files with 29 additions and 12 deletions
  1. 13 0
      src/api/sheet.js
  2. 16 12
      src/views/myETA/ChartDetail.vue

+ 13 - 0
src/api/sheet.js

@@ -26,5 +26,18 @@ export default {
      */
     sheetList(params){
         return get('/datamanage/excel_info/list',params)
+    },
+
+    /**
+     * 表格刷新
+     * ExcelInfoId
+    */
+    sheetRefresh(params){
+        return get('/datamanage/excel_info/table/refresh',params)
+    },
+
+    // 平衡表中图表删除
+    balanceSheetChartDel(params){
+        return post('/datamanage/excel_info/balance/chart_del',params)
     }
 }

+ 16 - 12
src/views/myETA/ChartDetail.vue

@@ -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)">