ProfileCard.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <template>
  2. <div class="min-w-[320px] space-y-2 text-sm">
  3. <div class="bg-white flex items-center">
  4. <div class="w-12 h-12">
  5. <img
  6. :src="archivesInfo?.gender == 1 ? man : woman"
  7. round
  8. class="w-12 h-12 rounded-full mr-4"
  9. />
  10. </div>
  11. <div class="flex-1 pl-4 space-y-0">
  12. <div class="flex items-center">
  13. <span>{{ archivesInfo.name }}</span>
  14. <div class="flex items-center my-1 ml-2">
  15. <div class="flex items-center mr-4">
  16. <img src="@/assets/icon-gender.png" alt="" class="w-5 h-5" />
  17. <span class="text-sm text-gray-700">{{
  18. archivesInfo.gender == 1 ? "男" : "女"
  19. }}</span>
  20. </div>
  21. <div class="flex items-center my-1">
  22. <img src="@/assets/icon-birthday.png" alt="" class="w-5 h-5" />
  23. <span class="text-sm text-gray-700"
  24. >{{ formatAge(archivesInfo.birthday) }}岁</span
  25. >
  26. </div>
  27. </div>
  28. </div>
  29. <div class="w-full">
  30. <div class="flex items-center mb-2">
  31. <span>档案号:</span>
  32. <span>{{ archivesInfo.id }}</span>
  33. <CopyDocument
  34. v-if="archivesInfo.id"
  35. class="w-4 text-blue-500 cursor-copy ml-1"
  36. v-copy="archivesInfo.id"
  37. />
  38. </div>
  39. <div class="flex items-center">
  40. <span
  41. >联系方式:{{
  42. archivesInfo.accounts.find(v => v.type === 1)?.account
  43. }}</span
  44. >
  45. <CopyDocument
  46. v-if="archivesInfo?.accounts?.find(v => v.type === 1)?.account"
  47. class="w-4 text-blue-500 cursor-copy ml-1"
  48. v-copy="archivesInfo.accounts.find(v => v.type === 1)?.account"
  49. />
  50. </div>
  51. </div>
  52. </div>
  53. </div>
  54. </div>
  55. </template>
  56. <script lang="ts" setup>
  57. import { ref, watch } from "vue";
  58. import { useRoute, useRouter } from "vue-router";
  59. // import ManagementPlan from "./components/ManagementPlan.vue";
  60. import {
  61. CopyDocument,
  62. Fold,
  63. ArrowLeft,
  64. ArrowRight
  65. } from "@element-plus/icons-vue";
  66. import man from "@/assets/icon-man.png";
  67. import woman from "@/assets/icon-woman.png";
  68. import {
  69. formatAge,
  70. parseJsonData,
  71. request,
  72. transformDataExpand
  73. } from "@/utils";
  74. const props = defineProps({
  75. id: {
  76. type: String
  77. }
  78. });
  79. const archivesInfo = ref({
  80. id: "",
  81. name: "",
  82. avatar: "",
  83. gender: 0,
  84. birthday: "",
  85. mainArchivesId: "",
  86. accounts: []
  87. });
  88. const highRiskDiseaseList = ref([]);
  89. const recommendValues = ref({
  90. medicalHistory: [],
  91. medicationStatus: [],
  92. susceptibilityGene: []
  93. });
  94. const getArchivesDetail = async () => {
  95. if (!props.id) return;
  96. const { data } = await request.get(
  97. "/archivesService/mechanism/archives/detail",
  98. {
  99. params: {
  100. archivesId: props.id
  101. }
  102. }
  103. );
  104. archivesInfo.value = data.detail;
  105. highRiskDiseaseList.value = data.highRiskDiseaseList;
  106. recommendValues.value = data.recommendValues;
  107. };
  108. watch(
  109. () => props.id,
  110. () => {
  111. console.log("监听成功");
  112. getArchivesDetail();
  113. },
  114. { deep: true, immediate: true }
  115. );
  116. </script>