Selaa lähdekoodia

fix:表格详情不显示

chenlei 5 kuukautta sitten
vanhempi
commit
8ddf6b6050
1 muutettua tiedostoa jossa 4 lisäystä ja 1 poistoa
  1. 4 1
      src/views/sheetList/sharedDetail.vue

+ 4 - 1
src/views/sheetList/sharedDetail.vue

@@ -15,7 +15,6 @@ const { width } = useWindowSize()
 const route = useRoute()
 const router = useRouter()
 const queryData = ref({})
-const link = ref(publicSettingStore.publicSetting.ChartViewUrl);
 //显示更多操作栏
 let showMoreAction = ref(false)
 
@@ -39,6 +38,10 @@ const downExcelFileUrl = computed(() => {
     return url;
 })
 
+const link = computed(() => {
+    return publicSettingStore.publicSetting.ChartViewUrl;
+})
+
 onMounted(() => {
     getExcelDetail( 'load' )
 })