report.wxml 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <t-navbar title="随访评估报告" left-arrow />
  2. <scroll-view class="page-container" scroll-y>
  3. <view wx:if="{{tasks.length>0}}">
  4. <view class="follow-box" style="padding-top:20px">
  5. <view class="title">随访计划:</view>
  6. <view class="content">{{followDetail.followupPlanName}}</view>
  7. </view>
  8. <view class="follow-box">
  9. <view class="title">评估结果:</view>
  10. <view class="content">{{followDetail.evaluate.evaluateDeal==='1'?'复诊':followDetail.evaluate.evaluateDeal==='2'?'中医调养':''}}</view>
  11. </view>
  12. <view class="follow-box">
  13. <view class="title">疾病专归:</view>
  14. <view class="content">{{followDetail.evaluate.evaluateSituation==='1'?'痊愈':followDetail.evaluate.evaluateSituation==='2'?'好转':followDetail.evaluate.evaluateSituation==='3'?'无变化':followDetail.evaluate.evaluateSituation==='4'?'恶化':''}}</view>
  15. </view>
  16. <view class="follow-box">
  17. <view class="title">评估备注:</view>
  18. <view class="content">{{followDetail.evaluate.evaluateDesc}}</view>
  19. </view>
  20. <view class="follow-box">
  21. <view class="title">评估医生:</view>
  22. <view class="content">{{followDetail.evaluateBy}}</view>
  23. </view>
  24. <view class="follow-box" style="padding-bottom:20px">
  25. <view class="title">评估日期:</view>
  26. <view class="content">{{followDetail.evaluateTime}}</view>
  27. </view>
  28. </view>
  29. <view class="follow-record">随访记录</view>
  30. <block wx:for="{{tasks}}" wx:key="id" wx:for-item="task">
  31. <view style="margin-bottom:16px">
  32. <view class="time-box">{{task.arrangeTime}}</view>
  33. <view class="record-box">
  34. <view class="new-symptoms">
  35. <view class="questions">1、请问您的症状是否已经好转?</view>
  36. <view style="margin-top:10px">
  37. <view class="symptoms">
  38. <view class="improved">好转:</view>
  39. <view>{{task.fillin?task.improve:'无'}}</view>
  40. </view>
  41. <view class="symptoms sym-center">
  42. <view class="improved">恶化:</view>
  43. <view>{{task.worse?task.worse:'无'}}</view>
  44. </view>
  45. <view class="symptoms">
  46. <view class="improved">无变化:</view>
  47. <view>{{task.noChange?task.noChange:'无'}}</view>
  48. </view>
  49. </view>
  50. </view>
  51. <view class="new-symptoms">
  52. <view>2、请问有没有出现新的症状?</view>
  53. <view style="margin-left:20px;margin-top:10px">{{task.fillin.isHaveNewSyndrome==='Y'?'有':task.fillin.isHaveNewSyndrome==='N'?'没有':'无'}}</view>
  54. </view>
  55. <view class="new-symptoms">
  56. <view>3、如果有其他情况吗,请留言?</view>
  57. <view style="margin-left:20px;margin-top:10px">{{task.fillin.otherDesc?task.fillin.otherDesc:'用户暂无留言~'}}</view>
  58. </view>
  59. <view class="image-box" wx:if="{{task.fiilin.upImg || task.fillin.downImg || task.fillin.faceImg}}">
  60. <image class="tongue__img" src="{{task.fiilin.upImg}}" mode="aspectFit" />
  61. <image class="tongue__img" src="{{task.fillin.downImg}}" mode="aspectFit" />
  62. <image class="tongue__img" src="{{task.fillin.faceImg}}" mode="aspectFit" />
  63. </view>
  64. <view class="report-box" wx:if="{{task.tonguefaceAnalysisReportId}}">
  65. <image class="icon-bg" src="../../assets/icon/icon_report.png" />
  66. <view bind:tap="goSeeFaceReport" data-id="{{task.tonguefaceAnalysisReportId}}">查看舌面象分析报告</view>
  67. </view>
  68. </view>
  69. </view>
  70. </block>
  71. </scroll-view>