|
@@ -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' )
|
|
|
})
|