faultDiagnose.vue 11 KB

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