index.html 15 KB

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