main-monitor.vue 9.1 KB

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