db 2 years ago
parent
commit
29ea7bfe61
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/views/cygx/strategyReport.vue

+ 1 - 1
src/views/cygx/strategyReport.vue

@@ -4,7 +4,7 @@ import { useRoute } from "vue-router";
 const route = useRoute();
 const srcUrl = ref("");
 onMounted(() => {
-  srcUrl.value = route.query.url
+  srcUrl.value = decodeURIComponent(route.query.url) 
 });
 </script>