dischargeGas.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  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="chartsColumnListGas"
  25. :option="echatsOption1"
  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. <span class="input-box" size="large">{{ data.ductOutletAirVolume_merge }}</span>
  34. <div class="input-title">局扇供风量(m³/min):</div>
  35. <span class="input-box" size="large">{{ data.inletAirVolume_merge }}</span>
  36. <div class="input-title">瓦斯超限浓度(%):</div>
  37. <span class="input-box" size="large">{{ props.gasMax }}</span>
  38. <div class="btn btn1" @click="onHide">隐 藏</div>
  39. <div class="btn btn1" @click="stop">紧急停止</div>
  40. </div>
  41. </div>
  42. </div>
  43. </BasicModal>
  44. </template>
  45. <script lang="ts" setup>
  46. import { BasicModal, useModalInner } from '/@/components/Modal';
  47. import { ref, nextTick, onMounted, watch } from 'vue';
  48. import { option, chartsColumnListGas, echatsOption1 } from '../fanLocal.data';
  49. import BarAndLine from '/@/components/chart/BarAndLine.vue';
  50. import { autoAdjust } from '../fanLocal.api';
  51. import { message } from 'ant-design-vue';
  52. const props = defineProps({
  53. data: {
  54. type: Object,
  55. default: () => {},
  56. },
  57. gasMax: {
  58. type: Number,
  59. },
  60. fanlocalId: {
  61. type: Number,
  62. },
  63. });
  64. const emit = defineEmits(['close', 'register', 'openModal']);
  65. // 注册 modal
  66. const [register, { closeModal }] = useModalInner((data) => {
  67. nextTick(() => {
  68. if (option['xAxis']) option['xAxis']['data'] = xData;
  69. option['series'] = yDataList;
  70. initEcharts();
  71. });
  72. });
  73. const ChartRef = ref();
  74. const myChart = ref();
  75. const refresh = ref(true);
  76. const xData: any[] = [];
  77. const yDataList: [] = [];
  78. const echartsData = ref<Record<string, any>[]>([]);
  79. const monitorData = ref<Record<string, any>>({});
  80. watch(
  81. () => props.data,
  82. (newVal) => {
  83. // 创建新对象,合并 newVal 和 targetVolume
  84. const combinedData = {
  85. gasT1: newVal.gasT1,
  86. gasT2: newVal.gasT2,
  87. gasT3: newVal.gasT3,
  88. gasT4: newVal.gasT4,
  89. readTime: newVal.readTime || new Date().toISOString(), // 确保有时间字段
  90. };
  91. monitorData.value = combinedData;
  92. if (echartsData.value.length > 20) {
  93. echartsData.value.shift();
  94. }
  95. echartsData.value = [...echartsData.value, combinedData];
  96. }
  97. );
  98. function initEcharts() {
  99. if (ChartRef.value) {
  100. myChart.value = echarts.init(ChartRef.value);
  101. option && myChart.value.setOption(option);
  102. refresh.value = false;
  103. nextTick(() => {
  104. setTimeout(() => {
  105. refresh.value = true;
  106. }, 0);
  107. });
  108. }
  109. }
  110. function onHide() {
  111. closeModal();
  112. }
  113. function stop() {
  114. const params = { auto: 0, fanlocalId: props.fanlocalId };
  115. autoAdjust(params)
  116. .then(() => {
  117. message.success('指令已下发成功!');
  118. })
  119. .catch(() => {
  120. message.error('指令下发失败');
  121. });
  122. }
  123. onMounted(() => {});
  124. function onSubmit() {
  125. emit('close');
  126. closeModal();
  127. }
  128. </script>
  129. <style scoped lang="less">
  130. .modal-box {
  131. display: flex;
  132. flex-direction: row;
  133. background-color: #ffffff05;
  134. padding: 10px 8px 0 8px;
  135. border: 1px solid #00d8ff22;
  136. position: relative;
  137. // min-height: 600px;
  138. .left-box {
  139. flex: 1; /* 占据 3/4 的空间 */
  140. background-image: url(../../../../../assets/images/dischargeGas.svg);
  141. background-repeat: no-repeat;
  142. background-size: contain; /* 确保背景图片完整显示 */
  143. background-position: center; /* 确保背景图片居中 */
  144. }
  145. .right-box {
  146. flex: 1; /* 占据 3/4 的空间 */
  147. height: 400px;
  148. width: 100%;
  149. }
  150. }
  151. .setting-box {
  152. width: 100%;
  153. height: 70px;
  154. margin: 10px 0;
  155. background-color: #ffffff05;
  156. border: 1px solid #00d8ff22;
  157. display: flex;
  158. align-items: center;
  159. justify-content: space-between;
  160. .right-inputs {
  161. width: 100%;
  162. display: flex;
  163. height: 40px;
  164. margin: 0 10px;
  165. justify-content: space-between;
  166. }
  167. .left-buttons {
  168. display: flex;
  169. height: 40px;
  170. .btn {
  171. margin: 0 10px;
  172. }
  173. }
  174. .border-clip {
  175. width: 1px;
  176. height: 25px;
  177. border-right: 1px solid #8b8b8b77;
  178. }
  179. .input-title {
  180. max-width: 150px;
  181. }
  182. .input-box {
  183. width: 120px !important;
  184. background: transparent !important;
  185. border-color: #00d8ff44 !important;
  186. margin-right: 20px;
  187. color: #fff !important;
  188. }
  189. .btn {
  190. padding: 8px 20px;
  191. position: relative;
  192. margin: 10px;
  193. border-radius: 2px;
  194. color: #fff;
  195. width: fit-content;
  196. cursor: pointer;
  197. float: right;
  198. &::before {
  199. position: absolute;
  200. display: block;
  201. content: '';
  202. width: calc(100% - 4px);
  203. height: calc(100% - 4px);
  204. top: 2px;
  205. left: 2px;
  206. border-radius: 2px;
  207. z-index: -1;
  208. }
  209. }
  210. .btn1 {
  211. border: 1px solid #5cfaff;
  212. &::before {
  213. background-image: linear-gradient(#2effee92, #0cb1d592);
  214. }
  215. &:hover {
  216. border: 1px solid #5cfaffaa;
  217. &::before {
  218. background-image: linear-gradient(#2effee72, #0cb1d572);
  219. }
  220. }
  221. }
  222. }
  223. @keyframes open {
  224. 0% {
  225. height: 0px;
  226. }
  227. 100% {
  228. height: fit-content;
  229. }
  230. }
  231. @keyframes close {
  232. 0% {
  233. height: fit-content;
  234. }
  235. 100% {
  236. height: 0px;
  237. }
  238. }
  239. :deep(.zxm-divider-inner-text) {
  240. color: #cacaca88 !important;
  241. }
  242. :deep(.zxm-form-item) {
  243. margin-bottom: 10px;
  244. }
  245. </style>