index.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  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 >智能注浆系统</customHeader>
  21. <div class="center-container">
  22. <groutHome v-if="activeKey == 'monitor'" :deviceId = 'optionValue' />
  23. <div v-else class="history-group">
  24. <div class="history-container">
  25. <groutHistory v-if="activeKey == 'monitor_history'" ref="historyTable" class="vent-margin-t-20"/>
  26. <groutHandleHistoryVue v-if="activeKey == 'handler_history'" ref="alarmHistoryTable" class="vent-margin-t-20" />
  27. <groutAlarmHistory v-if="activeKey == 'faultRecord'" ref="handlerHistoryTable" class="vent-margin-t-20"/>
  28. </div>
  29. </div>
  30. </div>
  31. <BottomMenu @change="changeActive"/>
  32. </div>
  33. </template>
  34. <script setup lang="ts">
  35. import customHeader from '/@/views/vent/comment/components/customHeader.vue';
  36. import { onBeforeMount, ref, onMounted, onUnmounted, reactive, toRaw } from 'vue';
  37. import { list } from './grout.api';
  38. import BottomMenu from '/@/views/vent/comment/components/bottomMenu.vue';
  39. import groutHome from './components/groutHome.vue';
  40. import groutHistory from './components/groutHistory.vue';
  41. import groutHandleHistoryVue from './components/groutHandleHistory.vue';
  42. import groutAlarmHistory from './components/groutAlarmHistory.vue';
  43. type DeviceType = { deviceType: string, deviceName: string, datalist: any[] };
  44. const activeKey = ref('monitor');
  45. const loading = ref(false);
  46. const monitorTable = ref()
  47. const historyTable = ref()
  48. const alarmHistoryTable = ref()
  49. const handlerHistoryTable = ref()
  50. const options = ref()
  51. // 默认初始是第一行
  52. const selectRowIndex = ref(0);
  53. const dataSource = ref([])
  54. const optionValue = ref('')
  55. // 监测数据
  56. const selectData = reactive({});
  57. function changeActive(activeValue) {
  58. activeKey.value = activeValue
  59. }
  60. onBeforeMount(() => {
  61. });
  62. onMounted(async() => {
  63. });
  64. onUnmounted(() => {
  65. });
  66. </script>
  67. <style lang="less" scoped>
  68. @import '/@/design/vent/modal.less';
  69. @ventSpace: zxm;
  70. .scene-box{
  71. pointer-events: none;
  72. .history-group{
  73. padding: 0 20px;
  74. .history-container{
  75. position: relative;
  76. background: #6176AF11;
  77. width: calc(100% + 10px);
  78. top: 0px;
  79. left: -10px;
  80. border: 1px solid #ffffff22;
  81. padding: 10px 0;
  82. pointer-events: auto;
  83. }
  84. }
  85. .device-button-group{
  86. // margin: 0 20px;
  87. display: flex;
  88. pointer-events: auto;
  89. position: relative;
  90. margin-top: 90px;
  91. &::after{
  92. position:absolute;
  93. content: '';
  94. width: calc(100% + 10px);
  95. height: 2px;
  96. top: 30px;
  97. left: -10px;
  98. border-bottom: 1px solid #0efcff;
  99. }
  100. .device-button{
  101. padding: 4px 15px;
  102. position: relative;
  103. display: flex;
  104. justify-content: center;
  105. align-items: center;
  106. font-size: 14px;
  107. color: #fff;
  108. cursor: pointer;
  109. margin: 0 3px;
  110. &::before{
  111. content: '';
  112. position: absolute;
  113. top: 0;
  114. right: 0;
  115. bottom: 0;
  116. left: 0;
  117. border: 1px solid #6176AF;
  118. transform: skewX(-38deg);
  119. background-color: rgba(0, 77, 103,85%);
  120. z-index: -1;
  121. }
  122. }
  123. .device-active{
  124. // color: #0efcff;
  125. &::before{
  126. border-color: #0efcff;
  127. box-shadow: 1px 1px 3px 1px #0efcff inset;
  128. }
  129. }
  130. }
  131. }
  132. .center-container{
  133. width: 100%;
  134. height: calc(100% - 200px);
  135. }
  136. :deep(.@{ventSpace}-tabs-tabpane-active) {
  137. overflow: auto;
  138. }
  139. .input-box {
  140. display: flex;
  141. align-items: center;
  142. padding-left: 10px;
  143. .input-title {
  144. color: #73e8fe;
  145. width: auto;
  146. }
  147. .@{ventSpace}-input-number {
  148. border-color: #ffffff88 !important;
  149. }
  150. margin-right: 10px;
  151. }
  152. </style>