HealthTab1.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492
  1. <template>
  2. <div class="health-tab-1">
  3. <div class="power-info mg-b-16">
  4. <div class="info-tab">
  5. <div
  6. class="tab"
  7. v-for="(item, index) in infoList"
  8. :key="index"
  9. :class="item.active ? 'active' : ''"
  10. @click="onClickInfo(item)"
  11. >
  12. <i class="svg-icon svg-icon svg-icon-sm">
  13. <svg-icon :svgid="item.svgid" />
  14. </i>
  15. <span> {{ item.title }} </span>
  16. </div>
  17. <div class="empty"></div>
  18. </div>
  19. <div class="info-chart">
  20. <panel class="info-chart-panel" :title="'健康趋势'">
  21. <vertival-bar-line-chart
  22. :height="'310px'"
  23. :bardata="bardata"
  24. :lineData="lineData"
  25. />
  26. </panel>
  27. </div>
  28. </div>
  29. <div class="health-report">
  30. <panel
  31. class="health-report-panel"
  32. :title="'推荐检修风机'"
  33. :showLine="false"
  34. >
  35. <div class="actions mg-b-16">
  36. <button
  37. class="btn"
  38. :class="recommenIndex === 1 ? 'active' : ''"
  39. @click="onClickRecommon(1)"
  40. >
  41. 当日内推荐
  42. </button>
  43. <button
  44. class="btn"
  45. :class="recommenIndex === 2 ? 'active' : ''"
  46. @click="onClickRecommon(2)"
  47. >
  48. 三日内推荐
  49. </button>
  50. <button
  51. class="btn"
  52. :class="recommenIndex === 3 ? 'active' : ''"
  53. @click="onClickRecommon(3)"
  54. >
  55. 超三日推荐
  56. </button>
  57. <div style="margin-left: 450px">
  58. <button class="btn" @click="onClickCofirmAll()">全部确认</button>
  59. <button class="btn" @click="onClickIgnoreAll()">全部忽略</button>
  60. </div>
  61. </div>
  62. <div class="report-items scroll">
  63. <div class="item" v-for="(item, index) in recommenList" :key="index">
  64. <div class="title">
  65. <div @click="jumpUrl(item)">
  66. {{ item.wtName }}&nbsp;{{ item.nemCode }}
  67. </div>
  68. <span @click="onClickReport(item)">健康报告</span>
  69. </div>
  70. <div class="info">
  71. <p>推荐理由:{{ item.reason }}</p>
  72. <p>
  73. 推荐检修时间:{{
  74. new Date(item.recordDate).formatDate("yyyy-MM-dd hh:mm:ss")
  75. }}
  76. </p>
  77. <p>推荐时间对应风速:{{ item.speed }} m/s</p>
  78. <p>
  79. 判断时间:{{
  80. new Date(item.createDate).formatDate("yyyy-MM-dd hh:mm:ss")
  81. }}
  82. </p>
  83. <div class="actions mg-t-16">
  84. <button class="btn success" @click="onClickCofirm(item)">
  85. <i class="fa fa-check"></i>
  86. 提交
  87. </button>
  88. <button class="btn" @click="onClickIgnore(item)">
  89. <i class="fa fa-close"></i>
  90. 取消
  91. </button>
  92. </div>
  93. </div>
  94. </div>
  95. </div>
  96. </panel>
  97. </div>
  98. <health-report
  99. :show="reportshow"
  100. :params="reportparams"
  101. ref="eport"
  102. @closed="closed"
  103. />
  104. </div>
  105. </template>
  106. <script>
  107. import VertivalBarLineChart from "../../components/chart/combination/health-bar-line-chart.vue";
  108. import SvgIcon from "../../components/coms/icon/svg-icon.vue";
  109. import Panel from "../../components/coms/panel/panel.vue";
  110. import HealthReport from "../../components/other/healthReport/index.vue";
  111. import api from "@api/wisdomOverhaul/health/index.js";
  112. export default {
  113. components: { SvgIcon, Panel, VertivalBarLineChart, HealthReport },
  114. data() {
  115. return {
  116. infoList: [
  117. // {title: '24小时健康趋势', svgid: 'svg-24-houre', active: false, type: 'houre'},
  118. { title: "7日健康趋势", svgid: "svg-h-day", active: true, type: "day" },
  119. {
  120. title: "30日健康趋势",
  121. svgid: "svg-h-month",
  122. active: false,
  123. type: "month",
  124. },
  125. ],
  126. bardata: { area: [], legend: [], data: [] }, // 损失电量分析echart数值
  127. lineData: [],
  128. recommenList: [], // 健康报告推荐
  129. recommenIndex: 1, // 记录当前是那个推荐
  130. reportshow: false, //是否显示健康报告
  131. reportparams: undefined,
  132. };
  133. },
  134. created() {
  135. this.requestCoulometry(2);
  136. this.requestRecommen("recommen/getRecommenmainDay1");
  137. },
  138. methods: {
  139. // 页面跳转
  140. jumpUrl(item) {
  141. const wpid = item.wpId;
  142. const wtid = item.wtId;
  143. this.$router.push(`/health/healthDetail/wtHealth/${wpid}/${wtid}`);
  144. },
  145. // 未确认缺陷按钮下的健康趋势选项
  146. onClickInfo(item) {
  147. this.infoList.forEach((element) => {
  148. if (item.type == element.type) {
  149. item.active = true;
  150. switch (item.type) {
  151. case "day":
  152. this.requestCoulometry(2);
  153. break;
  154. case "month":
  155. this.requestCoulometry(3);
  156. }
  157. } else {
  158. element.active = false;
  159. }
  160. });
  161. },
  162. // 健康报告推荐
  163. onClickRecommon(day) {
  164. this.recommenIndex = day;
  165. switch (day) {
  166. case 1:
  167. this.requestRecommen("recommen/getRecommenmainDay1");
  168. break;
  169. case 2:
  170. this.requestRecommen("recommen/getRecommenmainDay3");
  171. break;
  172. case 3:
  173. this.requestRecommen("recommen/getRecommenmainDay7");
  174. break;
  175. }
  176. },
  177. // 查看健康报告
  178. onClickReport(item) {
  179. this.$refs.eport.getReport(
  180. item.wtId,
  181. new Date(item.createDate).formatDate("yyyy-MM-dd")
  182. );
  183. this.reportshow = true;
  184. },
  185. // 关闭健康报告
  186. closed() {
  187. this.reportshow = false;
  188. },
  189. // 健康推荐提交
  190. onClickCofirm(item) {
  191. let that = this;
  192. that
  193. .$confirm("确认提交?")
  194. .then((_) => {
  195. that.requestOption("recommen/confirpush", item.rid);
  196. })
  197. .catch((_) => {});
  198. },
  199. // 健康推荐取消
  200. onClickIgnore(item) {
  201. this.requestOption("recommen/ignorepush", item.rid);
  202. },
  203. // 健康推荐提交全部
  204. onClickCofirmAll() {
  205. let that = this;
  206. that
  207. .$confirm("确认全部提交?")
  208. .then((_) => {
  209. that.requestOptionAll("recommen/confirpushAll");
  210. })
  211. .catch((_) => {});
  212. },
  213. // 健康推荐取消全部
  214. onClickIgnoreAll() {
  215. let that = this;
  216. that
  217. .$confirm("确认全部取消?")
  218. .then((_) => {
  219. that.requestOptionAll("recommen/ignorepushAll");
  220. })
  221. .catch((_) => {});
  222. },
  223. // 健康报告推荐
  224. requestRecommen(url) {
  225. api
  226. .requestRecommen({
  227. url: url,
  228. })
  229. .then((res) => {
  230. if (res.code == 200) this.recommenList = res.data;
  231. });
  232. },
  233. // 操作推荐内容(提交/取消)
  234. requestOption(url, rid) {
  235. let data = {
  236. rid: rid,
  237. };
  238. api.recommen(url, data).then((res) => {
  239. if (res.code == 200) this.onClickRecommon(this.recommenIndex);
  240. });
  241. },
  242. // 操作推荐内容全部(提交/取消)
  243. requestOptionAll(url) {
  244. let data = { typeid: this.recommenIndex };
  245. api.recommen(url, data).then((res) => {
  246. if (res.code == 200) this.onClickRecommon(this.recommenIndex);
  247. });
  248. },
  249. // 损失电量分析 type:1 表示24小时健康趋势,2 表示七天健康趋势 3 表示30天健康趋势
  250. requestCoulometry(type) {
  251. api
  252. .findAllChartjz({
  253. wpId: 0,
  254. type: type,
  255. })
  256. .then((res) => {
  257. if (res.code == 200) {
  258. this.bardata.legend = ["优数量", "良数量", "差数量"];
  259. this.lineData = res.data.lvchart;
  260. this.bardata.area = res.data.datechart;
  261. this.bardata.data[2] = res.data.cslchart;
  262. this.bardata.data[1] = res.data.lslchart;
  263. this.bardata.data[0] = res.data.yslchart;
  264. }
  265. });
  266. },
  267. },
  268. };
  269. </script>
  270. <style lang="less" scope>
  271. .health-tab-1 {
  272. height: 100%;
  273. .power-info {
  274. display: flex;
  275. height: 350px;
  276. .info-tab {
  277. flex: 0 0 156px;
  278. display: flex;
  279. flex-direction: column;
  280. height: 350px;
  281. margin-right: 1.4815vh;
  282. .tab {
  283. position: relative;
  284. flex: 0 0 auto;
  285. text-align: center;
  286. line-height: 33px;
  287. margin-right: 8px;
  288. color: @gray-l;
  289. font-size: 12px;
  290. background: fade(@gray, 20);
  291. border: 1px solid fade(@gray, 20);
  292. display: flex;
  293. align-items: center;
  294. i {
  295. margin: 0 1.4815vh;
  296. svg use {
  297. fill: @gray-l;
  298. }
  299. }
  300. &:hover,
  301. &.active {
  302. background: fade(@green, 20);
  303. border: 1px solid @green;
  304. color: @green;
  305. cursor: pointer;
  306. i svg use {
  307. fill: @green;
  308. }
  309. }
  310. &.active::after {
  311. box-sizing: content-box;
  312. width: 0px;
  313. height: 0px;
  314. position: absolute;
  315. right: -19px;
  316. padding: 0;
  317. border-bottom: 9px solid @green;
  318. border-top: 9px solid transparent;
  319. border-left: 9px solid transparent;
  320. border-right: 9px solid transparent;
  321. display: block;
  322. content: "";
  323. z-index: 10;
  324. transform: rotate(90deg);
  325. }
  326. &.active::before {
  327. box-sizing: content-box;
  328. width: 0px;
  329. height: 0px;
  330. position: absolute;
  331. right: -17px;
  332. padding: 0;
  333. border-bottom: 9px solid #063319;
  334. border-top: 9px solid transparent;
  335. border-left: 9px solid transparent;
  336. border-right: 9px solid transparent;
  337. display: block;
  338. content: "";
  339. z-index: 12;
  340. transform: rotate(90deg);
  341. }
  342. & + .tab {
  343. margin-top: 0.7407vh;
  344. }
  345. &:last-child {
  346. text-align: center;
  347. justify-content: center;
  348. }
  349. }
  350. .empty {
  351. flex: 1 0 auto;
  352. }
  353. }
  354. .info-chart {
  355. flex: 1 0 auto;
  356. }
  357. }
  358. .health-report {
  359. height: calc(100% - 350px - 15px);
  360. .health-report-panel {
  361. height: 100%;
  362. .btn.active {
  363. background: fade(@green, 20) !important;
  364. border: 1px solid @green !important;
  365. color: @green !important;
  366. cursor: pointer !important;
  367. i svg use {
  368. fill: @green !important;
  369. }
  370. }
  371. }
  372. // 健康报告 按钮样式
  373. .actions {
  374. display: flex;
  375. .item {
  376. flex: 0 0 102px;
  377. text-align: center;
  378. line-height: 33px;
  379. margin-right: 8px;
  380. color: fade(@white, 75);
  381. font-size: @fontsize-s;
  382. cursor: pointer;
  383. &.green {
  384. background: @green;
  385. }
  386. &.purple {
  387. background: @purple;
  388. }
  389. &.gray {
  390. background: @gray;
  391. }
  392. }
  393. .active {
  394. background: fade(@green, 20);
  395. border: 1px solid @green;
  396. color: @green;
  397. cursor: pointer;
  398. }
  399. }
  400. .report-items {
  401. display: flex;
  402. flex-wrap: wrap;
  403. height: calc(100% - 30px);
  404. .item {
  405. flex: 0 0 calc(100% / 6 - 16px);
  406. margin-bottom: 16px;
  407. & + .item {
  408. margin-left: 16px;
  409. }
  410. &:nth-child(6n + 1) {
  411. margin-left: 0px;
  412. }
  413. .title {
  414. background: fade(@gray, 40);
  415. // color: fade(@white, 75);
  416. color: @gray-l;
  417. line-height: 37px;
  418. padding-left: 16px;
  419. padding-right: 16px;
  420. font-size: @fontsize-s;
  421. display: flex;
  422. flex-direction: row;
  423. justify-content: space-between;
  424. cursor: pointer;
  425. span {
  426. cursor: pointer;
  427. }
  428. }
  429. .info {
  430. background: fade(@gray, 20);
  431. padding: 16px;
  432. font-size: @fontsize-s;
  433. color: @font-color;
  434. line-height: 1.5;
  435. height: calc(100% - 37px);
  436. p {
  437. margin: 0;
  438. line-height: 2;
  439. overflow: hidden;
  440. text-overflow: ellipsis;
  441. display: -webkit-box;
  442. -webkit-box-orient: vertical;
  443. -webkit-line-clamp: 2;
  444. }
  445. .actions {
  446. display: flex;
  447. align-items: center;
  448. justify-content: center;
  449. .success {
  450. border-color: #05bb4c;
  451. color: #05bb4c;
  452. background: rgba(5, 187, 76, 0.2);
  453. }
  454. }
  455. }
  456. }
  457. }
  458. }
  459. }
  460. </style>