fan-monitor.vue 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368
  1. <template>
  2. <div class="fanMonitor">
  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 v-model:value="searchValue" style="width: 180px; margin-right: 10px" :options="options1" aria-placeholder="请选择" @change="changeSelect" />
  9. <div class="status-yx">
  10. <div class="now-name">
  11. <i style="margin: 0px 5px 0px 5px">
  12. <SvgIcon class="icon" size="14" name="yxfj" />
  13. </i>
  14. <span style="color: #fff">运行风机</span>
  15. </div>
  16. <div class="now-status">主风机</div>
  17. </div>
  18. </div>
  19. <div class="fan-contents">
  20. <div class="fan" ref="fan"></div>
  21. </div>
  22. </div>
  23. </template>
  24. <script lang="ts" setup>
  25. import { ref, reactive, onMounted, nextTick } from 'vue';
  26. import { SvgIcon } from '/@/components/Icon';
  27. import * as echarts from 'echarts';
  28. import { useGo } from '/@/hooks/web/usePage';
  29. const go = useGo();
  30. let searchValue = ref('局扇监测');
  31. const options1 = reactive<any>([
  32. {
  33. value: '局扇监测',
  34. label: '局扇监测',
  35. },
  36. {
  37. value: '局扇监测1',
  38. label: '局扇监测1',
  39. },
  40. {
  41. value: '局扇监测2',
  42. label: '局扇监测2',
  43. },
  44. ]);
  45. //获取dom节点
  46. let fan = ref<any>();
  47. //echart图表数据
  48. let echartData=reactive<any>({
  49. xdata:80,
  50. ydata:60
  51. })
  52. //跳转详情
  53. function getDetail(){
  54. console.log('跳转详情')
  55. go('/micro-vent-3dModal/dashboard/analysis')
  56. }
  57. //选项切换
  58. function changeSelect(val){
  59. console.log(val,'val-------')
  60. switch(val){
  61. case '局扇监测':
  62. echartData.xdata=80
  63. echartData.ydata=60
  64. getOption()
  65. break;
  66. case '局扇监测1':
  67. echartData.xdata=50
  68. echartData.ydata=70
  69. getOption()
  70. break;
  71. case '局扇监测2':
  72. echartData.xdata=40
  73. echartData.ydata=90
  74. getOption()
  75. break;
  76. }
  77. }
  78. function getOption() {
  79. nextTick(() => {
  80. const myChart = echarts.init(fan.value);
  81. let option = {
  82. grid: {
  83. top: '20%',
  84. left: '5%',
  85. bottom: '10%',
  86. right: '5%',
  87. containLabel: true,
  88. },
  89. xAxis: [
  90. {
  91. type: 'category',
  92. data: ['吸风量', '供风量'],
  93. axisTick: {
  94. alignWithLabel: true,
  95. },
  96. nameTextStyle: {
  97. color: 'red',
  98. },
  99. axisLine: {
  100. //坐标轴轴线相关设置。数学上的x轴
  101. show: true,
  102. lineStyle: {
  103. color: 'rgba(62, 103, 164)',
  104. },
  105. },
  106. axisLabel: {
  107. //坐标轴刻度标签的相关设置
  108. textStyle: {
  109. color: '#b3b8cc',
  110. padding: 10,
  111. fontSize: 14,
  112. },
  113. formatter: function (data) {
  114. return data;
  115. },
  116. },
  117. },
  118. ],
  119. yAxis: [
  120. {
  121. type: 'value',
  122. min: 0,
  123. name: '(m³/min)',
  124. nameTextStyle: {
  125. color: '#b3b8cc',
  126. fontSize: 12,
  127. padding: -5,
  128. },
  129. splitLine: {
  130. show: false,
  131. lineStyle: {
  132. color: 'rgba(62, 103, 164,.4)',
  133. },
  134. },
  135. axisLine: {
  136. show: true,
  137. lineStyle: {
  138. color: 'rgba(62, 103, 164)',
  139. },
  140. },
  141. axisLabel: {
  142. show: true,
  143. textStyle: {
  144. color: '#b3b8cc',
  145. padding: 0,
  146. fontSize: 14,
  147. },
  148. formatter: function (value) {
  149. if (value === 0) {
  150. return value;
  151. }
  152. return value;
  153. },
  154. },
  155. axisTick: {
  156. show: false,
  157. },
  158. },
  159. ],
  160. series: [
  161. {
  162. name: '',
  163. type: 'pictorialBar',
  164. symbolSize: [60, 16],
  165. symbolOffset: [0, -10],
  166. symbolPosition: 'end',
  167. z: 12,
  168. //"barWidth": "20",
  169. label: {
  170. normal: {
  171. show: true,
  172. position: 'top',
  173. formatter: '{c}',
  174. color:'#fff'
  175. },
  176. },
  177. data: [
  178. {
  179. value: echartData.xdata,
  180. itemStyle: {
  181. color: '#59cb42',
  182. },
  183. },
  184. {
  185. value: echartData.ydata,
  186. itemStyle: {
  187. color: '#3cefff',
  188. },
  189. },
  190. ],
  191. },
  192. {
  193. name: '',
  194. type: 'pictorialBar',
  195. symbolSize: [60, 16],
  196. symbolOffset: [0, 10],
  197. // "barWidth": "20",
  198. z: 12,
  199. data: [
  200. {
  201. value: 100,
  202. itemStyle: {
  203. color: '#59cb42',
  204. },
  205. },
  206. {
  207. value: 100,
  208. itemStyle: {
  209. color: '#3cefff',
  210. },
  211. },
  212. ],
  213. },
  214. {
  215. name: '',
  216. type: 'pictorialBar',
  217. symbolSize: [90, 30],
  218. symbolOffset: [0, 20],
  219. z: 10,
  220. itemStyle: {
  221. normal: {
  222. color: 'transparent',
  223. borderColor: '#14b1eb',
  224. borderType: 'dashed',
  225. borderWidth: 5,
  226. },
  227. },
  228. data: [100, 100],
  229. },
  230. {
  231. type: 'bar',
  232. itemStyle: {
  233. normal: {
  234. //color: '#14b1eb',
  235. opacity: 0.7,
  236. },
  237. },
  238. //silent: true,
  239. barWidth: '60',
  240. //barGap: '-100%', // Make series be overlap
  241. data: [
  242. {
  243. value: echartData.xdata,
  244. itemStyle: {
  245. color: '#59cb42',
  246. },
  247. },
  248. {
  249. value: echartData.ydata,
  250. itemStyle: {
  251. color: '#3cefff',
  252. },
  253. },
  254. ],
  255. markLine: {
  256. symbol: 'none',
  257. label: {
  258. position: 'middle',
  259. formatter: '{b}',
  260. },
  261. data: [
  262. {
  263. name: '目标值',
  264. yAxis: 40, //res.targetTwo,
  265. lineStyle: {
  266. color: 'rgba(0, 119, 233,.8)',
  267. },
  268. },
  269. ],
  270. },
  271. },
  272. ],
  273. };
  274. myChart.setOption(option);
  275. window.onresize = function () {
  276. myChart.resize();
  277. };
  278. });
  279. }
  280. onMounted(() => {
  281. getOption();
  282. });
  283. </script>
  284. <style lang="less" scoped>
  285. @font-face {
  286. font-family: 'douyuFont';
  287. src: url('../../../../../assets/font/douyuFont.otf');
  288. }
  289. .fanMonitor {
  290. width: 100%;
  291. height: 100%;
  292. position: relative;
  293. .title-top {
  294. position: absolute;
  295. top: 9px;
  296. left: 46px;
  297. color: #fff;
  298. font-size: 16px;
  299. font-family: 'douyuFont';
  300. cursor: pointer;
  301. &:hover{
  302. color: #66ffff;
  303. }
  304. }
  305. .toggle-search {
  306. position: absolute;
  307. left: 9px;
  308. top: 37px;
  309. display: flex;
  310. .icon-search {
  311. position: absolute;
  312. top: 50%;
  313. left: 5px;
  314. transform: translate(0%, -50%);
  315. }
  316. .status-yx {
  317. height: 30px;
  318. width: 180px;
  319. background-color: rgba(8, 148, 255, 0.3);
  320. border: 1px solid #1d80da;
  321. display: flex;
  322. justify-content: space-between;
  323. align-items: center;
  324. .now-status {
  325. margin-right: 5px;
  326. padding-top: 3px;
  327. font-family: 'douyuFont';
  328. color: #3df6ff;
  329. }
  330. }
  331. }
  332. .fan-contents {
  333. position: absolute;
  334. top: 66px;
  335. left: 0;
  336. height: calc(100% - 66px);
  337. width: 100%;
  338. .fan {
  339. width: 100%;
  340. height: 100%;
  341. }
  342. }
  343. }
  344. :deep .zxm-select-selector {
  345. width: 100%;
  346. height: 30px !important;
  347. padding: 0 11px 0px 25px !important;
  348. background-color: rgba(8, 148, 255, 0.3) !important;
  349. border: 1px solid #1d80da !important;
  350. }
  351. :deep .zxm-select-selection-item {
  352. color: #fff !important;
  353. line-height: 28px !important;
  354. }
  355. :deep .zxm-select-arrow {
  356. color: #fff !important;
  357. }
  358. </style>