dischargeGas.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. <template>
  2. <BasicModal
  3. @register="register"
  4. title="智能排放瓦斯"
  5. :maskStyle="{ backgroundColor: '#000000aa', backdropFilter: 'blur(3px)' }"
  6. width="1600px"
  7. style="height: 60%"
  8. v-bind="$attrs"
  9. @ok="onSubmit"
  10. :canFullscreen="false"
  11. :destroyOnClose="true"
  12. :footer="null"
  13. :maskClosable="false"
  14. >
  15. <div class="modal-box">
  16. <div class="left-box" style="width: 900px; height: 400px"> </div>
  17. <div class="right-box">
  18. <!-- <div ref="ChartRef" class="line-chart" style="height: 400px; width: 100%"></div> -->
  19. <BarAndLine
  20. class="echarts-line"
  21. xAxisPropType="readTime"
  22. height="400px"
  23. :dataSource="echartsData"
  24. :chartsColumns="chartsColumnList1"
  25. :option="echatsOption"
  26. />
  27. </div>
  28. </div>
  29. <div class="setting-box">
  30. <div class="right-inputs">
  31. <div class="vent-flex-row">
  32. <div class="input-title">出风口风量(m³/min):</div>
  33. <!-- <InputNumber class="input-box" size="large" v-model:value="ductOutletAirVolume_merge" /> -->
  34. <div class="input-title">局扇供风量(m³/min):</div>
  35. <!-- <InputNumber class="input-box" size="large" v-model:value="inletAirVolume_merge" /> -->
  36. </div>
  37. </div>
  38. </div>
  39. </BasicModal>
  40. </template>
  41. <script lang="ts" setup>
  42. import { BasicModal, useModalInner } from '/@/components/Modal';
  43. import { ref, nextTick, onMounted, watch } from 'vue';
  44. import { chartsColumnList1, echatsOption } from '../fanLocal.data';
  45. import BarAndLine from '/@/components/chart/BarAndLine.vue';
  46. const props = defineProps({
  47. data: {
  48. type: Object,
  49. default: () => {},
  50. },
  51. gasMax: {
  52. type: Number,
  53. },
  54. });
  55. const emit = defineEmits(['close', 'register', 'openModal']);
  56. // 注册 modal
  57. const [register, { closeModal }] = useModalInner((data) => {
  58. nextTick(() => {
  59. // updateChart();
  60. });
  61. });
  62. const echartsData = ref([]);
  63. const monitorData = ref({});
  64. watch(
  65. () => props.data,
  66. (newVal) => {
  67. monitorData.value = newVal;
  68. if (echartsData.value.length > 20) {
  69. echartsData.value.shift();
  70. }
  71. echartsData.value = [...echartsData.value, newVal];
  72. console.log(echartsData.value);
  73. }
  74. );
  75. onMounted(() => {});
  76. function onSubmit() {
  77. emit('close');
  78. closeModal();
  79. }
  80. </script>
  81. <style scoped lang="less">
  82. .modal-box {
  83. display: flex;
  84. flex-direction: row;
  85. background-color: #ffffff05;
  86. padding: 10px 8px 0 8px;
  87. border: 1px solid #00d8ff22;
  88. position: relative;
  89. // min-height: 600px;
  90. .left-box {
  91. flex: 1; /* 占据 3/4 的空间 */
  92. background-image: url(../../../../../assets/images/dischargeGas.svg);
  93. background-repeat: no-repeat;
  94. background-size: contain; /* 确保背景图片完整显示 */
  95. background-position: center; /* 确保背景图片居中 */
  96. }
  97. .right-box {
  98. flex: 1; /* 占据 3/4 的空间 */
  99. height: 400px;
  100. width: 100%;
  101. }
  102. }
  103. .setting-box {
  104. width: 1570px;
  105. height: 70px;
  106. margin: 10px 0;
  107. background-color: #ffffff05;
  108. border: 1px solid #00d8ff22;
  109. display: flex;
  110. align-items: center;
  111. justify-content: space-between;
  112. .right-inputs {
  113. width: 100%;
  114. display: flex;
  115. height: 40px;
  116. margin: 0 10px;
  117. justify-content: space-between;
  118. }
  119. .left-buttons {
  120. display: flex;
  121. height: 40px;
  122. .btn {
  123. margin: 0 10px;
  124. }
  125. }
  126. .border-clip {
  127. width: 1px;
  128. height: 25px;
  129. border-right: 1px solid #8b8b8b77;
  130. }
  131. .input-title {
  132. max-width: 150px;
  133. }
  134. .input-box {
  135. width: 220px !important;
  136. background: transparent !important;
  137. border-color: #00d8ff44 !important;
  138. margin-right: 20px;
  139. color: #fff !important;
  140. }
  141. .btn {
  142. padding: 8px 20px;
  143. position: relative;
  144. border-radius: 2px;
  145. color: #fff;
  146. width: fit-content;
  147. cursor: pointer;
  148. &::before {
  149. position: absolute;
  150. display: block;
  151. content: '';
  152. width: calc(100% - 4px);
  153. height: calc(100% - 4px);
  154. top: 2px;
  155. left: 2px;
  156. border-radius: 2px;
  157. z-index: -1;
  158. }
  159. }
  160. .btn1 {
  161. border: 1px solid #5cfaff;
  162. &::before {
  163. background-image: linear-gradient(#2effee92, #0cb1d592);
  164. }
  165. &:hover {
  166. border: 1px solid #5cfaffaa;
  167. &::before {
  168. background-image: linear-gradient(#2effee72, #0cb1d572);
  169. }
  170. }
  171. }
  172. }
  173. @keyframes open {
  174. 0% {
  175. height: 0px;
  176. }
  177. 100% {
  178. height: fit-content;
  179. }
  180. }
  181. @keyframes close {
  182. 0% {
  183. height: fit-content;
  184. }
  185. 100% {
  186. height: 0px;
  187. }
  188. }
  189. :deep(.zxm-divider-inner-text) {
  190. color: #cacaca88 !important;
  191. }
  192. :deep(.zxm-form-item) {
  193. margin-bottom: 10px;
  194. }
  195. </style>