asd26269546 2 years ago
parent
commit
2d4c6e7db5
2 changed files with 3 additions and 1 deletions
  1. 2 0
      src/layout/components/AppMain.vue
  2. 1 1
      src/views/process/processApproval/index.vue

+ 2 - 0
src/layout/components/AppMain.vue

@@ -3,6 +3,7 @@
     <router-view v-slot="{ Component, route }">
       <transition name="fade-transform" mode="out-in">
         <keep-alive :include="tagsViewStore.cachedViews">
+          
           <component v-if="!route.meta.link" :is="Component" :key="route.path"/>
         </keep-alive>
       </transition>
@@ -16,6 +17,7 @@ import iframeToggle from "./IframeToggle/index"
 import useTagsViewStore from '@/store/modules/tagsView'
 
 const tagsViewStore = useTagsViewStore()
+console.log(tagsViewStore)
 </script>
 
 <style lang="scss" scoped>

+ 1 - 1
src/views/process/processApproval/index.vue

@@ -128,7 +128,7 @@
   </div>
 </template>
 
-<script setup>
+<script setup name='ProcessApproval'>
 import { useRouter, useRoute } from "vue-router";
 //申购发起
 import SendSubscribe from "@/components/process/SendSubscribe";