emergencyManage.vue 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <template>
  2. <div class="emergency-manage">
  3. <rightMediumTitleContent title="风险处置分析">
  4. <div class="right-button-box" @click="handleClose">
  5. <img
  6. class="image-box"
  7. src="../../../../../assets/img/a-shouqi1 1@2x.png"
  8. />收起
  9. </div>
  10. </rightMediumTitleContent>
  11. </div>
  12. </template>
  13. <script setup>
  14. import rightMediumTitleContent from "../../common/RightMediumTitleContent.vue";
  15. import { useRightPanelStore } from "@/store/rightPanel";
  16. const rightPanelStore = useRightPanelStore();
  17. const handleClose = () => {
  18. rightPanelStore.emergencyVisible = false;
  19. };
  20. </script>
  21. <style lang="scss" scoped>
  22. .emergency-manage {
  23. position: fixed;
  24. top: 120px;
  25. right: 600px;
  26. width: 554px;
  27. height: 936px;
  28. background: linear-gradient(180deg, #244d86 2%, #0a121e 100%);
  29. box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.5);
  30. border-radius: 0px 0px 0px 0px;
  31. z-index: 99;
  32. border: 1px solid;
  33. border-image: linear-gradient(
  34. 180deg,
  35. rgba(0, 150, 255, 1),
  36. rgba(7, 108, 208, 1)
  37. )
  38. 1 1;
  39. .right-button-box {
  40. position: absolute;
  41. display: flex;
  42. align-items: center;
  43. right: 10px;
  44. top: 50%;
  45. cursor: pointer;
  46. transform: translateY(-80%);
  47. color: #08ffe5;
  48. font-size: 18px;
  49. .image-box {
  50. width: 20px;
  51. height: 18px;
  52. margin-right: 5px;
  53. }
  54. }
  55. &::after {
  56. position: absolute;
  57. content: "";
  58. left: 10%;
  59. right: 10%;
  60. bottom: 0;
  61. height: 2px;
  62. background-image: url("../../../../../assets/img/image-bottom.png");
  63. background-size: 100% 100%;
  64. }
  65. }
  66. </style>