index.vue 985 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <div class="right_container">
  3. <reportHandle v-if="commonStore.activeIndex == 0"></reportHandle>
  4. <handleProcess v-if="commonStore.activeIndex == 1"></handleProcess>
  5. <warningDialog/>
  6. </div>
  7. </template>
  8. <script setup>
  9. import { ref, watch, reactive, toRefs, onBeforeMount, onMounted } from "vue";
  10. import reportHandle from "./components/reportHandle/index.vue";
  11. import handleProcess from "./components/handleProcess/index.vue";
  12. import warningDialog from "./components/warningDialog.vue";
  13. import { useCommonStore } from "@/store/common.js";
  14. let commonStore = useCommonStore();
  15. //activeIndex: 0表示报告处置 1处置进展
  16. watch(
  17. () => commonStore.activeIndex,
  18. (newActiveIndex, oldActiveIndex) => {
  19. console.log(newActiveIndex, "newActiveIndex");
  20. },
  21. {
  22. deep: true,
  23. // immediate: true
  24. }
  25. );
  26. </script>
  27. <style lang="scss" scoped>
  28. .right_container {
  29. box-sizing: border-box;
  30. color: aliceblue;
  31. * {
  32. box-sizing: border-box;
  33. }
  34. }
  35. </style>