RightPanel.vue 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. <template>
  2. <div class="right-Panel-container">
  3. <div class="title-container">
  4. <span class="title-text">当日重点关注:发热门诊病历99例</span>
  5. </div>
  6. <div class="top-chart-container">
  7. <div class="chart-left-container">
  8. <titleContent>本市发热腹综情况</titleContent>
  9. <div class="charts-box" id="leftChartId" ref="leftChartId"></div>
  10. </div>
  11. <div class="chart-right-container">
  12. <titleContent>发热门诊、呼综情况</titleContent>
  13. <div class="charts-box" id="rightChartId" ref="rightChartId"></div>
  14. </div>
  15. </div>
  16. <div class="title-box">
  17. <titleContent>发热门诊病例分区</titleContent>
  18. </div>
  19. <div class="partition-box">
  20. <div
  21. class="partition-card"
  22. v-for="(key, index) in Object.keys(partitionData)"
  23. :key="index + key + ''"
  24. >
  25. <div class="title">{{ key }}</div>
  26. <template v-for="(childKey, index1) in Object.keys(partitionData[key])" :key="index1">
  27. <template v-if="childKey == 'infection'">
  28. <div class="text-box">
  29. <span>传染病</span>
  30. <span class="num">{{ partitionData[key][childKey][0].num }}</span>
  31. </div>
  32. </template>
  33. <template v-else-if="childKey == 'fever'">
  34. <div class="text-box">
  35. <span>发热</span> <span class="num">{{ partitionData[key][childKey][0].num }}</span>
  36. </div>
  37. </template>
  38. <template v-else-if="childKey == 'fuzong'">
  39. <div class="text-box text-box-border">
  40. <span>腹综</span>
  41. <span class="num">{{ getSum(partitionData[key][childKey]) }}</span>
  42. </div>
  43. <div
  44. class="text-box text-child-box"
  45. v-for="(item, index2) in partitionData[key][childKey]"
  46. :key="index2"
  47. >
  48. <span>{{ item.type }}</span>
  49. <span class="num">{{ partitionData[key][childKey][0].num }}</span>
  50. </div>
  51. </template>
  52. <template v-else-if="childKey == 'cold'">
  53. <div class="text-box">
  54. <span>感冒</span>
  55. <span class="num">{{ getSum(partitionData[key][childKey]) }}</span>
  56. </div>
  57. <div
  58. class="text-box text-child-box"
  59. v-for="(item, index2) in partitionData[key][childKey]"
  60. :key="index2"
  61. >
  62. <span>{{ item.type }}</span>
  63. <span class="num">{{ partitionData[key][childKey][0].num }}</span>
  64. </div>
  65. </template>
  66. </template>
  67. </div>
  68. </div>
  69. </div>
  70. </template>
  71. <script setup>
  72. import { onMounted, ref } from 'vue';
  73. import titleContent from './TitleContent.vue';
  74. import * as echarts from 'echarts';
  75. import { getDataByArea } from '@/service/api/mapRequest';
  76. import { stackRightOptions, stackLeftOptions } from '@/utils/chartsOptions.js';
  77. const partitionData = ref({});
  78. const leftChartId = ref('');
  79. const rightChartId = ref('');
  80. //初始化echarts图
  81. const initChart = (chartDom, option) => {
  82. const myChart = echarts.init(chartDom);
  83. option && myChart.setOption(option);
  84. };
  85. //分区看板
  86. const getLeftChartData = async () => {
  87. try {
  88. const res = await getDataByArea();
  89. if (res.code == 200 && res.data) {
  90. //重塑数据结构
  91. Object.keys(res.data).forEach((key) => {
  92. if (res.data && res.data[key]) {
  93. res.data[key].forEach((item) => {
  94. if (!partitionData.value[key]) {
  95. partitionData.value[key] = {};
  96. }
  97. let keyName;
  98. if (item.diseaseType == '1') {
  99. //传染病
  100. keyName = 'infection';
  101. } else if (item.diseaseType == '2') {
  102. //发热
  103. keyName = 'fever';
  104. } else if (item.diseaseType == '3') {
  105. //腹宗
  106. keyName = 'fuzong';
  107. } else if (item.diseaseType == '4') {
  108. //感冒
  109. keyName = 'cold';
  110. }
  111. if (keyName) {
  112. if (!partitionData.value[key][keyName]) {
  113. partitionData.value[key][keyName] = [];
  114. }
  115. partitionData.value[key][keyName].push(item);
  116. }
  117. });
  118. }
  119. });
  120. console.log(partitionData.value);
  121. } else {
  122. console.log(res.msg || 'getDataByArea:error');
  123. }
  124. } catch (error) {
  125. console.log(error);
  126. }
  127. };
  128. //求和
  129. const getSum = (numArr) => {
  130. return numArr
  131. .map((item) => item.num)
  132. .reduce((pre, next) => {
  133. return pre + next;
  134. });
  135. };
  136. onMounted(() => {
  137. getLeftChartData();
  138. let xAxisData = [];
  139. const yAxisData = {
  140. data1: [],
  141. data2: [],
  142. data3: [],
  143. data4: []
  144. };
  145. for (let i = 0; i < 10; i++) {
  146. xAxisData.push('202' + i);
  147. yAxisData.data1.push(+(Math.random() * 2).toFixed(2));
  148. yAxisData.data2.push(+(Math.random() * 5).toFixed(2));
  149. yAxisData.data3.push(+(Math.random() + 0.3).toFixed(2));
  150. yAxisData.data4.push(+Math.random().toFixed(2));
  151. }
  152. initChart(rightChartId.value, stackRightOptions(xAxisData, yAxisData));
  153. initChart(leftChartId.value, stackLeftOptions(xAxisData, yAxisData));
  154. });
  155. </script>
  156. <style lang="scss">
  157. .right-Panel-container {
  158. .title-container {
  159. background-image: url('@/assets/image/message-bg.png');
  160. margin-top: 67px;
  161. display: flex;
  162. justify-content: flex-start;
  163. align-items: center;
  164. background-size: 100% 100%;
  165. width: 703px;
  166. height: 50px;
  167. .title-text {
  168. font-weight: bold;
  169. font-size: 18px;
  170. color: #ffffff;
  171. line-height: 29px;
  172. padding-left: 15px;
  173. }
  174. }
  175. .top-chart-container {
  176. display: flex;
  177. justify-content: space-between;
  178. padding-top: 36px;
  179. .chart-left-container,
  180. .chart-right-container {
  181. width: calc(50% - 30px);
  182. .charts-box {
  183. width: 100%;
  184. height: 175px;
  185. margin-top: 30px;
  186. }
  187. }
  188. }
  189. .title-box {
  190. width: calc(50% - 10px);
  191. margin-top: 20px;
  192. }
  193. .partition-box {
  194. display: flex;
  195. justify-content: flex-start;
  196. align-content: flex-start;
  197. flex-wrap: wrap;
  198. width: 100%;
  199. height: 621px;
  200. overflow-y: auto;
  201. padding-top: 29px;
  202. gap: 24px;
  203. scrollbar-width: none;
  204. .partition-card {
  205. width: 162px;
  206. background-image: url('@/assets/image/normal-bg.png');
  207. background-repeat: no-repeat;
  208. background-size: 100% 60px;
  209. margin-bottom: 5%;
  210. .title {
  211. font-family: Microsoft YaHei;
  212. font-weight: 400;
  213. font-size: 16px;
  214. color: #0080ff;
  215. line-height: 32px;
  216. font-style: italic;
  217. padding-left: 14px;
  218. position: relative;
  219. top: -13px;
  220. }
  221. .text-box {
  222. color: #585858;
  223. display: flex;
  224. justify-content: space-between;
  225. font-size: 14px;
  226. padding: 5px 5px 0 9px;
  227. .num {
  228. color: #0080ff;
  229. font-size: 16px;
  230. }
  231. }
  232. .text-box-border {
  233. border-bottom: 1px solid #0080ff;
  234. }
  235. .text-child-box {
  236. padding-left: 20px;
  237. }
  238. }
  239. }
  240. }
  241. </style>