App.vue 963 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <!--
  2. * @Author: your name
  3. * @Date: 2021-10-14 17:17:53
  4. * @LastEditTime: 2022-03-09 11:41:56
  5. * @LastEditors: your name
  6. * @Description: In User Settings Edit
  7. * @FilePath: \Foshan4A\src\App.vue
  8. -->
  9. <template>
  10. <div id="app">
  11. <router-view />
  12. </div>
  13. </template>
  14. <script>
  15. export default {
  16. name: 'App',
  17. watch: {
  18. $route: {
  19. // 监听路由变化 一级菜单时清除子路由缓存的数据
  20. handler: function (val) {
  21. const path = val.path.split('/')
  22. if (path.length <= 2) {
  23. sessionStorage.removeItem('collectionData')
  24. sessionStorage.removeItem('editIBMMQ')
  25. }
  26. this.$store.dispatch("auth/changeAuthMsg", []);
  27. this.$store.dispatch("auth/changeAuthArrs", []);
  28. this.$store.dispatch("auth/changeAuthList", []);
  29. this.$store.dispatch("auth/changeAuthId", null);
  30. this.$store.dispatch("auth/changeAuthStatus", []);
  31. },
  32. deep: true
  33. }
  34. }
  35. }
  36. </script>