warningDialog.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. <template>
  2. <div class="warning-container">
  3. <div class="warning-dialog">
  4. <div class="header-box">
  5. <span class="title">收到新的风险报告,请尽快处置</span>
  6. <div class="right-time">{{ getNewTime() }}</div>
  7. </div>
  8. <div class="content-box">
  9. <div class="left-box">
  10. <div class="text">长宁区关于不明原因肺炎的报告</div>
  11. <div class="num">3例</div>
  12. </div>
  13. <div class="right-box">
  14. <div class="text">上海市疾控报告</div>
  15. </div>
  16. </div>
  17. </div>
  18. <div class="button-box">
  19. <div class="button-item">
  20. <div class="content">暂时忽略</div>
  21. </div>
  22. <div class="button-item"><div class="content">立即查看</div></div>
  23. </div>
  24. </div>
  25. </template>
  26. <script setup>
  27. const getNewTime = () => {
  28. return (
  29. new Date().toLocaleDateString() +
  30. " " +
  31. new Date().toLocaleTimeString().slice(0, 5)
  32. );
  33. };
  34. </script>
  35. <style lang="scss" scope>
  36. .warning-container {
  37. position: fixed;
  38. right: 1420px;
  39. top: 170px;
  40. .warning-dialog {
  41. width: 702px;
  42. height: 84px;
  43. z-index: 9;
  44. background-image: url("../../../assets/img/框@2x.png");
  45. background-size: 100% 100%;
  46. .header-box {
  47. position: relative;
  48. height: 26px;
  49. font-family: YouSheBiaoTiHei;
  50. padding-left: 40px;
  51. .title {
  52. font-size: 24px;
  53. line-height: 26px;
  54. text-align: left;
  55. font-style: normal;
  56. text-transform: none;
  57. background: linear-gradient(to bottom, #ffffff 10%, #ffe6e6 100%);
  58. -webkit-background-clip: text;
  59. -webkit-text-fill-color: transparent;
  60. }
  61. .right-time {
  62. position: absolute;
  63. right: 50px;
  64. top: 50%;
  65. transform: translateY(-50%);
  66. }
  67. &::after {
  68. position: absolute;
  69. content: "";
  70. left: 10px;
  71. width: 27px;
  72. height: 24px;
  73. top: 50%;
  74. transform: translateY(-50%);
  75. background-image: url("../../../assets/img/提示图@2x.png");
  76. background-size: 100% 100%;
  77. }
  78. }
  79. .content-box {
  80. display: flex;
  81. align-items: center;
  82. justify-content: space-between;
  83. height: calc(100% - 26px);
  84. padding: 0 15px;
  85. .text {
  86. font-family: Alibaba PuHuiTi;
  87. font-weight: normal;
  88. font-size: 18px;
  89. line-height: 26px;
  90. color: #ffffff;
  91. text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  92. text-align: left;
  93. font-style: normal;
  94. text-transform: none;
  95. }
  96. .left-box {
  97. display: flex;
  98. align-items: center;
  99. .num {
  100. line-height: 1;
  101. height: 25px;
  102. line-height: 26px;
  103. font-family: Alibaba PuHuiTi;
  104. font-weight: normal;
  105. font-size: 24px;
  106. text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  107. text-align: left;
  108. font-style: normal;
  109. text-transform: none;
  110. background: linear-gradient(
  111. 89.99999989586553deg,
  112. #ffffff 0%,
  113. #ffdf6c 100%
  114. );
  115. -webkit-background-clip: text;
  116. -webkit-text-fill-color: transparent;
  117. }
  118. }
  119. .right-box {
  120. .text {
  121. font-size: 16px;
  122. }
  123. }
  124. }
  125. }
  126. .button-box {
  127. display: flex;
  128. justify-content: flex-end;
  129. .button-item {
  130. display: flex;
  131. justify-content: center;
  132. align-items: center;
  133. width: 102px;
  134. height: 42px;
  135. background-image: url("../../../assets/img/tips@2x.png");
  136. background-size: 100% 100%;
  137. padding-right: 5px;
  138. padding-bottom: 5px;
  139. margin-top: 10px;
  140. margin-left: 10px;
  141. cursor: pointer;
  142. .content {
  143. font-family: YouSheBiaoTiHei;
  144. font-weight: 400;
  145. font-size: 20px;
  146. line-height: 20px;
  147. // text-shadow: 0px 2px 5px #001751;
  148. text-align: center;
  149. font-style: normal;
  150. text-transform: none;
  151. background: linear-gradient(
  152. 89.99999804120293deg,
  153. #ffffff 0%,
  154. #a4e9ff 100%
  155. );
  156. -webkit-background-clip: text;
  157. -webkit-text-fill-color: transparent;
  158. }
  159. }
  160. }
  161. }
  162. </style>