index.html 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451
  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.hospitalName}}
  25. </div>
  26. <div class="base-info-item">
  27. 分配医生:{{detailInfo.basicDoctorName}}
  28. </div>
  29. </template>
  30. <div class="base-info-item">
  31. 接收状态:{{detailInfo.receiveStatus==1?'已接收':'未接收'}}
  32. </div>
  33. <template v-if="detailInfo.receiveStatus==1">
  34. <div class="base-info-item">
  35. 接收医院:{{detailInfo.hospitalName}}
  36. </div>
  37. <div class="base-info-item">
  38. 接收医生:{{detailInfo.doctorName}}
  39. </div>
  40. </template>
  41. </div>
  42. </div>
  43. <div class="service-record-timeline">
  44. <div class="title">服务记录</div>
  45. <div class="record-list time-line">
  46. <div class="timeline" v-loading="loading">
  47. <div v-for="(event, eI) in events" :key="eI">
  48. <div class="timeline-item" v-if="event.flag">
  49. <div class="timeline-time" :id="'left-' + eI">
  50. {{ event.createTime&&event.createTime.substring(0,4)}}
  51. </div>
  52. </div>
  53. <div class="timeline-item" :class="{'timeline-item-blue-dot': event.createTime != null}">
  54. <div class="timeline-time" :id="'left-' + eI">{{event.createTime&& event.createTime.slice(5) }}</div>
  55. <div class="timeline-content" :id="'right-' + eI">
  56. <div class="data-item">
  57. <div class="data-title">
  58. {{event.type==1?'下转患者':event.type==2?'医生接收':event.type==3?'居民流转':
  59. event.type==4?'医生退回':event.type==5?'医生随访':event.type==6?'档案修改':'档案同步'}}
  60. </div>
  61. <div class="data-cont" v-if="event.type!=5&&event.type!=6&&event.type!=7">
  62. <div style="width: 50%">
  63. <span style="color: #9fa2a8">下转状态:</span>
  64. <span style="color: #656565">
  65. <template>{{event.turnDownStatus==0?'未下转':'已下转'}}</template>
  66. </span>
  67. </div>
  68. <div style="width: 50%">
  69. <span style="color: #9fa2a8">接收状态:</span>
  70. <span style="color: #656565">
  71. <template>{{event.receiveStatus==0?'未接收':'已接收'}}</template>
  72. </span>
  73. </div>
  74. <template v-if="event.receiveStatus!=0">
  75. <div style="width: 50%">
  76. <span style="color: #9fa2a8">接收医生:</span>
  77. <span style="color: #656565">
  78. <template>{{event.doctorName}}</template>
  79. </span>
  80. </div>
  81. <div style="width: 50%">
  82. <span style="color: #9fa2a8">接收医院:</span>
  83. <span style="color: #656565">
  84. <template>{{event.hospitalName}}</template>
  85. </span>
  86. </div>
  87. </template>
  88. <div style="width: 50%">
  89. <span style="color: #9fa2a8">是否流转:</span>
  90. <span style="color: #656565">
  91. <template>{{event.isCirculation==0?'否':'是'}}</template>
  92. <!-- <template v-if="i% 3 == 0">———</template>
  93. <template v-else>这是数据值,他可能会很长</template> -->
  94. </span>
  95. </div>
  96. <div style="width: 50%" v-if="event.isCirculation!=0">
  97. <span style="color: #9fa2a8">流转去向:</span>
  98. <span style="color: #656565">
  99. <template v-if="event.isCirculation==0">———</template>
  100. <template v-else>{{event.circulation}}</template>
  101. </span>
  102. </div>
  103. <div style="width: 50%">
  104. <span style="color: #9fa2a8">是否回退:</span>
  105. <span style="color: #656565">
  106. <template>{{event.isBack==0?'否':'是'}}</template>
  107. <!-- <template v-if="i% 3 == 0">———</template>
  108. <template v-else>这是数据值,他可能会很长</template> -->
  109. </span>
  110. </div>
  111. <div style="width: 50%" v-if="event.isBack!=0">
  112. <span style="color: #9fa2a8">回退原因:</span>
  113. <span style="color: #656565">
  114. <template v-if="event.isBack==0">———</template>
  115. <template v-else>{{event.backType==1?'找到本人或家属,但否认慢阻肺病史':event.backType==2?'找到本人或家属,非本辖区,也不清楚现在的住址':event.backReason}}</template>
  116. </span>
  117. </div>
  118. <div style="width: 50%">
  119. <span style="color: #9fa2a8">是否失访:</span>
  120. <span style="color: #656565">
  121. <template>{{event.isLost==0?'否':'是'}}</template>
  122. <!-- <template v-if="i% 3 == 0">———</template>
  123. <template v-else>这是数据值,他可能会很长</template> -->
  124. </span>
  125. </div>
  126. <div style="width: 50%">
  127. <span style="color: #9fa2a8">操作医生:</span>
  128. <span style="color: #656565">
  129. <template>{{event.operaterName}}</template>
  130. <!-- <template v-if="i% 3 == 0">———</template>
  131. <template v-else>这是数据值,他可能会很长</template> -->
  132. </span>
  133. </div>
  134. <div style="width: 50%">
  135. <span style="color: #9fa2a8">所属机构:</span>
  136. <span style="color: #656565">
  137. <template>{{event.orgName}}</template>
  138. <!-- <template v-if="i% 3 == 0">———</template>
  139. <template v-else>这是数据值,他可能会很长</template> -->
  140. </span>
  141. </div>
  142. </div>
  143. <div class="data-cont" v-else-if="event.type==5">
  144. <div style="width: 50%">
  145. <span style="color: #9fa2a8">下转状态:</span>
  146. <span style="color: #656565">
  147. <template>{{event.turnDownStatus==0?'未下转':'已下转'}}</template>
  148. </span>
  149. </div>
  150. <div style="width: 50%">
  151. <span style="color: #9fa2a8">接收状态:</span>
  152. <span style="color: #656565">
  153. <template>{{event.receiveStatus==0?'未接收':'已接收'}}</template>
  154. </span>
  155. </div>
  156. <template v-if="event.receiveStatus==1">
  157. <div style="width: 50%">
  158. <span style="color: #9fa2a8">接收医院:</span>
  159. <span style="color: #656565">
  160. <template>{{event.hospitalName}}</template>
  161. </span>
  162. </div>
  163. <div style="width: 50%">
  164. <span style="color: #9fa2a8">接收医生:</span>
  165. <span style="color: #656565">
  166. <template>{{event.doctorName}}</template>
  167. </span>
  168. </div>
  169. </template>
  170. <div style="width: 50%">
  171. <span style="color: #9fa2a8">是否流转:</span>
  172. <span style="color: #656565">
  173. <template>{{event.isCirculation==0?'否':'是'}}</template>
  174. <!-- <template v-if="i% 3 == 0">———</template>
  175. <template v-else>这是数据值,他可能会很长</template> -->
  176. </span>
  177. </div>
  178. <div style="width: 50%" v-if="event.isCirculation!=0">
  179. <span style="color: #9fa2a8">流转去向:</span>
  180. <span style="color: #656565">
  181. <template v-if="event.isCirculation==0">———</template>
  182. <template v-else>{{event.circulation}}</template>
  183. </span>
  184. </div>
  185. <div style="width: 50%">
  186. <span style="color: #9fa2a8">是否回退:</span>
  187. <span style="color: #656565">
  188. <template>{{event.isBack==0?'否':'是'}}</template>
  189. <!-- <template v-if="i% 3 == 0">———</template>
  190. <template v-else>这是数据值,他可能会很长</template> -->
  191. </span>
  192. </div>
  193. <div style="width: 50%" v-if="event.isBack!=0">
  194. <span style="color: #9fa2a8">回退原因:</span>
  195. <span style="color: #656565">
  196. <template v-if="event.isBack==0">———</template>
  197. <template v-else>{{event.backType==1?'找到本人或家属,但否认慢阻肺病史':event.backType==2?'找到本人或家属,非本辖区,也不清楚现在的住址':event.backReason}}</template>
  198. </span>
  199. </div>
  200. <div style="display: flex; justify-content: space-between; width: 100%; ">
  201. <div class="data-title">随访信息</div>
  202. </div>
  203. <div style="width: 50%">
  204. <span style="color: #9fa2a8">随访医生:</span>
  205. <span style="color: #656565">
  206. <template>{{event.jkcopdFollowup.doctorName}}</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.hospitalName}}</template>
  213. </span>
  214. </div>
  215. <div style="width: 50%">
  216. <span style="color: #9fa2a8">随访时间:</span>
  217. <span style="color: #656565">
  218. <template>{{event.jkcopdFollowup.followupDate}}</template>
  219. </span>
  220. </div>
  221. <div style="width: 50%">
  222. <span style="color: #9fa2a8">生存状态:</span>
  223. <span style="color: #656565">
  224. <template>{{event.jkcopdFollowup.isLive==1?'生存':'死亡'}}</template>
  225. </span>
  226. </div>
  227. </div>
  228. <div class="data-cont" v-else-if="event.type==7">
  229. <div style="width: 50%">
  230. <span style="color: #9fa2a8">常住地址:</span>
  231. <span style="color: #656565">
  232. <template>{{event.backReason}}</template>
  233. </span>
  234. </div>
  235. <div style="width: 50%">
  236. <span style="color: #9fa2a8">操作医生:</span>
  237. <span style="color: #656565">
  238. <template>{{event.operaterName}}</template>
  239. </span>
  240. </div>
  241. <div style="width: 50%">
  242. <span style="color: #9fa2a8">操作机构:</span>
  243. <span style="color: #656565">
  244. <template>{{event.orgName}}</template>
  245. </span>
  246. </div>
  247. </div>
  248. <div class="data-title" style="color: #12B7F5; font-size: 14px" v-if="event.type==5" @click="showDetail(event)"> 查看随访详情</div>
  249. <div class="data-cont" v-else>
  250. <div style="width: 50%" v-for="item in event.achievesRecordList" :key="item.id">
  251. <span style="color: #9fa2a8">{{item.classFieldName}}:</span>
  252. <span style="color: #656565">
  253. <template>{{item.newCommentName}}</template>
  254. </span>
  255. </div>
  256. <div style="width: 50%">
  257. <span style="color: #9fa2a8">操作医生:</span>
  258. <span style="color: #656565">
  259. <template>{{event.operaterName}}</template>
  260. </span>
  261. </div>
  262. <div style="width: 50%" >
  263. <span style="color: #9fa2a8">操作机构:</span>
  264. <span style="color: #656565">
  265. <template>{{event.orgName}}</template>
  266. </span>
  267. </div>
  268. </div>
  269. </div>
  270. </div>
  271. </div>
  272. </div>
  273. </div>
  274. </div>
  275. </div>
  276. <div class="cops-service-record-bottom-box">
  277. <el-button @click="recordBack">返回</el-button>
  278. </div>
  279. <el-dialog title="随访详情" :visible.sync="dialog" width="50%" :destroy-on-close="true">
  280. <div class="copd-follow-up-dialog-box">
  281. <div class="copd-bb-record-info">
  282. <div class="title ki-title ta-title">
  283. 随访信息
  284. </div>
  285. <div class="copd-bb-base-content">
  286. <div class="copd-bb-base-info-item" v-if="followInfo.createTime">
  287. 随访时间:{{followInfo.createTime}}
  288. </div>
  289. <div class="copd-bb-base-info-item" v-if="followInfo.doctorName">
  290. 随访医生:{{followInfo.doctorName}}
  291. </div>
  292. <div class="copd-bb-base-info-item" v-if="followInfo.hospitalName">
  293. 随访机构: {{followInfo.hospitalName}}
  294. </div>
  295. <div class="copd-bb-base-info-item" v-if="followup">
  296. 随访状态:{{followup}}
  297. </div>
  298. <div class="copd-bb-base-info-item" v-if="followInfo.status==4">
  299. 失访原因:{{followInfo.lostReason}}
  300. </div>
  301. </div>
  302. </div>
  303. <template v-if="followInfo.status!='4'">
  304. <div class="copd-bb-record-info">
  305. <div class="title ki-title">
  306. 基本信息
  307. </div>
  308. <div class="copd-bb-base-content">
  309. <div class="copd-bb-base-info-item" v-if="followInfo.name">
  310. 姓名:{{followInfo.name}}
  311. </div>
  312. <div class="copd-bb-base-info-item" v-if="followInfo.sex">
  313. 性别:{{followInfo.sex==1?'男':'女'}}
  314. </div>
  315. <div class="copd-bb-base-info-item" v-if="nationName">
  316. 民族:{{nationName}}
  317. </div>
  318. <div class="copd-bb-base-info-item" v-if="followInfo.birthday">
  319. 出生日期:{{followInfo.birthday}}
  320. </div>
  321. <div class="copd-bb-base-info-item" v-if="idcardTypeName">
  322. 证件类型:{{idcardTypeName}}
  323. </div>
  324. <div class="copd-bb-base-info-item" v-if="followInfo.idcard">
  325. 证件号码:{{followInfo.idcard}}
  326. </div>
  327. <div class="copd-bb-base-info-item" v-if="followInfo.mobile">
  328. 联系电话:{{followInfo.mobile}}
  329. </div>
  330. <div class="copd-bb-base-info-item" v-if="educational">
  331. 学历:{{educational}}
  332. </div>
  333. <div class="copd-bb-base-info-item" v-if="marriageName">
  334. 婚姻状况:{{marriageName}}
  335. </div>
  336. <div class="copd-bb-base-info-item" v-if="occupation">
  337. 职业类型:{{occupation}}
  338. </div>
  339. <div class="copd-bb-base-info-item" v-if="followInfo.liveProvinceName">
  340. 常住地区:{{followInfo.liveProvinceName}}{{followInfo.liveCityName}}{{followInfo.liveTownName}}{{followInfo.liveStreetName}}
  341. </div>
  342. <div class="copd-bb-base-info-item" v-if="followInfo.liveAddress">
  343. 常住地址:{{followInfo.liveAddress}}
  344. </div>
  345. <div class="copd-bb-base-info-item" v-if="followInfo.registProvinceName" >
  346. 户籍地区:{{followInfo.registProvinceName}}{{followInfo.registCityName}}{{followInfo.registTownName}}{{followInfo.registStreetName}}
  347. </div>
  348. <div class="copd-bb-base-info-item" v-if="followInfo.registAddress">
  349. 户籍地址:{{followInfo.registAddress}}
  350. </div>
  351. </div>
  352. <div class="copd-bb-record-info">
  353. <div class="title ki-title ta-title">
  354. 随访情况
  355. </div>
  356. <div class="copd-bb-base-content">
  357. <div class="copd-bb-base-info-item" v-if="followInfo.isLive">
  358. 生存状态:{{followInfo.isLive==1?'生存':'死亡'}}
  359. </div>
  360. <template v-if="followInfo.isLive==1">
  361. <div class="copd-bb-base-info-item" v-if="followInfo.hasSmoke">
  362. 是否抽烟:{{followInfo.hasSmoke==1?'是':followInfo.hasSmoke==0?'否':'已戒烟'}}
  363. </div>
  364. <div class="copd-bb-base-info-item" v-if="followInfo.hasDrink">
  365. 是否饮酒:{{followInfo.hasDrink==1?'是':followInfo.hasDrink==0?'否':'已戒酒'}}
  366. </div>
  367. <div class="copd-bb-base-info-item" v-if="diseaseConversion">
  368. 病情归转:{{diseaseConversion}}
  369. </div>
  370. </template>
  371. <!-- <div class="copd-bb-base-info-item">
  372. 是否做过肺功能检查:{{followInfo.hasLung}}
  373. </div> -->
  374. <!-- <div class="copd-bb-base-info-item">e
  375. 是否做过胸部CT或X线检查:{{followInfo.birthday}}
  376. </div> -->
  377. </div>
  378. </div>
  379. <template v-if="followInfo.isLive==1">
  380. <div class="copd-bb-record-info">
  381. <div class="title ki-title ta-title">
  382. 首次确诊情况
  383. </div>
  384. <div class="copd-bb-base-content">
  385. <div class="copd-bb-base-info-item" v-if="followInfo.firstVisitTime">
  386. 慢阻肺首次诊断时间:{{followInfo.firstVisitTime}}
  387. </div>
  388. <div class="copd-bb-base-info-item" v-if="firstAreaName">
  389. 慢阻肺首次诊断地区:{{firstAreaName}}
  390. </div>
  391. <div class="copd-bb-base-info-item" v-if="orGlevelName">
  392. <!-- 慢阻肺首次诊断机构级别:{{
  393. followInfo.firstVisitOrgLevel == 1 ? '三级医院' :
  394. followInfo.firstVisitOrgLevel == 2 ? '二级医院' :
  395. followInfo.firstVisitOrgLevel == 3 ? '村卫生室' :
  396. followInfo.firstVisitOrgLevel == 4 ? '乡镇卫生院/社区卫生服务机构' :
  397. followInfo.firstVisitOrgLevel == 5 ? '其他医疗卫生机构' :
  398. ''
  399. }} -->
  400. 慢阻肺首次诊断机构级别:{{orGlevelName}}
  401. </div>
  402. <div class="copd-bb-base-info-item" v-if="diagnosticBasisName">
  403. 最高诊断依据:{{diagnosticBasisName}}
  404. </div>
  405. <div class="copd-bb-base-info-item" v-if="symptom">
  406. 症状:{{symptom}}
  407. </div>
  408. <div class="copd-bb-base-info-item" v-if="followInfo.drugBefore">
  409. 使用支气管扩张剂前FEV1/FVC(%):{{followInfo.drugBefore}}
  410. </div>
  411. <div class="copd-bb-base-info-item" v-if="followInfo.drugAfter">
  412. 使用支气管扩张剂后FEV1/FVC(%):{{followInfo.drugAfter}}
  413. </div>
  414. </div>
  415. </div>
  416. </template>
  417. <div class="copd-bb-record-info" v-if="followInfo.isLive!=1">
  418. <div class="title ki-title ta-title">
  419. 死亡情况
  420. </div>
  421. <div class="copd-bb-base-content" >
  422. <template v-if="followInfo.isLive!=1">
  423. <div class="copd-bb-base-info-item" v-if="followInfo.deathTime">
  424. 死亡时间:{{followInfo.deathTime}}
  425. </div>
  426. <div class="copd-bb-base-info-item" v-if="followInfo.deathReason">
  427. 死亡原因:{{followInfo.deathReason}}
  428. </div>
  429. </template>
  430. </div>
  431. </div>
  432. </template>
  433. </div>
  434. <span slot="footer" class="dialog-footer">
  435. <el-button @click="dialog = false">关闭</el-button>
  436. </span>
  437. </el-dialog>
  438. </div>