dischargeGas.vue 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  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. <a-modal v-model:visible="modalIsShow" :title="modalTitle" :maskStyle="{ backgroundColor: '#000000aa', backdropFilter: 'blur(3px)' }">
  44. <template #footer>
  45. <div>
  46. <a-button key="back" @click="cancel">返回</a-button>
  47. <a-button key="submit" type="primary" @click="handleOk">确定</a-button>
  48. </div>
  49. </template>
  50. <div class="modal-container">
  51. <div class="vent-flex-row">
  52. <ExclamationCircleFilled style="color: #ffb700; font-size: 30px" />
  53. <div class="warning-text">您是否要进行紧急停止操作?</div>
  54. </div>
  55. <div class="vent-flex-row input-box">
  56. <div class="label">操作密码:</div>
  57. <a-input size="small" type="password" v-model:value="passWord" style="width: 50%" />
  58. </div>
  59. </div>
  60. </a-modal>
  61. </BasicModal>
  62. </template>
  63. <script lang="ts" setup>
  64. import { BasicModal, useModalInner } from '/@/components/Modal';
  65. import { ref, nextTick, onMounted, watch } from 'vue';
  66. import { option, chartsColumnListGas, echatsOption1 } from '../fanLocal.data';
  67. import BarAndLine from '/@/components/chart/BarAndLine.vue';
  68. import { autoAdjust } from '../fanLocal.api';
  69. import { message } from 'ant-design-vue';
  70. const props = defineProps({
  71. data: {
  72. type: Object,
  73. default: () => {},
  74. },
  75. gasMax: {
  76. type: Number,
  77. },
  78. fanlocalId: {
  79. type: Number,
  80. },
  81. });
  82. const emit = defineEmits(['close', 'register', 'openModal']);
  83. // 注册 modal
  84. const [register, { closeModal }] = useModalInner((data) => {
  85. nextTick(() => {
  86. if (option['xAxis']) option['xAxis']['data'] = xData;
  87. option['series'] = yDataList;
  88. initEcharts();
  89. });
  90. });
  91. const ChartRef = ref();
  92. const myChart = ref();
  93. const refresh = ref(true);
  94. const xData: any[] = [];
  95. const yDataList: [] = [];
  96. const echartsData = ref<Record<string, any>[]>([]);
  97. const monitorData = ref<Record<string, any>>({});
  98. const modalIsShow = ref<boolean>(false); // 是否显示模态框
  99. const modalTitle = ref('');
  100. const passWord = ref('');
  101. watch(
  102. () => props.data,
  103. (newVal) => {
  104. // 创建新对象,合并 newVal 和 targetVolume
  105. const combinedData = {
  106. gasT1: newVal.gasT1,
  107. gasT2: newVal.gasT2,
  108. gasT3: newVal.gasT3,
  109. gasT4: newVal.gasT4,
  110. readTime: newVal.readTime || new Date().toISOString(), // 确保有时间字段
  111. };
  112. monitorData.value = combinedData;
  113. if (echartsData.value.length > 20) {
  114. echartsData.value.shift();
  115. }
  116. echartsData.value = [...echartsData.value, combinedData];
  117. }
  118. );
  119. function initEcharts() {
  120. if (ChartRef.value) {
  121. myChart.value = echarts.init(ChartRef.value);
  122. option && myChart.value.setOption(option);
  123. refresh.value = false;
  124. nextTick(() => {
  125. setTimeout(() => {
  126. refresh.value = true;
  127. }, 0);
  128. });
  129. }
  130. }
  131. function onHide() {
  132. closeModal();
  133. }
  134. function stop() {
  135. modalIsShow.value = true;
  136. passWord.value == '';
  137. }
  138. function cancel() {
  139. modalIsShow.value = false;
  140. }
  141. function handleOk() {
  142. if (passWord.value == '') {
  143. message.warning('请输入密码!');
  144. return;
  145. }
  146. handerFn();
  147. }
  148. function handerFn() {
  149. if (passWord.value != '123456') {
  150. message.error('密码错误,请重新输入!');
  151. return;
  152. }
  153. const params = { auto: 0, fanlocalId: props.fanlocalId };
  154. autoAdjust(params)
  155. .then(() => {
  156. message.success('指令已下发成功!');
  157. modalIsShow.value = false;
  158. passWord.value == '';
  159. })
  160. .catch(() => {
  161. message.error('指令下发失败');
  162. });
  163. }
  164. onMounted(() => {});
  165. function onSubmit() {
  166. emit('close');
  167. closeModal();
  168. }
  169. </script>
  170. <style scoped lang="less">
  171. .modal-box {
  172. display: flex;
  173. flex-direction: row;
  174. background-color: #ffffff05;
  175. padding: 10px 8px 0 8px;
  176. border: 1px solid #00d8ff22;
  177. position: relative;
  178. // min-height: 600px;
  179. .left-box {
  180. flex: 1; /* 占据 3/4 的空间 */
  181. background-image: url(../../../../../assets/images/dischargeGas.svg);
  182. background-repeat: no-repeat;
  183. background-size: contain; /* 确保背景图片完整显示 */
  184. background-position: center; /* 确保背景图片居中 */
  185. }
  186. .right-box {
  187. flex: 1; /* 占据 3/4 的空间 */
  188. height: 400px;
  189. width: 100%;
  190. }
  191. }
  192. .setting-box {
  193. width: 100%;
  194. height: 70px;
  195. margin: 10px 0;
  196. background-color: #ffffff05;
  197. border: 1px solid #00d8ff22;
  198. display: flex;
  199. align-items: center;
  200. justify-content: space-between;
  201. .right-inputs {
  202. width: 100%;
  203. display: flex;
  204. height: 40px;
  205. margin: 0 10px;
  206. justify-content: space-between;
  207. }
  208. .left-buttons {
  209. display: flex;
  210. height: 40px;
  211. .btn {
  212. margin: 0 10px;
  213. }
  214. }
  215. .border-clip {
  216. width: 1px;
  217. height: 25px;
  218. border-right: 1px solid #8b8b8b77;
  219. }
  220. .input-title {
  221. max-width: 150px;
  222. }
  223. .input-box {
  224. width: 120px !important;
  225. background: transparent !important;
  226. border-color: #00d8ff44 !important;
  227. margin-right: 20px;
  228. color: #fff !important;
  229. }
  230. .btn {
  231. padding: 8px 20px;
  232. position: relative;
  233. margin: 10px;
  234. border-radius: 2px;
  235. color: #fff;
  236. width: fit-content;
  237. cursor: pointer;
  238. float: right;
  239. &::before {
  240. position: absolute;
  241. display: block;
  242. content: '';
  243. width: calc(100% - 4px);
  244. height: calc(100% - 4px);
  245. top: 2px;
  246. left: 2px;
  247. border-radius: 2px;
  248. z-index: -1;
  249. }
  250. }
  251. .btn1 {
  252. border: 1px solid #5cfaff;
  253. &::before {
  254. background-image: linear-gradient(#2effee92, #0cb1d592);
  255. }
  256. &:hover {
  257. border: 1px solid #5cfaffaa;
  258. &::before {
  259. background-image: linear-gradient(#2effee72, #0cb1d572);
  260. }
  261. }
  262. }
  263. }
  264. @keyframes open {
  265. 0% {
  266. height: 0px;
  267. }
  268. 100% {
  269. height: fit-content;
  270. }
  271. }
  272. @keyframes close {
  273. 0% {
  274. height: fit-content;
  275. }
  276. 100% {
  277. height: 0px;
  278. }
  279. }
  280. :deep(.zxm-divider-inner-text) {
  281. color: #cacaca88 !important;
  282. }
  283. :deep(.zxm-form-item) {
  284. margin-bottom: 10px;
  285. }
  286. </style>