index.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. <template>
  2. <div class="fireMonitor">
  3. <div class="top-box">
  4. <div class="table-box">
  5. <basicSensor :sensorTitle="sensorTitle" :sensorList="sensorList" :headList="headList" />
  6. </div>
  7. <div class="table-box">
  8. <basicSensor :sensorTitle="sensorTitle1" :sensorList="sensorList1" :headList="headList" />
  9. </div>
  10. <div class="table-box">
  11. <basicSensor :sensorTitle="sensorTitle2" :sensorList="sensorList2" :headList="headList" />
  12. </div>
  13. </div>
  14. <div class="bot-box">
  15. <div class="bot-item-title">
  16. <div class="item-left">光钎测温系统温度实时监测</div>
  17. <a-select style="width: 180px" :options="gxSelectList" size="small" placeholder="请选择" v-model:value="gxSelect"
  18. allowClear @change="pointChange"></a-select>
  19. </div>
  20. <div class="bot-item-content">
  21. <basicEchartLine :gridV="gridV" :echartData="echartDataGx"></basicEchartLine>
  22. </div>
  23. </div>
  24. </div>
  25. </template>
  26. <script setup lang="ts">
  27. import { ref, reactive, onMounted } from 'vue'
  28. import basicSensor from '../../common/basicSensor.vue';
  29. import { getYwRealData, getHyRealData, getPfmhRealData, getGxcwHistoryDataByPointCode, getInfosByAreaCode } from './fireMonitor.api'
  30. let sensorTitle = ref('烟雾传感器监测');
  31. let sensorTitle1 = ref('火焰传感器监测');
  32. let sensorTitle2 = ref('电磁阀开关量监测');
  33. let headList = reactive([
  34. { id: 0, title: '测点位置' },
  35. { id: 1, title: '预警级别' },
  36. { id: 2, title: '时间' },
  37. ]);
  38. let sensorList = reactive<any[]>([])
  39. let sensorList1 = reactive<any[]>([])
  40. let sensorList2 = reactive<any[]>([])
  41. let gxSelect = ref('')
  42. let gxSelectList = reactive<any[]>([])
  43. let gridV = reactive({
  44. top: '8%',
  45. left: '3%',
  46. right: '3%',
  47. bottom: '10%',
  48. })
  49. let echartDataGx = reactive(
  50. {
  51. xData: [],
  52. yData: [],
  53. yData1: [],
  54. legendName: ['最高温度', '最低温度']
  55. }
  56. )
  57. //获取烟雾传感器监测数据
  58. async function getYwRealDataList() {
  59. let res = await getYwRealData({ areaCode: 'zybds001' })
  60. console.log(res, '烟雾传感器数据------------')
  61. if(res.length!=0){
  62. sensorList.length=0
  63. res.forEach(el=>{
  64. el.isOpens=el.isOpen=='0' ? '正常' : '关闭'
  65. sensorList.push({name:el.pointName,warn:el.isOpens,times:el.time})
  66. })
  67. }
  68. }
  69. //获取火焰传感器监测数据
  70. async function getHyRealDataList() {
  71. let res = await getHyRealData({ areaCode: 'zybds001' })
  72. console.log(res, '火焰传感器数据------')
  73. if(res.length!=0){
  74. sensorList1.length=0
  75. res.forEach(el=>{
  76. el.isOpens=el.isOpen=='0' ? '正常' : '关闭'
  77. sensorList1.push({name:el.pointName,warn:el.isOpens,times:el.time})
  78. })
  79. }
  80. }
  81. //获取喷粉灭火装置数据
  82. async function getPfmhRealDataList() {
  83. let res = await getPfmhRealData({ areaCode: 'zybds001' })
  84. console.log(res, '喷粉灭火装置数据---')
  85. if(res.length!=0){
  86. sensorList2.length=0
  87. res.forEach(el=>{
  88. el.isOpens=el.isOpen=='0' ? '正常' : '关闭'
  89. sensorList2.push({name:el.pointName,warn:el.isOpens,times:el.time})
  90. })
  91. }
  92. }
  93. //获取工作面光钎条数及测点编号
  94. async function getInfosByAreaCodeList() {
  95. let res = await getInfosByAreaCode({ areaCode: 'zybds001' })
  96. if (res.length != 0) {
  97. gxSelectList.length = 0
  98. res.forEach(el => {
  99. gxSelectList.push({
  100. label: el.pointName,
  101. value: el.pointCode,
  102. })
  103. })
  104. gxSelect.value = gxSelect.value ? gxSelect.value : res[0]['pointCode']
  105. //获取光钎测温图表数据
  106. getGxcwHistoryDataByPointCodeList()
  107. }
  108. }
  109. //获取光钎测温图表数据
  110. async function getGxcwHistoryDataByPointCodeList() {
  111. let res = await getGxcwHistoryDataByPointCode({ pointCode: gxSelect.value })
  112. echartDataGx.xData.length = 0
  113. echartDataGx.yData.length = 0
  114. echartDataGx.yData1.length = 0
  115. res.time.forEach(el => {
  116. echartDataGx.xData.push(el)
  117. })
  118. res.maxValue.forEach(el => {
  119. echartDataGx.yData.push(el)
  120. })
  121. res.minValue.forEach(el => {
  122. echartDataGx.yData1.push(el)
  123. })
  124. }
  125. //工作面光钎测温测点编号选项切换
  126. function pointChange(val) {
  127. gxSelect.value = val
  128. getGxcwHistoryDataByPointCodeList()
  129. }
  130. onMounted(() => {
  131. getYwRealDataList()
  132. getHyRealDataList()
  133. getPfmhRealDataList()
  134. getInfosByAreaCodeList()
  135. })
  136. </script>
  137. <style lang="less" scoped>
  138. .fireMonitor {
  139. position: relative;
  140. width: calc(100% - 20px);
  141. height: 928px;
  142. margin: 0 10px;
  143. background-color: rgb(27 35 39 / 80%);
  144. .top-box {
  145. display: flex;
  146. box-sizing: border-box;
  147. justify-content: space-between;
  148. width: 100%;
  149. height: calc(70% - 2px);
  150. margin-bottom: 2px;
  151. padding: 10px 0;
  152. .table-box {
  153. width: 33%;
  154. height: 100%;
  155. }
  156. }
  157. .bot-box {
  158. width: 100%;
  159. height: 30%;
  160. .bot-item-title {
  161. display: flex;
  162. box-sizing: border-box;
  163. align-items: center;
  164. justify-content: space-between;
  165. height: 40px;
  166. padding: 10px;
  167. background: rgb(41 49 53 / 80%);
  168. .item-left {
  169. color: #fff;
  170. font-family: "Microsoft YaHei", sans-serif;
  171. font-size: 16px;
  172. }
  173. }
  174. .bot-item-content {
  175. box-sizing: border-box;
  176. height: calc(100% - 30px);
  177. padding: 10px;
  178. background: rgb(41 49 53 / 80%);
  179. }
  180. }
  181. }
  182. :deep(.vMonitor-select-selector) {
  183. border: none !important;
  184. background-color: rgb(15 64 88) !important;
  185. color: #a1dff8 !important;
  186. }
  187. :deep(.vMonitor-select-selection-placeholder) {
  188. color: #a1dff8 !important;
  189. }
  190. :deep(.vMonitor-select-arrow) {
  191. color: #a1dff8 !important;
  192. }
  193. </style>