天波h5前端应用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000
  1. <!--
  2. * @Date: 2023-10-30 11:30:22
  3. * @LastEditors: JinxChen
  4. * @LastEditTime: 2023-11-07 09:23:17
  5. * @FilePath: \TelpoH5FrontendWeb\src\views\health\psychological\report\index.vue
  6. * @description:
  7. -->
  8. <template>
  9. <!-- 周/月报 -->
  10. <div class="report">
  11. <van-nav-bar title="心理监测周报" :border="true" @click-left="onNavBack">
  12. <template #left >
  13. <van-icon name="arrow-left" size="24" style="padding: 0" v-show="params.isShowLeft"/>
  14. <span v-show="params.isShowLeft">返回</span>
  15. </template>
  16. </van-nav-bar>
  17. <div class="main">
  18. <!-- 总评 -->
  19. <div class="overall-rating">
  20. <div class="con">
  21. <p class="space-between">
  22. <span class="bold">本周总评</span>
  23. <span class="time">{{ resetDate(weekResult.StartDate,weekResult.EndDate) || '--' }}</span>
  24. </p>
  25. <p
  26. class="bold-pro"
  27. :style="{color: calcResultColor(weekResult.SummaryLevel) || '--'}"
  28. >{{ weekResult.Summary }}</p>
  29. <p class="normal">监测次数: {{ weekResult.Total || '--'}}次</p>
  30. <p class="normal">{{ weekResult.Explain || '--' }}</p>
  31. </div>
  32. </div>
  33. <div class="line"></div>
  34. <div class="pie-chart-top">
  35. <p class="bold">上周趋势对比</p>
  36. <p>{{ resetDate(weekResult.StartDate,weekResult.EndDate) || '--' }}</p>
  37. </div>
  38. <div class="count">
  39. <p>监测次数:{{ weekResult.LastTotal || '--' }}次</p>
  40. </div>
  41. <!-- 趋势对比-饼状图 -->
  42. <div class="pie-chart-con">
  43. <div class="pie-chart-left">
  44. <div id="pieChart" ref="pieChart"></div>
  45. </div>
  46. <div class="pie-chart-right">
  47. <div class="list">
  48. <div class="item" v-for="(item, index) in pieRightList" :key="index">
  49. <div class="item-left">
  50. <div class="circle" :style="{backgroundColor: item.color}"></div>
  51. <span class="text">{{ item.text || '--' }}</span>
  52. </div>
  53. <div class="item-right">
  54. <span
  55. :style="{color: item.color}"
  56. >{{ item.count ? item.count + '次' : '0次'}}</span>
  57. <label
  58. :style="{color: item.color}"
  59. >{{ item.percentage ? '(' + item.percentage + '%' + ')' : '(0%)'}}</label>
  60. </div>
  61. <div class="status">
  62. <img :src="calcImg(item.percentage, item.lastPercentage)" alt="" />
  63. <span :style="{color: calcImg(item.percentage, item.lastPercentage, true) != 0 ? item.color : ''}">{{ calcImg(item.percentage, item.lastPercentage, true) ? Math.abs(calcImg(item.percentage, item.lastPercentage, true)) + '%' : '持平'}}</span>
  64. </div>
  65. </div>
  66. </div>
  67. </div>
  68. </div>
  69. <div class="statistics">
  70. <div class="list">
  71. <div class="item" v-for="(item, index) in statisticsList" :key="index">
  72. <div class="top">
  73. <span>{{ item.label || '--' }}</span>
  74. </div>
  75. <div class="middle">
  76. <span :style="{ color: calcColor(item.value)}">{{ item.value || '--' }}</span>
  77. </div>
  78. <div class="bottom">
  79. <span>{{ item.time || '--' }}</span>
  80. </div>
  81. </div>
  82. </div>
  83. </div>
  84. <div class="line"></div>
  85. <!-- 数据图-柱形图 -->
  86. <div class="bar-chart">
  87. <div class="echart" ref="charts"></div>
  88. </div>
  89. <div class="line"></div>
  90. <!-- 建议 -->
  91. <div class="advice">
  92. <div class="content">
  93. <p class="title">健康建议</p>
  94. <p>{{ weekResult.Advice || '--' }}</p>
  95. </div>
  96. </div>
  97. <!-- 概览 -->
  98. <div class="overview">
  99. <div class="content">
  100. <div class="title">
  101. <span class="title-text">{{ surveyTitle }}</span>
  102. <div class="mood-list">
  103. <div class="item" v-for="(item, index) in emotionList" :key="index">
  104. <p>
  105. <span :style="{color: item.color}" class="day">{{ item.days }}</span>
  106. <span class="day-text">天</span>
  107. <img :src="calcWeekImg(item.days, item.lastDay)" alt="">
  108. <span class="day-text status">{{ calcWeekImg(item.days, item.lastDay, true) }}</span>
  109. </p>
  110. <p>{{ item.text }}</p>
  111. </div>
  112. </div>
  113. <!-- <div class="mood-list-no-data" v-else>
  114. <div class="no-data">
  115. <img src="../../../../assets/img/no_data_01.png" alt />
  116. <p>暂无数据</p>
  117. </div>
  118. </div>-->
  119. </div>
  120. </div>
  121. </div>
  122. </div>
  123. <div class="main no-data">
  124. <img src="../../../../assets/img/no_data_01.png" alt />
  125. <p>暂无数据</p>
  126. </div>
  127. </div>
  128. </template>
  129. <script>
  130. import { EmotionModel, PsyBaseUrl } from "@/config/models";
  131. import { isNotNull} from "@/utils/index";
  132. import axios from "axios";
  133. import APICore from "@/api/core";
  134. export default {
  135. name:'',
  136. data(){
  137. return {
  138. pieRightList: [
  139. /* {
  140. text: "无情绪倾向",
  141. count: 12,
  142. percentage: "80",
  143. color: "#62BD48"
  144. },
  145. {
  146. text: "轻度情绪倾向",
  147. count: 2,
  148. percentage: "80",
  149. color: "#ffde00"
  150. },
  151. {
  152. text: "中度情绪倾向",
  153. count: 1,
  154. percentage: "80",
  155. color: "#ff8a00"
  156. },
  157. {
  158. text: "重度情绪倾向",
  159. count: 1,
  160. percentage: "80",
  161. color: "#d70d0d"
  162. } */
  163. ],
  164. statisticsList: [
  165. /* { label: "最大值", value: "75", time: "08:15" },
  166. { label: "最小值", value: "40", time: "10:15" },
  167. { label: "最近值", value: "50", time: "18:15" } */
  168. ],
  169. emotionList: [],
  170. surveyTitle: '本周概览',
  171. echarts: null,
  172. // 路由传过来的情绪参数
  173. emoName: '',
  174. pieData: [],
  175. xAxisData: [],
  176. pieEcharts: null,
  177. monitoringCount: '',
  178. // 7天和30天最大数据列表
  179. weekAndMonData: [],
  180. defaultSeries: null,
  181. defaultLegend: [
  182. {
  183. name: `轻度${this.emoName}倾向`,
  184. icon: "rect",
  185. itemStyle: {
  186. color: "#ffde00"
  187. },
  188. textStyle: {
  189. fontSize: 12
  190. }
  191. },
  192. {
  193. name: `中度${this.emoName}倾向`,
  194. itemStyle: {
  195. color: "#ff8a00"
  196. },
  197. icon: "rect",
  198. textStyle: {
  199. fontSize: 12
  200. }
  201. },
  202. {
  203. name: `重度${this.emoName}倾向`,
  204. itemStyle: {
  205. color: "#d70d0d",
  206. },
  207. icon: "rect",
  208. textStyle: {
  209. fontSize: 12
  210. }
  211. },
  212. {
  213. name: `无${this.emoName}倾向`,
  214. icon: "rect",
  215. itemStyle: {
  216. color: "#62BD48"
  217. },
  218. textStyle: {
  219. // 项目遗留问题,新项目不需重新转换文字大小
  220. fontSize: 12
  221. }
  222. },
  223. ],
  224. params: {},
  225. weekResult: {},
  226. upImg: require("@/assets/img/psychological/up.png"),
  227. downImg: require("@/assets/img/psychological/down.png")
  228. }
  229. },
  230. created() {
  231. this.initEchartText();
  232. },
  233. mounted() {
  234. this.loadParams();
  235. this.initEchart();
  236. },
  237. watch: {
  238. // 监听数据发生变化 初始化各项图表
  239. emotionData: {
  240. handler(n, o) {
  241. this.initEchart();
  242. },
  243. deep: true
  244. },
  245. xAxisData: {
  246. handler(n, o) {
  247. this.initEchart();
  248. },
  249. deep: true
  250. },
  251. pieData: {
  252. handler(n, o) {
  253. this.initPieEchart();
  254. },
  255. deep: true
  256. },
  257. },
  258. computed: {
  259. // 折线图标题
  260. echartsTitle() {
  261. return `${this.emoName}数据图`;
  262. },
  263. defaultOptions() {
  264. return {
  265. time: {
  266. useUTC: false
  267. },
  268. title: {
  269. text: this.echartsTitle,
  270. left: 1,
  271. right: 25,
  272. bottom: 20,
  273. top: "3%",
  274. textStyle: {
  275. fontSize: 18,
  276. fontWeight: "bold"
  277. }
  278. },
  279. legend: {
  280. width: "65%",
  281. orient: "horizontal",
  282. right: '5%',
  283. top: '3%',
  284. bottom: "1%",
  285. itemHeight: 12,
  286. itemWidth: 12,
  287. itemGap: 10,
  288. align: 'left',
  289. selectedMode: false,
  290. data: [
  291. {
  292. name: `无${this.emoName}倾向`,
  293. icon: "rect",
  294. itemStyle: {
  295. color: "#62BD48"
  296. },
  297. textStyle: {
  298. fontSize: 12
  299. }
  300. },
  301. {
  302. name: `轻度${this.emoName}倾向`,
  303. icon: "rect",
  304. itemStyle: {
  305. color: "#ffde00"
  306. },
  307. textStyle: {
  308. fontSize: 12
  309. }
  310. },
  311. {
  312. name: `中度${this.emoName}倾向`,
  313. itemStyle: {
  314. color: "#ff8a00"
  315. },
  316. icon: "rect",
  317. textStyle: {
  318. fontSize: 12
  319. }
  320. },
  321. {
  322. name: `重度${this.emoName}倾向`,
  323. itemStyle: {
  324. color: "#d70d0d",
  325. },
  326. icon: "rect",
  327. textStyle: {
  328. fontSize: 12
  329. }
  330. },
  331. ],
  332. formatter: function(name) {
  333. // 自定义显示内容
  334. if (name.length > 6) {
  335. return (
  336. name.substring(0, 6) + "\n" + name.substring(6)
  337. );
  338. } else {
  339. return name;
  340. }
  341. }
  342. },
  343. grid: {
  344. show: true,
  345. borderWidth: 1,
  346. top: '20%',
  347. left: '1%',
  348. right: '5%',
  349. bottom: '15%',
  350. containLabel: true
  351. },
  352. xAxis: {
  353. type: "category",
  354. axisLine: {
  355. show: false
  356. },
  357. textStyle: {
  358. fontSize: 10
  359. },
  360. axisTick: {
  361. show: false
  362. },
  363. splitLine: {
  364. show: false,
  365. lineStyle: {
  366. color: "#ddd",
  367. width: 2
  368. }
  369. },
  370. nameLocation: 'center',
  371. axisLabel: {
  372. show: true,
  373. fontSize: 12,
  374. showMinLabel: true, //显示最小值
  375. showMaxLabel: true, //显示最大值
  376. },
  377. data: this.xAxisData
  378. },
  379. dataZoom: [
  380. {
  381. type: "inside",
  382. start: 0,
  383. end: 100,
  384. },
  385. {
  386. start: 0,
  387. end: 100,
  388. textStyle: {
  389. color: "#FFF",
  390. fontSize: 14
  391. },
  392. show: true,
  393. height: 25,
  394. bottom: '3%',
  395. handleStyle: {
  396. borderWidth: 1,
  397. borderCap: "square"
  398. }
  399. }
  400. ],
  401. tooltip: {
  402. trigger: "axis",
  403. textStyle: {
  404. fontSize: 14,
  405. align: "center"
  406. },
  407. formatter: function(params) {
  408. return params[0].marker + params[0].name + '--' + params[0].value + '</br>'
  409. }
  410. },
  411. yAxis: {
  412. type: "value",
  413. max: 100,
  414. min: 0,
  415. interval: 20,
  416. splitNumber : 1,
  417. boundaryGap : [ '5%', '5%' ],
  418. nameTextStyle: {
  419. fontSize: 13
  420. },
  421. alignTicks: true,
  422. axisTick: {
  423. show: true
  424. },
  425. axisLabel: {
  426. show: true,
  427. fontSize: 13,
  428. },
  429. splitLine: {
  430. show: true,
  431. lineStyle: {
  432. color: "#ddd",
  433. width: 1
  434. }
  435. }
  436. },
  437. series: [
  438. {
  439. name: `无${this.emoName}倾向`,
  440. type: "line",
  441. padding: 5,
  442. data: this.emotionData,
  443. symbol: "circle",
  444. symbolSize: 8,
  445. },
  446. {
  447. name: `轻度${this.emoName}倾向`,
  448. type: "line",
  449. data: ""
  450. },
  451. {
  452. name: `中度${this.emoName}倾向`,
  453. type: "line",
  454. data: ""
  455. },
  456. {
  457. name: `重度${this.emoName}倾向`,
  458. type: "line",
  459. data: ""
  460. }
  461. ]
  462. };
  463. },
  464. // 饼状图配置
  465. pieOption() {
  466. return {
  467. tooltip: {
  468. trigger: "item",
  469. textStyle: {
  470. fontSize: 14
  471. },
  472. position: "right"
  473. },
  474. legend: {
  475. top: "5%",
  476. left: "center",
  477. show: false
  478. },
  479. series: [
  480. {
  481. type: "pie",
  482. radius: ["40%", "80%"],
  483. avoidLabelOverlap: false,
  484. startAngle: 270, // 设置逆时针渲染
  485. itemStyle: {
  486. borderRadius: 5,
  487. borderColor: "#fff",
  488. borderWidth: 2,
  489. fontSize: 16
  490. },
  491. label: {
  492. show: false,
  493. position: "center",
  494. fontSize: 16
  495. },
  496. emphasis: {
  497. label: {
  498. show: false,
  499. fontSize: 16,
  500. fontWeight: "bold"
  501. }
  502. },
  503. labelLine: {
  504. show: false
  505. },
  506. data: this.pieData
  507. }
  508. ]
  509. };
  510. },
  511. },
  512. methods: {
  513. calcWeekImg(cur, last, callBackText) {
  514. let imgurl = '';
  515. let text = '';
  516. if(isNotNull(cur) && isNotNull(last) && this.weekAndMonData.length > 0) {
  517. let curNumber = Number(cur);
  518. let latNumber = Number(last);
  519. if(curNumber - latNumber == 0) {
  520. text = '持平';
  521. } else {
  522. imgurl = curNumber < latNumber ? this.downImg : this.upImg;
  523. text = Math.abs(curNumber - latNumber) + '天';
  524. }
  525. if(callBackText) {
  526. return text
  527. } else {
  528. return imgurl
  529. }
  530. }
  531. },
  532. // 计算显示是上升or下降的图片
  533. /**
  534. *
  535. * @param { 本周情绪比例} current
  536. * @param { 上周情绪比例 } last
  537. * @param { 是否返回对比比例 } isCallBackCompare
  538. */
  539. calcImg(current, last, isCallBackCompare) {
  540. let imgUrl = '';
  541. let compare = '';
  542. if(isNotNull(current) && isNotNull(last)) {
  543. compare = Number(current) - Number(last);
  544. imgUrl = compare > 0 ? this.upImg : compare == 0 ? '' : this.downImg
  545. }
  546. if(isCallBackCompare) {
  547. return compare
  548. } else {
  549. return imgUrl;
  550. }
  551. },
  552. async loadParams() {
  553. let params = this.$route.query;
  554. if (params) {
  555. this.params = params;
  556. if(!params.accessToken) {
  557. let authToken = await this.getAuth();
  558. this.$store.commit('ssjlToken', authToken);
  559. } else {
  560. this.$store.commit('ssjlToken', params.accessToken);
  561. }
  562. this.getWeekResultDetail();
  563. }
  564. },
  565. // 获取b端token
  566. getAuth() {
  567. let manufactorId = "5bf13062-a41e-4d00-ba14-1101aad12650";
  568. let that = this;
  569. return new Promise((resolve, reject) => {
  570. APICore.getAuth({ manufactorId: manufactorId }).then(res => {
  571. let data = res.data;
  572. if(data.code === 0) {
  573. resolve(res.data.data);
  574. } else {
  575. this.$toast.fail(`${data.message}`);
  576. reject('');
  577. }
  578. })
  579. })
  580. },
  581. initEchartText( ) {
  582. this.defaultSeries = [
  583. {
  584. name: ``,
  585. type: "line",
  586. padding: 5,
  587. data: this.emotionData,
  588. symbol: "circle",
  589. symbolSize: 8, // 拐点圆的大小
  590. areaStyle: {},
  591. },
  592. {
  593. name: `轻度${this.emoName}倾向`,
  594. type: "line",
  595. padding: 10,
  596. data: "",
  597. symbol: "circle",
  598. symbolSize: 8, // 拐点圆的大小
  599. },
  600. {
  601. name: `中度${this.emoName}倾向`,
  602. type: "line",
  603. data: ""
  604. },
  605. {
  606. name: `重度${this.emoName}倾向`,
  607. type: "line",
  608. data: ""
  609. }
  610. ];
  611. },
  612. calcTitle(type) {
  613. let title = '';
  614. switch(type) {
  615. case 1:
  616. title = '压力'
  617. break;
  618. case 2:
  619. title = '抑郁'
  620. break;
  621. case 3:
  622. title = '疲劳'
  623. break;
  624. default: break;
  625. };
  626. return title;
  627. },
  628. getWeekResultDetail() {
  629. this.$toast.loading('数据加载中');
  630. let baseUrl = process.env.NODE_ENV === 'production' ? 'https://dbmq.rzliot.com/auth_heart' : 'https://dbmq.rzliot.com/heart';
  631. let reqUrl = `${baseUrl}/api/Data/GetWeekResultDetail`;
  632. let reqParams = {
  633. recordId: this.params.recordId,
  634. };
  635. axios.get(reqUrl, {
  636. params: { ...reqParams },
  637. /* headers: { 'AccessToken': this.$store.getters.ssjlToken } */
  638. }).then(res => {
  639. const data = res.data.response;
  640. let chartData = data.ChartData ? (JSON.parse(data.ChartData)).filter(item => {return item.Key}) : [];
  641. if(data) {
  642. this.monitoringCount = data.Total;
  643. this.pieRightList = [];
  644. this.statisticsList = [];
  645. this.emotionList = [];
  646. this.weekResult = data;
  647. this.emoName = this.calcTitle(data.Type);
  648. }
  649. let None = {
  650. count: data.None,
  651. percentage: this.calcPercentage(
  652. data.None,
  653. data.Total
  654. ),
  655. text: `无${this.emoName}倾向`,
  656. color: "#62BD48",
  657. scale: data.NoneRatio,
  658. lastPercentage: this.calcPercentage(
  659. data.LastNone,
  660. data.LastTotal
  661. )
  662. };
  663. let Mild = {
  664. count: data.Mild,
  665. percentage: this.calcPercentage(
  666. data.Mild,
  667. data.Total
  668. ),
  669. text: `轻度${this.emoName}倾向`,
  670. color: "#ffde00",
  671. scale: data.MildRatio,
  672. lastPercentage: this.calcPercentage(
  673. data.LastMild,
  674. data.LastTotal
  675. )
  676. };
  677. let Moderate = {
  678. count: data.Moderate,
  679. percentage: this.calcPercentage(
  680. data.Moderate,
  681. data.Total
  682. ),
  683. text: `中度${this.emoName}倾向`,
  684. color: "#ff8a00",
  685. scale: data.ModerateRatio,
  686. lastPercentage: this.calcPercentage(
  687. data.LastModerate,
  688. data.LastTotal
  689. )
  690. };
  691. let Severe = {
  692. count: data.Severe,
  693. percentage: this.calcPercentage(
  694. data.Severe,
  695. data.Total
  696. ),
  697. text: `重度${this.emoName}倾向`,
  698. color: "#d70d0d",
  699. scale: data.SevereRatio,
  700. lastPercentage: this.calcPercentage(
  701. data.LastSevere,
  702. data.LastTotal
  703. )
  704. };
  705. // 饼状图右边数据
  706. this.pieRightList.push(None);
  707. this.pieRightList.push(Mild);
  708. this.pieRightList.push(Moderate);
  709. this.pieRightList.push(Severe);
  710. this.pieData = this.pieRightList.map(item => {
  711. item.value = item.count;
  712. item.itemStyle = {
  713. color: item.color
  714. };
  715. return item;
  716. });
  717. let Max = {
  718. label: "最大值",
  719. value: data.Max,
  720. time: data.MaxDesc
  721. ? this.currentDays === 0 ? this.$dayjs(data.MaxDesc).format("HH:mm")
  722. : this.$dayjs(data.MaxDesc).format("MM/DD HH:mm")
  723. : ""
  724. };
  725. let Min = {
  726. label: "最小值",
  727. value: data.Min,
  728. time: data.MinDesc
  729. ? this.currentDays === 0 ? this.$dayjs(data.MinDesc).format("HH:mm")
  730. : this.$dayjs(data.MinDesc).format("MM/DD HH:mm")
  731. : ""
  732. };
  733. let Avg = {
  734. label: "平均值",
  735. value: data.Avg,
  736. time: data.AvgDesc
  737. ? this.currentDays === 0 ? this.$dayjs(data.AvgDesc).format("HH:mm")
  738. : this.$dayjs(data.AvgDesc).format("MM/DD HH:mm")
  739. : ""
  740. };
  741. this.statisticsList.push(Max);
  742. this.statisticsList.push(Min);
  743. this.statisticsList.push(Avg);
  744. let NoneDay = {
  745. days: data.NoneDay,
  746. text: `无${this.emoName}倾向`,
  747. color: "#62BD48",
  748. lastDay: data.LastNoneDay,
  749. scale: data.NoneDayRatio
  750. };
  751. let MildDay = {
  752. days: data.MildDay,
  753. text: `轻度${this.emoName}倾向`,
  754. color: "#ffde00",
  755. lastDay: data.LastMildDay,
  756. scale: data.MildDayRatio
  757. };
  758. let ModerateDay = {
  759. days: data.ModerateDay,
  760. text: `中度${this.emoName}倾向`,
  761. color: "#ff8a00",
  762. lastDay: data.LastModerateDay,
  763. scale: data.ModerateDayRatio
  764. };
  765. let SevereDay = {
  766. days: data.SevereDay,
  767. text: `重度${this.emoName}倾向`,
  768. color: "#d70d0d",
  769. lastDay: data.LastSevereDay,
  770. scale: data.SevereDayRatio
  771. };
  772. this.emotionList.push(NoneDay);
  773. this.emotionList.push(MildDay);
  774. this.emotionList.push(ModerateDay);
  775. this.emotionList.push(SevereDay);
  776. // 图表数据
  777. this.emotionData = chartData.map(item => {
  778. return {
  779. value: item.Value,
  780. itemStyle: {
  781. color: this.calcResultColor(item.Level)
  782. }
  783. };
  784. });
  785. this.weekAndMonData = chartData.map((item, index) => {
  786. return {
  787. value: [index, item.MinValue, item.MaxValue],
  788. };
  789. });
  790. this.xAxisData = chartData.map(item => {
  791. return item.Key ? this.$dayjs(item.Key.replace(/-/g, "/")).format(
  792. "MM/DD"
  793. ) : item.key;
  794. });
  795. let emphasisStyle = {
  796. itemStyle: {
  797. shadowBlur: 10,
  798. shadowColor: 'rgba(0,0,0,0.3)'
  799. }
  800. };
  801. let that = this;
  802. // 7天和30天变成柱状图
  803. this.weekAndMonthSeries = [
  804. {
  805. name: '平均值',
  806. type: 'scatter',
  807. symbolSize: 8,
  808. data: this.emotionData,
  809. },
  810. {
  811. name: '',
  812. type: 'custom',
  813. data: this.weekAndMonData,
  814. renderItem: function (params, api) {
  815. var categoryIndex = api.value(0);
  816. var end = api.coord([categoryIndex, api.value(1)]);
  817. var start = api.coord([categoryIndex, api.value(2)]);
  818. var width = 8;
  819. var rectShape = that.$echarts.graphic.clipRectByRect(
  820. {
  821. x: start[0] - width / 2,
  822. y: start[1],
  823. width: 8,
  824. height: end[1] - start[1],
  825. },
  826. {
  827. x: params.coordSys.x,
  828. y: params.coordSys.y,
  829. width: params.coordSys.width,
  830. height: params.coordSys.height,
  831. }
  832. );
  833. if(rectShape) {
  834. rectShape.r = [10]
  835. };
  836. return (
  837. rectShape && {
  838. type: "rect",
  839. shape: rectShape,
  840. style: api.style(),
  841. }
  842. );
  843. },
  844. itemStyle: {
  845. opacity: 0.8,
  846. },
  847. encode: {
  848. y: [1, 2],
  849. x: 0,
  850. },
  851. },
  852. {
  853. name: `轻度${this.emoName}倾向`,
  854. type: 'scatter',
  855. symbolSize: 8,
  856. data: '',
  857. },
  858. {
  859. name: `中度${this.emoName}倾向`,
  860. type: 'scatter',
  861. symbolSize: 8,
  862. data: '',
  863. },
  864. {
  865. name: `重度${this.emoName}倾向`,
  866. type: 'scatter',
  867. symbolSize: 8,
  868. data: '',
  869. },
  870. {
  871. name: `无${this.emoName}倾向`,
  872. type: 'scatter',
  873. symbolSize: 8,
  874. data: '',
  875. },
  876. ];
  877. // 点击提示此时为空
  878. this.defaultOptions.tooltip = {
  879. trigger: "axis",
  880. formatter: function(params) {
  881. if(params) {
  882. return params[0].marker + '平均值:' + params[0].name + '--' + params[0].value + '</br>' +
  883. params[1].marker + '最大值:' + params[1].name + '--' + params[1].value[2] + '</br>' +
  884. params[1].marker + '最小值:' + params[1].name + '--' + params[1].value[1];
  885. }
  886. }
  887. };
  888. this.defaultOptions.series = this.weekAndMonthSeries;
  889. this.$toast.success('数据加载完成');
  890. })
  891. },
  892. initEchart() {
  893. if (
  894. this.echarts != null &&
  895. this.echarts != "" &&
  896. this.echarts != undefined
  897. ) {
  898. this.echarts.dispose();
  899. }
  900. this.echarts = this.$echarts.init(this.$refs.charts);
  901. this.echarts.setOption(this.defaultOptions);
  902. },
  903. // 初始化饼状图
  904. initPieEchart() {
  905. if (
  906. this.pieEcharts != null &&
  907. this.pieEcharts != "" &&
  908. this.pieEcharts != undefined
  909. ) {
  910. this.pieEcharts.dispose();
  911. }
  912. this.pieEcharts = this.$echarts.init(this.$refs.pieChart);
  913. this.pieEcharts.setOption(this.pieOption);
  914. },
  915. onNavBack() {
  916. this.$router.push({
  917. name: 'psychological',
  918. query: {
  919. uid: this.params.uid,
  920. name: this.params.name
  921. }
  922. });
  923. },
  924. // 计算字体显示的颜色
  925. calcColor(value) {
  926. let color = "";
  927. if (value <= 40) {
  928. color = "#62BD48";
  929. } else if (value > 40 && value <= 65) {
  930. color = "#ffde00";
  931. } else if (value > 65 && value <= 80) {
  932. color = "#ff8a00";
  933. } else if (value > 80) {
  934. color = "#d70d0d";
  935. } else {
  936. color = "";
  937. }
  938. return color;
  939. },
  940. // 计算百分比
  941. calcPercentage(value, total) {
  942. if (
  943. typeof value !== "number" ||
  944. typeof total !== "number" ||
  945. total === 0
  946. ) {
  947. return 0;
  948. }
  949. let milValue = value * 1000;
  950. let milTotal = total * 1000;
  951. return Math.round((milValue / milTotal) * 100);
  952. },
  953. // 计算结果采用哪种颜色
  954. calcResultColor(value, isCallBackClass) {
  955. let color = "";
  956. let className = "";
  957. switch(value) {
  958. case '0', 0:
  959. color = "#62BD48";
  960. className = 'none';
  961. break;
  962. case '1', 1:
  963. color = "#ffde00";
  964. className = 'mild';
  965. break;
  966. case '2', 2:
  967. color = "#ff8a00";
  968. className = 'moderate';
  969. break;
  970. case '3', 3:
  971. color = "#d70d0d";
  972. className = 'severe';
  973. break;
  974. }
  975. return isCallBackClass ? className : color;
  976. },
  977. // 重新拼接日期
  978. resetDate(startDate, endDate) {
  979. let callBackDate = '';
  980. if(startDate && endDate) {
  981. callBackDate = startDate.replace(/-/g, ".") + '-' + endDate.slice(5,endDate.length).replace(/-/g, ".");
  982. };
  983. return callBackDate
  984. }
  985. }
  986. }
  987. </script>
  988. <style scoped lang="scss">
  989. @import "./index.scss";
  990. </style>