main-monitor.vue 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  1. <template>
  2. <div class="mainMonitor">
  3. <div class="title-top" @click="getDetail">主通风系统</div>
  4. <div class="toggle-search">
  5. <i class="icon-search">
  6. <SvgIcon class="icon" size="14" name="toggle" />
  7. </i>
  8. <a-select
  9. v-model:value="searchValue"
  10. style="width: 180px; margin-right: 10px"
  11. :options="mainTypeList"
  12. aria-placeholder="请选择"
  13. @change="changeSelect"
  14. />
  15. <div class="status-yx">
  16. <div class="now-name">
  17. <i style="margin: 0px 5px 0px 5px">
  18. <SvgIcon class="icon" size="14" name="yxfj" />
  19. </i>
  20. <span style="color: #fff">运行风机</span>
  21. </div>
  22. <div class="now-status">主风机</div>
  23. </div>
  24. </div>
  25. <div class="main-contents">
  26. <div class="main" ref="main"></div>
  27. </div>
  28. </div>
  29. </template>
  30. <script lang="ts" setup>
  31. import { ref, reactive, onMounted, nextTick, defineProps, watch } from 'vue';
  32. import { SvgIcon } from '/@/components/Icon';
  33. import * as echarts from 'echarts';
  34. let props = defineProps({
  35. maindata: Array,
  36. });
  37. const emit = defineEmits(['goDetail'])
  38. let searchValue = ref('');
  39. let mainTypeList = reactive<any>([]); //下拉框
  40. let mainList = reactive<any[]>([]); //主风机列表
  41. //获取dom节点
  42. let main = ref<any>();
  43. //echart图表数据
  44. let echartData = reactive<any>({
  45. xdata: ['1000', '2000', '3000', '4000', '5000', '6000'],
  46. ydata: [],
  47. ydata1: [],
  48. });
  49. //跳转详情
  50. function getDetail() {
  51. console.log('跳转详情');
  52. emit('goDetail', 'fanmain')
  53. }
  54. //选项切换
  55. function changeSelect(val) {
  56. (echartData.ydata.length = 0), (echartData.ydata1.length = 0);
  57. switch (val) {
  58. case '王坡主风机测试':
  59. mainList.forEach((el) => {
  60. echartData.ydata1.push(el.readData.DataPa);
  61. echartData.ydata.push(el.readData.m3);
  62. });
  63. getOption();
  64. break;
  65. }
  66. }
  67. function getOption() {
  68. nextTick(() => {
  69. const myChart = echarts.init(main.value);
  70. let option = {
  71. tooltip: {
  72. trigger: 'axis',
  73. axisPointer: {
  74. type: 'cross',
  75. },
  76. },
  77. grid: {
  78. top: '22%',
  79. left: '5%',
  80. right: '16%',
  81. bottom: '5%',
  82. containLabel: true,
  83. },
  84. xAxis: [
  85. {
  86. type: 'category',
  87. name: '负压(Pa)',
  88. nameTextStyle: {
  89. color: '#b3b8cc',
  90. fontSize: 12,
  91. padding: -5,
  92. },
  93. // boundaryGap: false,
  94. axisLine: {
  95. //坐标轴轴线相关设置。数学上的x轴
  96. show: true,
  97. lineStyle: {
  98. color: 'rgba(62, 103, 164)',
  99. },
  100. },
  101. axisLabel: {
  102. //坐标轴刻度标签的相关设置
  103. textStyle: {
  104. color: '#b3b8cc',
  105. padding: 0,
  106. fontSize: 14,
  107. },
  108. formatter: function (data) {
  109. return data;
  110. },
  111. },
  112. splitLine: {
  113. show: false,
  114. },
  115. axisTick: {
  116. show: false,
  117. },
  118. data: echartData.xdata,
  119. },
  120. ],
  121. yAxis: [
  122. {
  123. name: '风量\n(m³/min)',
  124. nameTextStyle: {
  125. color: '#b3b8cc',
  126. fontSize: 12,
  127. padding: -5,
  128. },
  129. min: 0,
  130. splitLine: {
  131. show: true,
  132. lineStyle: {
  133. color: 'rgba(62, 103, 164,.4)',
  134. },
  135. },
  136. axisLine: {
  137. show: true,
  138. lineStyle: {
  139. color: 'rgba(62, 103, 164)',
  140. },
  141. },
  142. axisLabel: {
  143. show: true,
  144. textStyle: {
  145. color: '#b3b8cc',
  146. padding: 0,
  147. fontSize: 14,
  148. },
  149. formatter: function (value) {
  150. if (value === 0) {
  151. return value;
  152. }
  153. return value;
  154. },
  155. },
  156. axisTick: {
  157. show: false,
  158. },
  159. },
  160. ],
  161. series: [
  162. {
  163. name: '风量',
  164. type: 'line',
  165. smooth: true,
  166. yAxisIndex: 0,
  167. symbolSize: 6,
  168. lineStyle: {
  169. normal: {
  170. width: 2,
  171. color: 'orange', // 线条颜色
  172. },
  173. borderColor: 'rgba(0,0,0,.4)',
  174. },
  175. itemStyle: {
  176. color: 'orange',
  177. borderColor: '#646ace',
  178. borderWidth: 0,
  179. },
  180. data: echartData.ydata,
  181. },
  182. {
  183. name: '负压',
  184. type: 'line',
  185. smooth: true,
  186. yAxisIndex: 0,
  187. symbolSize: 6,
  188. lineStyle: {
  189. normal: {
  190. width: 2,
  191. color: '#00ba01', // 线条颜色
  192. },
  193. borderColor: 'rgba(0,0,0,.4)',
  194. },
  195. itemStyle: {
  196. color: '#00ba01',
  197. borderColor: '#646ace',
  198. borderWidth: 0,
  199. },
  200. data: echartData.ydata1,
  201. },
  202. ],
  203. };
  204. myChart.setOption(option);
  205. window.onresize = function () {
  206. myChart.resize();
  207. };
  208. });
  209. }
  210. watch(
  211. () => props.maindata,
  212. (val) => {
  213. console.log(val, '主风机数据');
  214. mainList = val;
  215. mainTypeList.length = 0;
  216. mainTypeList.push({
  217. label: mainList[0].typeName,
  218. value: mainList[0].typeName,
  219. });
  220. searchValue.value = mainTypeList[0].value;
  221. changeSelect(searchValue.value);
  222. },
  223. {
  224. deep: true,
  225. }
  226. );
  227. onMounted(() => { });
  228. </script>
  229. <style lang="less" scoped>
  230. @font-face {
  231. font-family: 'douyuFont';
  232. src: url('../../../../../assets/font/douyuFont.otf');
  233. }
  234. .mainMonitor {
  235. width: 100%;
  236. height: 100%;
  237. position: relative;
  238. .title-top {
  239. position: absolute;
  240. top: 9px;
  241. left: 46px;
  242. color: #fff;
  243. font-size: 16px;
  244. font-family: 'douyuFont';
  245. cursor: pointer;
  246. &:hover {
  247. color: #66ffff;
  248. }
  249. }
  250. .toggle-search {
  251. position: absolute;
  252. left: 9px;
  253. top: 37px;
  254. display: flex;
  255. .icon-search {
  256. position: absolute;
  257. top: 50%;
  258. left: 5px;
  259. transform: translate(0%, -50%);
  260. }
  261. .status-yx {
  262. height: 30px;
  263. width: 180px;
  264. background-color: rgba(8, 148, 255, 0.3);
  265. border: 1px solid #1d80da;
  266. display: flex;
  267. justify-content: space-between;
  268. align-items: center;
  269. .now-status {
  270. margin-right: 5px;
  271. padding-top: 3px;
  272. font-family: 'douyuFont';
  273. color: #3df6ff;
  274. }
  275. }
  276. }
  277. .main-contents {
  278. position: absolute;
  279. top: 66px;
  280. left: 0;
  281. height: calc(100% - 66px);
  282. width: 100%;
  283. .main {
  284. width: 100%;
  285. height: 100%;
  286. }
  287. }
  288. }
  289. :deep .zxm-select-selector {
  290. width: 100%;
  291. height: 30px !important;
  292. padding: 0 11px 0px 25px !important;
  293. background-color: rgba(8, 148, 255, 0.3) !important;
  294. border: 1px solid #1d80da !important;
  295. }
  296. :deep .zxm-select-selection-item {
  297. color: #fff !important;
  298. line-height: 28px !important;
  299. }
  300. :deep .zxm-select-arrow {
  301. color: #fff !important;
  302. }
  303. </style>