main-monitor.vue 8.3 KB

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