index.vue 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. <template>
  2. <div class="bg"
  3. style="width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; overflow: hidden">
  4. <a-spin :spinning="loading" />
  5. <div id="grout3D" v-show="!loading" style="width: 100%; height: 100%; position: absolute; overflow: hidden"> </div>
  6. <!-- <div id="damper3DCSS" v-show="!loading" style="width: 100%; height: 100%; top:0; left: 0; position: absolute; overflow: hidden;">
  7. <div>
  8. <div ref="elementContent" class="elementContent">
  9. <p><span class="data-title">压力(Pa):</span>{{selectData.frontRearDP}}</p>
  10. <p><span class="data-title">动力源压力(MPa):</span>{{selectData.sourcePressure}}</p>
  11. <p><span class="data-title">故障诊断:</span>
  12. <i
  13. :class="{'state-icon': true, 'open': selectData.messageBoxStatus, 'close': !selectData.messageBoxStatus}"
  14. ></i>{{selectData.fault}}</p>
  15. </div>
  16. </div>
  17. </div> -->
  18. </div>
  19. <div class="scene-box">
  20. <customHeader :fieldNames="{ label: 'strinstallpos', value: 'deviceID', options: 'children' }" :options = 'options' @change="getSelectRow" :optionValue="optionValue">智能注浆系统</customHeader>
  21. <div class="center-container">
  22. <groutHome v-if="activeKey == 'monitor'" :deviceId = 'optionValue' />
  23. <div v-else class="history-group">
  24. <div class="device-button-group" v-if="deviceList.length > 0">
  25. <div class="device-button" :class="{ 'device-active': deviceActive == device.deviceType }" v-for="(device, index) in deviceList" :key="index" @click="deviceChange(index)">{{ device.deviceName }}</div>
  26. </div>
  27. <div class="history-container">
  28. <groutHistory v-if="activeKey == 'monitor_history'" ref="historyTable" class="vent-margin-t-20" :deviceId = 'optionValue' :device-type="deviceType"/>
  29. <groutHandleHistoryVue v-if="activeKey == 'handler_history'" ref="alarmHistoryTable" class="vent-margin-t-20" :deviceId = 'optionValue' :device-type="deviceType" />
  30. <groutAlarmHistory v-if="activeKey == 'faultRecord'" ref="handlerHistoryTable" class="vent-margin-t-20" :deviceId = 'optionValue' :device-type="deviceType"/>
  31. </div>
  32. </div>
  33. </div>
  34. <BottomMenu @change="changeActive"/>
  35. </div>
  36. </template>
  37. <script setup lang="ts">
  38. import customHeader from '/@/views/vent/comment/components/customHeader.vue';
  39. import { onBeforeMount, ref, onMounted, onUnmounted, reactive, toRaw } from 'vue';
  40. import { list } from './grout.api';
  41. import BottomMenu from '/@/views/vent/comment/components/bottomMenu.vue';
  42. import groutHome from './components/groutHome.vue';
  43. import groutHistory from './components/groutHistory.vue';
  44. import groutHandleHistoryVue from './components/groutHandleHistory.vue';
  45. import groutAlarmHistory from './components/groutAlarmHistory.vue';
  46. type DeviceType = { deviceType: string, deviceName: string, datalist: any[] };
  47. const activeKey = ref('monitor');
  48. const loading = ref(false);
  49. const monitorTable = ref()
  50. const historyTable = ref()
  51. const alarmHistoryTable = ref()
  52. const handlerHistoryTable = ref()
  53. //关联设备
  54. const deviceList = ref<DeviceType[]>([])
  55. const deviceActive = ref('')
  56. const deviceType = ref('')
  57. const options = ref()
  58. // 默认初始是第一行
  59. const selectRowIndex = ref(0);
  60. const dataSource = ref([])
  61. const optionValue = ref('')
  62. // 监测数据
  63. const selectData = reactive({});
  64. function changeActive(activeValue) {
  65. activeKey.value = activeValue
  66. }
  67. function deviceChange(index) {
  68. deviceActive.value = deviceType.value = deviceList.value[index].deviceType
  69. }
  70. // 查询关联设备列表
  71. async function getDeviceList() {
  72. const res = await list({ devicetype: 'sys', systemID: optionValue.value });
  73. const result = res.msgTxt;
  74. const deviceArr = <DeviceType[]>[]
  75. result.forEach(item => {
  76. const data = item['datalist'].filter((data: any) => {
  77. const readData = data.readData;
  78. return Object.assign(data, readData);
  79. })
  80. if (item.type != 'sys') {
  81. deviceArr.unshift({ deviceType: item.type, deviceName: item['typeName'] ? item['typeName'] : item['datalist'][0]['typeName'], datalist: data })
  82. }
  83. })
  84. deviceList.value = deviceArr
  85. deviceActive.value = deviceArr[0].deviceType
  86. deviceChange(0)
  87. };
  88. async function getSysDataSource () {
  89. const res = await list({ devicetype: 'sys_dongshi', pagetype: 'normal' });
  90. dataSource.value = res.msgTxt[0].datalist || [];
  91. dataSource.value.forEach((data: any) => {
  92. const readData = data.readData;
  93. data = Object.assign(data, readData);
  94. });
  95. if(!options.value) {
  96. // 初始时选择第一条数据
  97. options.value = dataSource.value
  98. optionValue.value = dataSource.value[0]['deviceID']
  99. Object.assign(selectData, dataSource.value[0])
  100. }
  101. const data: any = toRaw(dataSource.value[selectRowIndex.value]); //maxarea
  102. return data;
  103. };
  104. // 切换检测数据
  105. function getSelectRow(deviceID){
  106. const currentData = dataSource.value.find((item: any) => {
  107. return item.deviceID == deviceID
  108. })
  109. if(currentData){
  110. optionValue.value = currentData['deviceID']
  111. Object.assign(selectData, currentData)
  112. }
  113. }
  114. onBeforeMount(() => {
  115. });
  116. onMounted(async() => {
  117. await getSysDataSource()
  118. await getDeviceList()
  119. });
  120. onUnmounted(() => {
  121. });
  122. </script>
  123. <style lang="less" scoped>
  124. @import '/@/design/vent/modal.less';
  125. @ventSpace: zxm;
  126. .scene-box{
  127. pointer-events: none;
  128. .history-group{
  129. padding: 0 20px;
  130. .history-container{
  131. position: relative;
  132. background: #6176AF11;
  133. width: calc(100% + 10px);
  134. top: 0px;
  135. left: -10px;
  136. border: 1px solid #ffffff22;
  137. padding: 10px 0;
  138. }
  139. }
  140. .device-button-group{
  141. // margin: 0 20px;
  142. display: flex;
  143. pointer-events: auto;
  144. position: relative;
  145. margin-top: 90px;
  146. &::after{
  147. position:absolute;
  148. content: '';
  149. width: calc(100% + 10px);
  150. height: 2px;
  151. top: 30px;
  152. left: -10px;
  153. border-bottom: 1px solid #0efcff;
  154. }
  155. .device-button{
  156. padding: 4px 15px;
  157. position: relative;
  158. display: flex;
  159. justify-content: center;
  160. align-items: center;
  161. font-size: 14px;
  162. color: #fff;
  163. cursor: pointer;
  164. margin: 0 3px;
  165. &::before{
  166. content: '';
  167. position: absolute;
  168. top: 0;
  169. right: 0;
  170. bottom: 0;
  171. left: 0;
  172. border: 1px solid #6176AF;
  173. transform: skewX(-38deg);
  174. background-color: rgba(0, 77, 103,85%);
  175. z-index: -1;
  176. }
  177. }
  178. .device-active{
  179. // color: #0efcff;
  180. &::before{
  181. border-color: #0efcff;
  182. box-shadow: 1px 1px 3px 1px #0efcff inset;
  183. }
  184. }
  185. }
  186. }
  187. .center-container{
  188. width: 100%;
  189. height: calc(100% - 200px);
  190. }
  191. :deep(.@{ventSpace}-tabs-tabpane-active) {
  192. overflow: auto;
  193. }
  194. .input-box {
  195. display: flex;
  196. align-items: center;
  197. padding-left: 10px;
  198. .input-title {
  199. color: #73e8fe;
  200. width: auto;
  201. }
  202. .@{ventSpace}-input-number {
  203. border-color: #ffffff88 !important;
  204. }
  205. margin-right: 10px;
  206. }
  207. </style>