天波h5前端应用
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

231 lignes
7.9KB

  1. <!--
  2. * @Date: 2023-11-03 09:26:51
  3. * @LastEditors: JinxChen
  4. * @LastEditTime: 2023-11-04 10:38:00
  5. * @FilePath: \TelpoH5FrontendWeb\src\views\health\psychological\report\report-entry.vue
  6. * @description:
  7. -->
  8. <template>
  9. <div class="report-main">
  10. <van-nav-bar title="心理监测" :border="true" :left-arrow="true" @click-left="onNavBack">
  11. <template #left>
  12. <van-icon name="arrow-left" size="24" style="padding: 0" />
  13. </template>
  14. </van-nav-bar>
  15. <div class="main">
  16. <div class="tabs"></div>
  17. <div class="content">
  18. <div class="list" v-if="weekList">
  19. <div
  20. class="item"
  21. v-for="(item, index) in weekList"
  22. :key="index"
  23. @click="onClickItem(item.recordId)"
  24. >
  25. <div class="left">
  26. <img :src="weekImg" alt />
  27. <div class="middle">
  28. <div class="title">
  29. <span>周报</span>
  30. <p>{{ item.name }}</p>
  31. </div>
  32. <div class="overall">
  33. <div class="left">
  34. <span>总评</span>
  35. <p>{{ item. summary}}</p>
  36. </div>
  37. </div>
  38. <!-- <div class="trend">
  39. <p>( <span>无抑郁倾向</span><span>5%</span>,<span>轻度抑郁倾向</span> <span>5%</span> )</p>
  40. </div>-->
  41. </div>
  42. </div>
  43. <div class="right">
  44. <img :src="moreImg" alt />
  45. </div>
  46. </div>
  47. </div>
  48. <div class="list no-data" v-else>
  49. <img src="../../../../assets/img/no_data_01.png" alt />
  50. <p>暂无数据</p>
  51. </div>
  52. </div>
  53. </div>
  54. </div>
  55. </template>
  56. <script>
  57. import { EmotionModel, PsyBaseUrl } from "@/config/models";
  58. import axios from "axios";
  59. export default {
  60. name:'',
  61. data(){
  62. return {
  63. active: 0,
  64. tabImgUrl: require("@/assets/img/psychological/statistical_form.png"),
  65. selectDownImg: require("@/assets/img/psychological/select_down.png"),
  66. weekImg: require("@/assets/img/psychological/week_report.png"),
  67. moreImg: require("@/assets/img/psychological/more.png"),
  68. weekList: [],
  69. uid: '',
  70. emoName: '',
  71. }
  72. },
  73. methods: {
  74. onNavBack() {},
  75. loadParams() {
  76. let params = this.$route.query;
  77. if (params) {
  78. this.emoName = EmotionModel[params.name].name;
  79. this.emoType = EmotionModel[params.name].type;
  80. this.uid = params.uid;
  81. }
  82. },
  83. onClickItem(recordId) {
  84. this.$router.push({
  85. name: 'psychologicalReport',
  86. query: {
  87. recordId: recordId,
  88. name: 'depression',
  89. isShowLeft: true
  90. }
  91. })
  92. },
  93. getWeekResult() {
  94. this.$toast.loading('数据加载中');
  95. let reqUrl = 'https://dbmq.rzliot.com/heart/api/Data/GetWeekResult';
  96. let reqParams = {
  97. uid: /* this.uid */'2023101521270090082',
  98. type: this.emoType
  99. };
  100. axios.get(reqUrl, {
  101. params: { ...reqParams },
  102. /* headers: { 'AccessToken': this.$store.getters.ssjlToken } */
  103. }).then(res => {
  104. console.log("res", res);
  105. const data = res.data.response;
  106. this.weekList = data.map(item => {
  107. return {
  108. name: item.Name.replace('周报', ''),
  109. recordId: item.RecordId,
  110. summary: item.Summary,
  111. type: this.emoType
  112. }
  113. });
  114. this.$toast.success('数据加载完成');
  115. })
  116. }
  117. },
  118. mounted() {
  119. this.loadParams();
  120. this.getWeekResult();
  121. }
  122. }
  123. </script>
  124. <style scoped lang="scss">
  125. .report-main {
  126. height: 100vh;
  127. width: 100%;
  128. overflow: hidden;
  129. background-color: #f5f5f5;
  130. .main {
  131. height: calc(100vh - 45px);
  132. overflow: scroll;
  133. .content {
  134. position: relative;
  135. .list {
  136. .item {
  137. display: flex;
  138. justify-content: space-between;
  139. align-items: flex-end;
  140. padding: 34px 15px;
  141. background-color: #fff;
  142. margin-bottom: 11px;
  143. .left {
  144. display: flex;
  145. justify-content: flex-start;
  146. align-items: flex-start;
  147. img {
  148. height: 25px;
  149. width: 25px;
  150. }
  151. .middle {
  152. .title,
  153. .overall,
  154. .trend {
  155. display: flex;
  156. justify-content: flex-start;
  157. align-items: center;
  158. padding-left: 13px;
  159. span,
  160. p {
  161. font-size: 18px;
  162. font-family: Source Han Sans CN;
  163. font-weight: 400;
  164. color: #8d8d8d;
  165. line-height: 30px;
  166. }
  167. }
  168. .title {
  169. span {
  170. padding-right: 20px;
  171. }
  172. p {
  173. color: #282828;
  174. }
  175. }
  176. .overall {
  177. display: flex;
  178. justify-content: space-between;
  179. align-items: center;
  180. width: 100%;
  181. .left {
  182. p {
  183. padding-left: 20px;
  184. font-weight: bold;
  185. }
  186. }
  187. .right {
  188. img {
  189. height: 15px;
  190. width: 9px;
  191. }
  192. }
  193. }
  194. .trend {
  195. align-items: flex-start;
  196. text-align: left;
  197. }
  198. }
  199. }
  200. .right {
  201. img {
  202. width: 9px;
  203. height: 15px;
  204. }
  205. }
  206. }
  207. &.no-data {
  208. height: calc(100vh - 45px);
  209. width: 100%;
  210. @include center();
  211. flex-direction: column;
  212. img {
  213. height: 110px;
  214. width: 175px;
  215. }
  216. p {
  217. color: #999;
  218. font-size: 12px;
  219. padding: 20px 0 65px 0;
  220. }
  221. }
  222. }
  223. }
  224. }
  225. }
  226. </style>