main-monitor.vue 9.2 KB

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