index.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514
  1. <template>
  2. <div class="searchPage">
  3. <div class="searchBox">
  4. <el-form ref="form" :model="form" inline label-width="80px">
  5. <el-form-item label="日期:">
  6. <el-date-picker size="medium" value-format="yyyy-MM-dd HH:mm:ss" v-model="form.dateArea" type="datetimerange"
  7. :picker-options="pickerOptions" range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期" align="right">
  8. </el-date-picker>
  9. </el-form-item>
  10. <el-form-item label="间隔:">
  11. <el-input placeholder="请输入间隔" clearable v-model="form.interval" type="number"></el-input>
  12. </el-form-item>
  13. <transition name="el-zoom-in-center">
  14. <el-form-item v-show="form.interval" label=" ">
  15. <el-radio-group v-model="form.type" size="small">
  16. <el-radio label="0" @click.native.prevent="getRadio('0')">最大</el-radio>
  17. <el-radio label="1" @click.native.prevent="getRadio('1')">最小</el-radio>
  18. <el-radio label="2" @click.native.prevent="getRadio('2')">平均</el-radio>
  19. </el-radio-group>
  20. </el-form-item>
  21. </transition>
  22. </el-form>
  23. <div class="btnBox">
  24. <el-button type="primary" size="middle" @click="renderCharts">生成曲线</el-button>
  25. </div>
  26. </div>
  27. <div class="cardBox">
  28. <el-card class="box-card">
  29. <div slot="header" class="clearfix">
  30. <span>类型</span>
  31. <!-- <el-button style="float: right; padding: 3px 0" type="text">操作按钮</el-button> -->
  32. </div>
  33. <div>
  34. <el-radio-group v-model="form.fjType" size="small" @change="(fjType) => { this.resetForm(); }">
  35. <el-form ref="form" :model="form">
  36. <el-form-item style="margin-bottom:5px;">
  37. <el-radio border size="medium" label="1">单风机多参数对比</el-radio>
  38. </el-form-item>
  39. <el-form-item style="margin-bottom:5px;">
  40. <el-radio border size="medium" label="2">多风机单参数对比</el-radio>
  41. </el-form-item>
  42. </el-form>
  43. </el-radio-group>
  44. </div>
  45. </el-card>
  46. <el-card class="box-card">
  47. <div slot="header" class="clearfix">
  48. <span>设备结构</span>
  49. </div>
  50. <div>
  51. <div class="treeBox">
  52. <el-input size="small" placeholder="输入以检索" :disabled="!treeData.length" v-model="filterText"></el-input>
  53. <el-tree ref="treeRef" node-key="id" :data="treeData" :props="treeProps" :show-checkbox="true"
  54. :highlight-current="true" :filter-node-method="filterNode" @check-change="getTreeChecked"></el-tree>
  55. </div>
  56. </div>
  57. </el-card>
  58. <el-card class="box-card">
  59. <div slot="header" class="clearfix">
  60. <span>关键参数</span>
  61. </div>
  62. <div class="selectBox treeBox">
  63. <el-input size="small" placeholder="输入以检索" :disabled="!gjcsOptions.length" v-model="filterText1"></el-input>
  64. <el-tree ref="treeRef1" node-key="code" :data="gjcsOptions" :props="{children: null, label: 'description'}"
  65. :show-checkbox="true" :highlight-current="true" :filter-node-method="filterNode1" @check-change="getTreeChecked1"></el-tree>
  66. <!-- <el-select style="width:100%;" v-model="form.gjcs" filterable clearable :multiple="!treeIsMultiple"
  67. placeholder="输入以检索" @change="(res) => { this.$forceUpdate(); }">
  68. <el-option v-for="item in gjcsOptions" :key="item.id" :label="item.description" :value="item.code">
  69. </el-option>
  70. </el-select> -->
  71. </div>
  72. </el-card>
  73. </div>
  74. <div class="chartsBox">
  75. <div id="lineChart" style="width:100%;height:100%;"></div>
  76. </div>
  77. </div>
  78. </template>
  79. <script>
  80. import { Message } from 'element-ui';
  81. import * as echarts from "echarts";
  82. export default {
  83. data () {
  84. return {
  85. form: {
  86. pointId: "",
  87. pointName: "",
  88. autoReq: false,
  89. dateArea: [
  90. this.fmtDate(new Date(new Date().setTime(new Date().getTime() - 3600 * 1000 * 24))),
  91. this.fmtDate(new Date())
  92. ],
  93. interval: "",
  94. type: "",
  95. fjType: "1",
  96. gjcs: ''
  97. },
  98. treeIsMultiple: false,
  99. filterText: "",
  100. filterText1: "",
  101. treeData: [],
  102. gjcsOptions: [],
  103. treeProps: {
  104. children: 'children',
  105. label: 'label'
  106. },
  107. pickerOptions: {
  108. shortcuts: [{
  109. text: '最近一天',
  110. onClick (picker) {
  111. const end = new Date();
  112. const start = new Date();
  113. start.setTime(start.getTime() - 3600 * 1000 * 24);
  114. picker.$emit('pick', [start, end]);
  115. }
  116. }, {
  117. text: '最近一周',
  118. onClick (picker) {
  119. const end = new Date();
  120. const start = new Date();
  121. start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
  122. picker.$emit('pick', [start, end]);
  123. }
  124. }, {
  125. text: '最近一个月',
  126. onClick (picker) {
  127. const end = new Date();
  128. const start = new Date();
  129. start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
  130. picker.$emit('pick', [start, end]);
  131. }
  132. }, {
  133. text: '最近三个月',
  134. onClick (picker) {
  135. const end = new Date();
  136. const start = new Date();
  137. start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
  138. picker.$emit('pick', [start, end]);
  139. }
  140. }]
  141. }
  142. }
  143. },
  144. mounted () {
  145. let that = this;
  146. that.$nextTick(() => {
  147. that.getEquipmentStructure();
  148. that.getEquipmentParams();
  149. });
  150. },
  151. methods: {
  152. // 获取设备结构
  153. getEquipmentStructure () {
  154. let that = this;
  155. that.API.requestData({
  156. subUrl: "paramComparison/equipmentStructure",
  157. success (res) {
  158. // 请求成功的回调
  159. let treeData = [];
  160. res.data.forEach(ele => {
  161. let findRes = treeData.find(findEle => {
  162. return ele.windpowerstationid === findEle.label;
  163. });
  164. if (!findRes) {
  165. let treeTemp = {
  166. label: ele.windpowerstationid,
  167. children: []
  168. };
  169. treeTemp.children.push({
  170. label: ele.name,
  171. id: ele.id
  172. });
  173. treeData.push(treeTemp);
  174. } else {
  175. findRes.children.push({
  176. label: ele.name,
  177. id: ele.id
  178. });
  179. }
  180. });
  181. that.treeData = treeData;
  182. }
  183. });
  184. },
  185. // 获取关键节点
  186. getEquipmentParams () {
  187. let that = this;
  188. that.API.requestData({
  189. subUrl: "paramComparison/equipmentParams",
  190. success (res) {
  191. that.gjcsOptions = res.data;
  192. }
  193. });
  194. },
  195. // 获取单选结果
  196. getRadio (type) {
  197. if (type === this.form.type && this.form.type !== '') {
  198. this.form.type = '';
  199. } else {
  200. this.form.type = type;
  201. }
  202. },
  203. // 渲染图表
  204. renderCharts () {
  205. let that = this;
  206. that.$nextTick(() => {
  207. let begin = that.form.dateArea.length ? that.form.dateArea[0] : '';
  208. let end = that.form.dateArea.length ? that.form.dateArea[1] : '';
  209. let interval = that.form.interval;
  210. let type = that.form.type;
  211. let paramtype = that.form.fjType;
  212. let wts = [];
  213. let wtsArray = that.$refs.treeRef.getCheckedNodes();
  214. let params = [];
  215. let paramsArray = that.$refs.treeRef1.getCheckedNodes();
  216. // let params = that.form.gjcs;
  217. wtsArray.forEach(pEle => {
  218. if (pEle.id) {
  219. wts.push(pEle.id);
  220. } else {
  221. pEle.children.forEach(cEle => {
  222. wts.push(cEle.id);
  223. });
  224. }
  225. });
  226. paramsArray.forEach(pEle => {
  227. params.push(pEle.code);
  228. });
  229. let data = {};
  230. data.begin = begin;
  231. data.end = end;
  232. interval && (data.interval = interval);
  233. type && (data.type = type);
  234. data.paramtype = paramtype;
  235. data.wts = wts.toString();
  236. data.params = params.toString();
  237. if (begin && end && paramtype && wts.length && params.length) {
  238. that.API.requestData({
  239. subUrl: "paramComparison/generatingCurve",
  240. timeout: 30000,
  241. data,
  242. success (res) {
  243. console.log('res', res);
  244. if (res.data.length) {
  245. let xAxisData = []; // x轴标题
  246. let seriesData = []; // 折线图数据
  247. let keyArray = [];
  248. if (that.form.fjType === '1') {
  249. params.forEach(ele => {
  250. let findRes = that.gjcsOptions.find(findEle => {
  251. return ele === findEle.code;
  252. });
  253. keyArray.push(findRes.description);
  254. });
  255. } else {
  256. wtsArray.forEach(pEle => {
  257. if (pEle.id) {
  258. keyArray.push(pEle.label);
  259. } else {
  260. pEle.children.forEach(cEle => {
  261. keyArray.push(cEle.label);
  262. });
  263. }
  264. });
  265. }
  266. keyArray.forEach(ele => {
  267. seriesData.push({
  268. data: [],
  269. type: 'line',
  270. smooth: true,
  271. name: ele
  272. });
  273. });
  274. res.data.forEach(pEle => {
  275. xAxisData.push(that.fmtDate(new Date(pEle.time)));
  276. keyArray.forEach((cEle, cIndex) => {
  277. seriesData[cIndex].data.push((pEle[cEle] || null));
  278. });
  279. });
  280. document.getElementById("lineChart").removeAttribute("_echarts_instance_");
  281. let chartDom = document.getElementById('lineChart');
  282. let myChart = echarts.init(chartDom);
  283. let option = {
  284. xAxis: {
  285. type: 'category',
  286. data: xAxisData
  287. },
  288. yAxis: {
  289. type: 'value'
  290. },
  291. series: seriesData,
  292. tooltip: {
  293. trigger: 'axis',
  294. axisPointer: {
  295. type: 'cross',
  296. label: {
  297. backgroundColor: '#6a7985'
  298. }
  299. }
  300. }
  301. };
  302. option && myChart.setOption(option);
  303. } else {
  304. Message.warning("所选参数暂无数据,请切换参数后再次尝试");
  305. }
  306. }
  307. });
  308. } else {
  309. Message.error("无法生成,请检查 日期、设备结构与关键参数是否已选择");
  310. }
  311. });
  312. },
  313. // 过滤树形节点
  314. filterNode (value, data) {
  315. if (!value) return true;
  316. return data.label.indexOf(value) !== -1;
  317. },
  318. // 过滤树形节点
  319. filterNode1 (value, data) {
  320. if (!value) return true;
  321. return data.description.indexOf(value) !== -1;
  322. },
  323. // 获取树形选中
  324. getTreeChecked (data, checked, node) {
  325. if (!this.treeIsMultiple) {
  326. if (checked === true) {
  327. this.checkedId = data.id;
  328. this.$refs.treeRef.setCheckedKeys([data.id]);
  329. } else {
  330. if (this.checkedId == data.id) {
  331. this.$refs.treeRef.setCheckedKeys([]);
  332. }
  333. }
  334. }
  335. },
  336. // 获取树形选中
  337. getTreeChecked1 (data, checked, node) {
  338. if (this.treeIsMultiple) {
  339. if (checked === true) {
  340. this.checkedId = data.code;
  341. this.$refs.treeRef1.setCheckedKeys([data.code]);
  342. } else {
  343. if (this.checkedId == data.code) {
  344. this.$refs.treeRef1.setCheckedKeys([]);
  345. }
  346. }
  347. }
  348. },
  349. // 重置表单
  350. resetForm () {
  351. this.form.fjType === '1' ? this.treeIsMultiple = false : this.treeIsMultiple = true;
  352. this.$refs.treeRef.setCheckedKeys([]);
  353. this.$refs.treeRef1.setCheckedKeys([]);
  354. this.form.gjcs = '';
  355. this.$forceUpdate();
  356. document.getElementById("lineChart").removeAttribute("_echarts_instance_");
  357. echarts.init(document.getElementById('lineChart'));
  358. },
  359. // 格式化日期
  360. fmtDate (date) {
  361. let curDate = date || new Date();
  362. let year = curDate.getFullYear();
  363. let mouth = curDate.getUTCMonth() + 1;
  364. let day = curDate.getDate();
  365. let hour = curDate.getHours();
  366. let minutes = curDate.getMinutes();
  367. let seconds = curDate.getSeconds();
  368. return year + '-' + (mouth < 10 ? '0' + mouth : mouth) + '-' + (day < 10 ? '0' + day : day) + ' ' + (hour < 10 ? '0' + hour : hour) + ':' + (minutes < 10 ? '0' + minutes : minutes) + ':' + (seconds < 10 ? '0' + seconds : seconds);
  369. }
  370. },
  371. watch: {
  372. filterText (val) {
  373. this.$refs.treeRef.filter(val);
  374. },
  375. filterText1 (val) {
  376. this.$refs.treeRef1.filter(val);
  377. }
  378. },
  379. }
  380. </script>
  381. <style lang="scss" scoped>
  382. .searchBox {
  383. width: 80%;
  384. display: flex;
  385. justify-content: start;
  386. align-items: center;
  387. position: relative;
  388. .btnBox {
  389. position: absolute;
  390. left: calc(100% + 60px);
  391. top: 0;
  392. display: flex;
  393. justify-content: start;
  394. align-items: center;
  395. }
  396. .el-input {
  397. width: 150px;
  398. }
  399. }
  400. .cardBox {
  401. width: 100%;
  402. display: flex;
  403. justify-content: space-between;
  404. align-items: center;
  405. .el-card {
  406. width: 32%;
  407. height: 255px;
  408. .treeBox {
  409. width: 100%;
  410. .el-tree {
  411. width: 100%;
  412. height: 160px;
  413. margin-top: 10px;
  414. overflow-y: scroll;
  415. &::-webkit-scrollbar {
  416. width: 6px;
  417. height: 6px;
  418. background: #fff;
  419. }
  420. &::-webkit-scrollbar-track {
  421. border-radius: 5px;
  422. background: #fff;
  423. }
  424. &::-webkit-scrollbar-thumb {
  425. border-radius: 10px;
  426. background: rgba(144, 147, 153, 0.3);
  427. }
  428. }
  429. }
  430. }
  431. }
  432. .selectBox {
  433. .el-select {
  434. max-height: 150px;
  435. overflow-y: scroll;
  436. &::-webkit-scrollbar {
  437. width: 6px;
  438. height: 6px;
  439. background: #fff;
  440. }
  441. &::-webkit-scrollbar-track {
  442. border-radius: 5px;
  443. background: #fff;
  444. }
  445. &::-webkit-scrollbar-thumb {
  446. border-radius: 10px;
  447. background: rgba(144, 147, 153, 0.3);
  448. }
  449. }
  450. }
  451. .chartsBox {
  452. width: 100%;
  453. height: 400px;
  454. }
  455. </style>
  456. <style lang="scss">
  457. .cardBox {
  458. .el-card__header {
  459. padding: 5px 20px;
  460. }
  461. .el-card__body {
  462. padding: 10px 20px;
  463. }
  464. }
  465. </style>