index.html 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354
  1. <div class="copd-service-record-box">
  2. <div class="service-base-info">
  3. <div class="base-title ki-title ta-title">
  4. 基本信息
  5. </div>
  6. <div class="base-content">
  7. <div class="base-info-item">
  8. 姓名:{{detailInfo.name}}
  9. </div>
  10. <div class="base-info-item">
  11. 性别:{{detailInfo.sexName}}
  12. </div>
  13. <div class="base-info-item">
  14. 证件号码:{{detailInfo.idcard}}
  15. </div>
  16. <div class="base-info-item">
  17. 联系电话:{{detailInfo.mobile}}
  18. </div>
  19. <div class="base-info-item">
  20. 下转状态:{{detailInfo.turnDownStatus==1?'已下转':'未下转'}}
  21. </div>
  22. <template v-if="detailInfo.turnDownStatus==1&&detailInfo.receiveStatus!=1">
  23. <div class="base-info-item">
  24. 分配医院:{{detailInfo.hospital}}
  25. </div>
  26. <div class="base-info-item">
  27. 分配医生:{{detailInfo.operaterName}}
  28. </div>
  29. </template>
  30. <div class="base-info-item">
  31. 接收状态:{{detailInfo.receiveStatus==1?'已接收':'未接收'}}
  32. </div>
  33. <div class="base-info-item">
  34. 接收医院:{{detailInfo.operaterName}}
  35. </div>
  36. <div class="base-info-item">
  37. 接收医生:{{detailInfo.doctorName}}
  38. </div>
  39. </div>
  40. </div>
  41. <div class="service-record-timeline">
  42. <div class="title">服务记录</div>
  43. <div class="record-list time-line">
  44. <div class="timeline" v-loading="loading">
  45. <div v-for="(event, eI) in events" :key="eI">
  46. <div class="timeline-item" v-if="event.flag">
  47. <div class="timeline-time" :id="'left-' + eI">
  48. {{ event.createTime&&event.createTime.substring(0,4)}}
  49. </div>
  50. </div>
  51. <div class="timeline-item" :class="{'timeline-item-blue-dot': event.createTime != null}">
  52. <div class="timeline-time" :id="'left-' + eI">{{event.createTime&& event.createTime.slice(5) }}</div>
  53. <div class="timeline-content" :id="'right-' + eI">
  54. <div class="data-item">
  55. <div class="data-title">
  56. {{event.type==1?'下转患者':event.type==2?'医生接收':event.type==3?'居民流转':
  57. event.type==4?'医生退回':event.type==5?'医生随访':'档案修改'}}
  58. </div>
  59. <div class="data-cont" v-if="event.type!=5&&event.type!=6">
  60. <div style="width: 50%">
  61. <span style="color: #9fa2a8">下转状态:</span>
  62. <span style="color: #656565">
  63. <template>{{event.turnDownStatus==0?'未下转':'已下转'}}</template>
  64. </span>
  65. </div>
  66. <div style="width: 50%">
  67. <span style="color: #9fa2a8">接收状态:</span>
  68. <span style="color: #656565">
  69. <template>{{event.receiveStatus==0?'未接收':'已接收'}}</template>
  70. </span>
  71. </div>
  72. <div style="width: 50%">
  73. <span style="color: #9fa2a8">接收医生:</span>
  74. <span style="color: #656565">
  75. <template>{{event.doctorName}}</template>
  76. </span>
  77. </div>
  78. <div style="width: 50%">
  79. <span style="color: #9fa2a8">是否流转:</span>
  80. <span style="color: #656565">
  81. <template>{{event.isCirculation==0?'否':'是'}}</template>
  82. <!-- <template v-if="i% 3 == 0">———</template>
  83. <template v-else>这是数据值,他可能会很长</template> -->
  84. </span>
  85. </div>
  86. <div style="width: 50%">
  87. <span style="color: #9fa2a8">流转去向:</span>
  88. <span style="color: #656565">
  89. <template v-if="event.isCirculation==0">———</template>
  90. <template v-else>{{event.circulation}}</template>
  91. </span>
  92. </div>
  93. <div style="width: 50%">
  94. <span style="color: #9fa2a8">是否回退:</span>
  95. <span style="color: #656565">
  96. <template>{{event.isBack==0?'否':'是'}}</template>
  97. <!-- <template v-if="i% 3 == 0">———</template>
  98. <template v-else>这是数据值,他可能会很长</template> -->
  99. </span>
  100. </div>
  101. <div style="width: 50%">
  102. <span style="color: #9fa2a8">回退原因:</span>
  103. <span style="color: #656565">
  104. <template v-if="event.isBack==0">———</template>
  105. <template v-else>{{event.backReason}}</template>
  106. </span>
  107. </div>
  108. <div style="width: 50%">
  109. <span style="color: #9fa2a8">是否失访:</span>
  110. <span style="color: #656565">
  111. <template>{{event.isLost==0?'否':'是'}}</template>
  112. <!-- <template v-if="i% 3 == 0">———</template>
  113. <template v-else>这是数据值,他可能会很长</template> -->
  114. </span>
  115. </div>
  116. <div style="width: 50%">
  117. <span style="color: #9fa2a8">操作医生:</span>
  118. <span style="color: #656565">
  119. <template>{{event.operaterName}}</template>
  120. <!-- <template v-if="i% 3 == 0">———</template>
  121. <template v-else>这是数据值,他可能会很长</template> -->
  122. </span>
  123. </div>
  124. <div style="width: 50%">
  125. <span style="color: #9fa2a8">所属机构:</span>
  126. <span style="color: #656565">
  127. <template>{{event.orgName}}</template>
  128. <!-- <template v-if="i% 3 == 0">———</template>
  129. <template v-else>这是数据值,他可能会很长</template> -->
  130. </span>
  131. </div>
  132. </div>
  133. <div class="data-cont" v-else-if="event.type==5">
  134. <div style="width: 50%">
  135. <span style="color: #9fa2a8">下转状态:</span>
  136. <span style="color: #656565">
  137. <template>{{event.turnDownStatus==0?'未下转':'已下转'}}</template>
  138. </span>
  139. </div>
  140. <div style="width: 50%">
  141. <span style="color: #9fa2a8">接收状态:</span>
  142. <span style="color: #656565">
  143. <template>{{event.receiveStatus==0?'未接收':'已接收'}}</template>
  144. </span>
  145. </div>
  146. <div style="width: 50%">
  147. <span style="color: #9fa2a8">接收医院:</span>
  148. <span style="color: #656565">
  149. <template>{{event.hospitalName}}</template>
  150. </span>
  151. </div>
  152. <div style="width: 50%">
  153. <span style="color: #9fa2a8">接收医生:</span>
  154. <span style="color: #656565">
  155. <template>{{event.doctorName}}</template>
  156. </span>
  157. </div>
  158. <div style="width: 50%">
  159. <span style="color: #9fa2a8">是否流转:</span>
  160. <span style="color: #656565">
  161. <template>{{event.isCirculation==0?'否':'是'}}</template>
  162. <!-- <template v-if="i% 3 == 0">———</template>
  163. <template v-else>这是数据值,他可能会很长</template> -->
  164. </span>
  165. </div>
  166. <div style="width: 50%">
  167. <span style="color: #9fa2a8">流转去向:</span>
  168. <span style="color: #656565">
  169. <template v-if="event.isCirculation==0">———</template>
  170. <template v-else>{{event.circulation}}</template>
  171. </span>
  172. </div>
  173. <div style="width: 50%">
  174. <span style="color: #9fa2a8">是否回退:</span>
  175. <span style="color: #656565">
  176. <template>{{event.isBack==0?'否':'是'}}</template>
  177. <!-- <template v-if="i% 3 == 0">———</template>
  178. <template v-else>这是数据值,他可能会很长</template> -->
  179. </span>
  180. </div>
  181. <div style="width: 50%">
  182. <span style="color: #9fa2a8">是否回退:</span>
  183. <span style="color: #656565">
  184. <template v-if="event.isBack==0">———</template>
  185. <template v-else>{{event.backReason}}</template>
  186. </span>
  187. </div>
  188. <div style="display: flex; justify-content: space-between; width: 100%; ">
  189. <div class="data-title">随访信息</div>
  190. </div>
  191. <div style="width: 50%">
  192. <span style="color: #9fa2a8">随访医生:</span>
  193. <span style="color: #656565">
  194. <template>{{event.jkcopdFollowup.doctorName}}</template>
  195. </span>
  196. </div>
  197. <div style="width: 50%">
  198. <span style="color: #9fa2a8">随访机构:</span>
  199. <span style="color: #656565">
  200. <template>{{event.jkcopdFollowup.hospitalName}}</template>
  201. </span>
  202. </div>
  203. <div style="width: 50%">
  204. <span style="color: #9fa2a8">随访时间:</span>
  205. <span style="color: #656565">
  206. <template>{{event.jkcopdFollowup.followupDate}}</template>
  207. </span>
  208. </div>
  209. <div style="width: 50%">
  210. <span style="color: #9fa2a8">生存状态:</span>
  211. <span style="color: #656565">
  212. <template>{{event.jkcopdFollowup.isLive==1?'生存':'死亡'}}</template>
  213. </span>
  214. </div>
  215. </div>
  216. <div class="data-title" style="color: #12B7F5; font-size: 14px" v-if="event.type==5" @click="showDetail(event)"> 查看随访详情</div>
  217. <div class="data-cont" v-else>
  218. <div style="width: 50%" v-for="item in event.achievesRecordList" :key="item.id">
  219. <span style="color: #9fa2a8">{{item.classFieldName}}:</span>
  220. <span style="color: #656565">
  221. <template>{{item.newCommentName}}</template>
  222. </span>
  223. </div>
  224. </div>
  225. </div>
  226. </div>
  227. </div>
  228. </div>
  229. </div>
  230. </div>
  231. </div>
  232. <div class="cops-service-record-bottom-box">
  233. <el-button @click="recordBack">返回</el-button>
  234. </div>
  235. <el-dialog title="随访详情" :visible.sync="dialog" width="50%">
  236. <div class="copd-follow-up-dialog-box">
  237. <div class="copd-bb-record-info">
  238. <div class="title ki-title ta-title">
  239. 随访信息
  240. </div>
  241. <div class="copd-bb-base-content">
  242. <div class="copd-bb-base-info-item">
  243. 随访时间:{{followInfo.createTime}}
  244. </div>
  245. <div class="copd-bb-base-info-item">
  246. 随访医生:{{followInfo.doctorName}}
  247. </div>
  248. <div class="copd-bb-base-info-item">
  249. {{followInfo.hospitalName}}
  250. </div>
  251. </div>
  252. </div>
  253. <div class="copd-bb-record-info">
  254. <div class="title ki-title">
  255. 基本信息
  256. </div>
  257. <div class="copd-bb-base-content">
  258. <div class="copd-bb-base-info-item">
  259. 姓名:{{followInfo.name}}
  260. </div>
  261. <div class="copd-bb-base-info-item">
  262. 性别:{{followInfo.sex==1?'男':'女'}}
  263. </div>
  264. <div class="copd-bb-base-info-item">
  265. 出生日期:{{followInfo.birthday}}
  266. </div>
  267. <div class="copd-bb-base-info-item">
  268. 证件类型:{{followInfo.idcardType}}
  269. </div>
  270. <div class="copd-bb-base-info-item">
  271. 证件号码:{{followInfo.idcard}}
  272. </div>
  273. <div class="copd-bb-base-info-item">
  274. 联系电话:{{followInfo.mobile}}
  275. </div>
  276. <div class="copd-bb-base-info-item">
  277. 现住地址:{{followInfo.liveAddress}}
  278. </div>
  279. <div class="copd-bb-base-info-item">
  280. 户籍地址:{{followInfo.registAddress}}
  281. </div>
  282. </div>
  283. </div>
  284. <div class="copd-bb-record-info">
  285. <div class="title ki-title ta-title">
  286. 随访情况
  287. </div>
  288. <div class="copd-bb-base-content">
  289. <div class="copd-bb-base-info-item">
  290. 生存状态:{{followInfo.isLive==1?'生存':'死亡'}}
  291. </div>
  292. <div class="copd-bb-base-info-item">
  293. 随访状态:{{
  294. followInfo.status == 1 ? '接收随访' :
  295. followInfo.status == 2 ? '拒访' :
  296. followInfo.status == 3 ? '不详' :
  297. followInfo.status == 4 ? '失访' :
  298. followInfo.status == 5 ? '非本辖区—退回再根据现住址下推' :
  299. ''
  300. }}
  301. </div>
  302. <div class="copd-bb-base-info-item">
  303. 慢阻肺首次诊断时间:{{followInfo.firstVisitTime}}
  304. </div>
  305. <div class="copd-bb-base-info-item">
  306. 慢阻肺首次诊断地区:{{followInfo.firstVisitArea}}
  307. </div>
  308. <div class="copd-bb-base-info-item">
  309. 慢阻肺首次诊断机构级别:{{
  310. followInfo.firstVisitOrgLevel == 1 ? '三级医院' :
  311. followInfo.firstVisitOrgLevel == 2 ? '二级医院' :
  312. followInfo.firstVisitOrgLevel == 3 ? '村卫生室' :
  313. followInfo.firstVisitOrgLevel == 4 ? '乡镇卫生院/社区卫生服务机构' :
  314. followInfo.firstVisitOrgLevel == 5 ? '其他医疗卫生机构' :
  315. ''
  316. }}
  317. </div>
  318. <!-- <div class="copd-bb-base-info-item">
  319. 是否做过肺功能检查:{{followInfo.hasLung}}
  320. </div> -->
  321. <!-- <div class="copd-bb-base-info-item">e
  322. 是否做过胸部CT或X线检查:{{followInfo.birthday}}
  323. </div> -->
  324. <div class="copd-bb-base-info-item">
  325. 是否抽烟:{{followInfo.hasSmoke==1?'是':followInfo.hasSmoke==0?'':'已戒'}}
  326. </div>
  327. <div class="copd-bb-base-info-item">
  328. 是否饮酒:{{followInfo.hasDrink==1?'是':followInfo.hasDrink==0?'':'已戒'}}
  329. </div>
  330. </div>
  331. </div>
  332. <div class="copd-bb-record-info">
  333. <div class="title ki-title ta-title">
  334. 死亡情况
  335. </div>
  336. <div class="copd-bb-base-content">
  337. <div class="copd-bb-base-info-item">
  338. 死亡情况:{{followInfo.isLive==1?'生存':'死亡'}}
  339. </div>
  340. <div class="copd-bb-base-info-item">
  341. 死亡时间:{{followInfo.deathTime}}
  342. </div>
  343. </div>
  344. </div>
  345. </div>
  346. <span slot="footer" class="dialog-footer">
  347. <el-button @click="dialog = false">关闭</el-button>
  348. </span>
  349. </el-dialog>
  350. </div>