faultDiagnose.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417
  1. <template>
  2. <div class="faultDiagnose">
  3. <div class="top-box">
  4. <div class="nav" v-for="(item, index) in topList" :key="index">
  5. <div class="pic" v-if="item.imgSrc">
  6. <img :src="imgUrl" alt="" />
  7. <SvgIcon class="icon-style" :name="item.icon"
  8. style=" position: absolute;left: 50%;top:50%;transform: translate(-50%,-50%); width: 60px; height: 38px" />
  9. </div>
  10. <div class="content" v-if="item.label && item.value">
  11. <span>{{ item.label }}</span>
  12. <span>{{ item.value }}</span>
  13. </div>
  14. <!-- <div class="text" v-if="item.text">{{ item.text }}</div> -->
  15. <!-- <div class="percent" v-if="item.list.length != 0">
  16. <div class="title">{{ item.label }}</div>
  17. <div class="value">
  18. <div class="content-box" v-for="(items, ind) in item.list" :key="ind">
  19. <span style="color: #b3b8cc">{{ `${items.label} :` }}</span>
  20. <span style="color: var(--vent-table-action-link); margin-left: 10px">{{ `${items.value}%`
  21. }}</span>
  22. </div>
  23. </div>
  24. </div> -->
  25. </div>
  26. </div>
  27. <div class="bot-box">
  28. <div class="left-area-box">
  29. <div class="title-t">
  30. <div class="text-t">历史数据图表</div>
  31. </div>
  32. <a-form :model="formState" layout="inline" :label-col="{ style: { width: '80px' } }"
  33. :wrapper-col="{ span: 8 }">
  34. <a-form-item label="开始时间:">
  35. <a-date-picker v-model:value="formState.ttime_begin" style="width:220px" show-time
  36. valueFormat="YYYY-MM-DD HH:mm:ss" placeholder="请选择开始时间" />
  37. </a-form-item>
  38. <a-form-item label="结束时间:">
  39. <a-date-picker v-model:value="formState.ttime_end" style="width:220px" show-time
  40. valueFormat="YYYY-MM-DD HH:mm:ss" placeholder="请选择结束时间" />
  41. </a-form-item>
  42. <a-form-item label="">
  43. <a-button type="primary" @click="getSearchHis">查询</a-button>
  44. </a-form-item>
  45. </a-form>
  46. <div class="echart-area-box">
  47. <BarAndLine class="echarts-line" :xAxisPropType="xAxisPropType" :dataSource="hisEchartData"
  48. height="100%" width="100%" :chartsColumns="chartsColumnList" :option="echatsOption" />
  49. </div>
  50. </div>
  51. <div class="right-area-box">
  52. <div class="title-t">
  53. <div class="text-t">瓦斯抽采泵信息</div>
  54. </div>
  55. <div class="echart-area-box">
  56. <echartLine :echartDataGq="echartData" :maxY="maxY" :minY="minY" :echartDw="echartDw"
  57. :gridV="gridV" />
  58. </div>
  59. </div>
  60. </div>
  61. </div>
  62. </template>
  63. <script setup lang="ts">
  64. import { ref, reactive, watch } from 'vue';
  65. import dayjs from 'dayjs';
  66. import imgUrl from '/@/assets/images/fire/pie.png';
  67. import { SvgIcon } from '/@/components/Icon';
  68. import echartLine from './echartLine.vue';
  69. import BarAndLine from '/@/components/chart/BarAndLine.vue';
  70. import { getMaxY, getMinY } from '../common.data'
  71. let props = defineProps({
  72. timeData: {
  73. type: String,
  74. default: ''
  75. },
  76. //顶部区域数据
  77. topData: {
  78. type: Array,
  79. default: () => {
  80. return []
  81. }
  82. },
  83. //历史数据图表
  84. xAxisPropType: {
  85. type: String,
  86. default: ''
  87. },
  88. hisEchartData: {
  89. type: Array,
  90. default: () => {
  91. return []
  92. }
  93. },
  94. //报警历史数据曲线
  95. echartData: {
  96. type: Object,
  97. default: () => {
  98. return {}
  99. }
  100. },
  101. })
  102. let formState = reactive({
  103. ttime_begin: '',
  104. ttime_end: ''
  105. })
  106. let maxY = ref<any>(0)
  107. let minY = ref<any>(0)
  108. let echartDw = ref('(m³/min)');
  109. let chartsColumnList = reactive([
  110. {
  111. legend: '流量',
  112. seriesName: '(m³/min)',
  113. ymax: 15,
  114. yname: 'ppm',
  115. linetype: 'line',
  116. yaxispos: 'left',
  117. color: '#FDB146',
  118. sort: 1,
  119. xRotate: 0,
  120. dataIndex: 'gdlyVal',
  121. },
  122. {
  123. legend: '负压',
  124. seriesName: '(Pa)',
  125. ymax: 20,
  126. yname: '%',
  127. linetype: 'line',
  128. yaxispos: 'right',
  129. color: '#9C83D9',
  130. sort: 2,
  131. xRotate: 0,
  132. dataIndex: 'fyVal',
  133. },
  134. ])
  135. let echatsOption = reactive({
  136. grid: {
  137. top: '10%',
  138. left: '4',
  139. right: '18',
  140. bottom: '2%',
  141. containLabel: true,
  142. },
  143. toolbox: {
  144. feature: null,
  145. },
  146. })
  147. let gridV = reactive({
  148. top: '5%',
  149. left: '2%',
  150. bottom: '2%',
  151. right: '2%',
  152. containLabel: true,
  153. })
  154. let pointHisWarnData = reactive({
  155. x: 0,
  156. y: 0,
  157. })
  158. let $emit = defineEmits(['getSearchHis'])
  159. const topList = ref<any[]>()
  160. const getSearchHis = () => {
  161. $emit('getSearchHis', formState)
  162. }
  163. watch(() => props.timeData, (newV, oldV) => {
  164. if (newV) {
  165. let index = newV.indexOf(' ')
  166. let specificTime = dayjs(`${newV.substring(0, index)}T${newV.substring(index + 1)}`)
  167. formState.ttime_begin = specificTime.subtract(30, 'minute').format('YYYY-MM-DD HH:mm:ss')
  168. formState.ttime_end = specificTime.add(30, 'minute').format('YYYY-MM-DD HH:mm:ss')
  169. }
  170. }, {
  171. immediate: true
  172. })
  173. watch(() => props.topData, (newT, oldT) => {
  174. if (newT) {
  175. topList.value = newT
  176. }
  177. }, {
  178. immediate: true
  179. })
  180. watch(() => props.echartData, (newE, oldE) => {
  181. if (newE.maxData.data.length != 0 && newE.xData.length != 0) {
  182. let echartD = [newE.maxData.data, newE.minData.data]
  183. maxY.value = getMaxY(echartD)
  184. minY.value = getMinY(echartD)
  185. // let max1 = newE.maxData.data.reduce((acr, cur) => {
  186. // return acr > cur ? acr : cur;
  187. // });
  188. // let max2 = newE.minData.data.reduce((acr1, cur1) => {
  189. // return acr1 > cur1 ? acr1 : cur1;
  190. // });
  191. // maxY.value = max1 >= max2 ? max1 : max2;
  192. // maxY.value =
  193. // maxY.value.toString().indexOf('.') == -1 ? maxY.value.toString() : maxY.value.toString().substring(0, maxY.value.toString().indexOf('.'));
  194. // if (maxY.value.length < 2 && Number(maxY.value) < 1) {
  195. // maxY.value = 1;
  196. // } else if (maxY.value.length < 2 && Number(maxY.value) >= 1) {
  197. // maxY.value = 10;
  198. // } else if (maxY.value.length < 3) {
  199. // maxY.value = (Number(maxY.value[0]) + 1) * 10;
  200. // } else if (maxY.value.length < 4) {
  201. // maxY.value = (Number(maxY.value[0]) + 1) * 100;
  202. // } else if (maxY.value.length < 5) {
  203. // maxY.value = (Number(maxY.value[0]) + 1) * 1000;
  204. // } else if (maxY.value.length < 6) {
  205. // maxY.value = (Number(maxY.value[0]) + 1) * 10000;
  206. // }
  207. }
  208. }, { immediate: true, deep: true })
  209. </script>
  210. <style lang="less" scoped>
  211. @import '/@/design/theme.less';
  212. @{theme-deepblue} {
  213. .faultDiagnose {
  214. --image-bj1: url('/@/assets/images/themify/deepblue/fire/bj1.png');
  215. --image-max: url('/@/assets/images/themify/deepblue/fire/max.svg');
  216. --image-min: url('/@/assets/images/themify/deepblue/fire/min.svg');
  217. --image-pj: url('/@/assets/images/themify/deepblue/fire/pj.svg');
  218. --image-bj1: url('/@/assets/images/themify/deepblue/fire/bj1.png');
  219. --image-14174: url('/@/assets/images/themify/deepblue/fire/14174.png');
  220. --image-contetn: url('/@/assets/images/themify/deepblue/fire/contetn.png');
  221. }
  222. }
  223. .faultDiagnose {
  224. --image-bj1: url('/@/assets/images/fire/bj1.png');
  225. --image-max: url('/@/assets/images/fire/max.svg');
  226. --image-min: url('/@/assets/images/fire/min.svg');
  227. --image-pj: url('/@/assets/images/fire/pj.svg');
  228. --image-bj1: url('/@/assets/images/fire/bj1.png');
  229. --image-14174: url('/@/assets/images/fire/14174.png');
  230. --image-contetn: url('/@/assets/images/fire/contetn.png');
  231. --border-image-2: linear-gradient(to bottom, transparent, #024688, transparent);
  232. width: 100%;
  233. height: 100%;
  234. .top-box {
  235. display: flex;
  236. justify-content: space-between;
  237. align-items: center;
  238. height: 120px;
  239. margin-bottom: 10px;
  240. padding: 10px;
  241. background: var(--image-bj1) no-repeat center;
  242. background-size: 100% 100%;
  243. box-sizing: border-box;
  244. .nav {
  245. display: flex;
  246. justify-content: center;
  247. align-items: center;
  248. flex: 1;
  249. height: 100%;
  250. border-right: 2px solid;
  251. border-image: var(--border-image-2) 1 1 1;
  252. // &:nth-child(1) {
  253. // flex: 1;
  254. // height: 100%;
  255. // border-right: 2px solid;
  256. // border-image: var(--border-image-2) 1 1 1;
  257. // }
  258. // &:nth-child(2) {
  259. // flex: 1;
  260. // height: 100%;
  261. // border-right: 2px solid;
  262. // border-image: var(--border-image-2) 1 1 1;
  263. // }
  264. // &:nth-child(3) {
  265. // flex: 1;
  266. // height: 100%;
  267. // border-right: 2px solid;
  268. // border-image: var(--border-image-2) 1 1 1;
  269. // }
  270. // &:nth-child(4) {
  271. // flex: 0.6;
  272. // color: #b3b8cc;
  273. // font-size: 16px;
  274. // height: 100%;
  275. // border-right: 2px solid;
  276. // border-image: var(--border-image-2) 1 1 1;
  277. // }
  278. // &:nth-child(5) {
  279. // flex: 1.4;
  280. // height: 100%;
  281. // }
  282. .pic {
  283. position: relative;
  284. width: 30%;
  285. height: 82%;
  286. img {
  287. width: 100%;
  288. height: 100%;
  289. }
  290. }
  291. .content {
  292. height: 82%;
  293. margin-left: 15px;
  294. color: #fff;
  295. display: flex;
  296. flex-direction: column;
  297. justify-content: space-around;
  298. span {
  299. font-size: 14px;
  300. &:nth-child(1) {
  301. padding: 5px 0px;
  302. color: #b3b8cc;
  303. }
  304. &:nth-child(2) {
  305. font-family: 'douyuFont';
  306. font-size: 16px;
  307. color: var(--vent-table-action-link);
  308. }
  309. }
  310. }
  311. }
  312. // .nav:nth-child(1) .pic {
  313. // background: var(--image-max) no-repeat center;
  314. // background-size: 50% 50%;
  315. // }
  316. // .nav:nth-child(2) .pic {
  317. // background: var(--image-min) no-repeat center;
  318. // background-size: 50% 50%;
  319. // }
  320. // .nav:nth-child(3) .pic {
  321. // background: var(--image-pj) no-repeat center;
  322. // background-size: 50% 50%;
  323. // }
  324. }
  325. .title-t {
  326. height: 30px;
  327. margin-bottom: 10px;
  328. display: flex;
  329. justify-content: space-between;
  330. align-items: center;
  331. .text-t {
  332. font-family: 'douyuFont';
  333. font-size: 14px;
  334. color: #fff;
  335. }
  336. }
  337. .bot-box {
  338. display: flex;
  339. justify-content: space-between;
  340. height: calc(100% - 130px);
  341. .left-area-box {
  342. width: calc(50% - 5px);
  343. height: 100%;
  344. padding: 10px;
  345. background: var(--image-bj1) no-repeat center;
  346. background-size: 100% 100%;
  347. box-sizing: border-box;
  348. .echart-area-box {
  349. height: calc(100% - 75px)
  350. }
  351. }
  352. .right-area-box {
  353. width: calc(50% - 5px);
  354. height: 100%;
  355. padding: 10px;
  356. background: var(--image-bj1) no-repeat center;
  357. background-size: 100% 100%;
  358. box-sizing: border-box;
  359. .echart-area-box {
  360. height: calc(100% - 40px)
  361. }
  362. }
  363. }
  364. }
  365. ::v-deep .zxm-form-item-label>label {
  366. color: #ccc
  367. }
  368. :deep(.zxm-picker-input > input) {
  369. color: #fff;
  370. }
  371. :deep(.zxm-picker) {
  372. border: 1px solid #3ad8ff77 !important;
  373. background-color: #ffffff00 !important;
  374. color: #fff !important;
  375. }
  376. :deep(.zxm-picker-suffix) {
  377. color: #fff;
  378. }
  379. </style>