eye_ground.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. <template>
  2. <view>
  3. <view class="position-relative bghead">
  4. <image style="opacity: 0;" src="@/static/other/ydjc.png" mode="widthFix" class="w-100"></image>
  5. <view class="position-absolute text-white px-3 mx-3 positionY-50" style="">
  6. <view class="centerY">
  7. <view class="bw_line line-height1"></view>
  8. <view class="ml-1 fs-18 font-bold">
  9. 眼底检查
  10. </view>
  11. </view>
  12. <view class="mt-2 fs-14">
  13. 患者检查的眼底片和医生建议记录
  14. </view>
  15. </view>
  16. </view>
  17. <view class="px-3 pb-3 mt-n2">
  18. <view class="bg-white px-3 py-2 mt-3" style="border-radius: 16rpx;" v-for="(item,index) in 5">
  19. <view class="centerY mb-2 text-gry">
  20. <text class="iconfont Clock fs-20"></text>
  21. <view class="">
  22. {{'2022-11-01'}}
  23. </view>
  24. </view>
  25. <view class="">
  26. <view class="centerY">
  27. <view class="w-50 mx-1">
  28. <view class="centerY">
  29. <image class="w-15" src="@/static/other/zuo.png" mode="widthFix"></image>
  30. <view class="d-inline-block ml-1 fs-14 text-dark">
  31. 左眼
  32. </view>
  33. </view>
  34. <view class="border mt-2"
  35. style="background: #F6F9FE;border-radius: 16rpx;padding: 14rpx;box-sizing: border-box;">
  36. <view class="picbox1"
  37. style="border: 1px dotted #E3E3E3;border-radius: 16rpx;box-sizing: border-box;">
  38. <view style="background: #F6F9FE;" class="picimg1">
  39. <image class="w-100" style="height: 100%;" src="@/static/defult/pic.png"
  40. mode="aspectFit"></image>
  41. </view>
  42. </view>
  43. </view>
  44. </view>
  45. <view class="w-50 mx-2">
  46. <view class="centerY">
  47. <image class="w-15" src="@/static/other/you.png" mode="widthFix"></image>
  48. <view class="d-inline-block ml-1 fs-14 text-dark">
  49. 右眼
  50. </view>
  51. </view>
  52. <view class="border mt-2"
  53. style="background: #F6F9FE;border-radius: 16rpx;padding: 14rpx;box-sizing: border-box;">
  54. <view class="picbox1"
  55. style="border: 1px dotted #E3E3E3;border-radius: 16rpx;box-sizing: border-box;">
  56. <view style="background: #F6F9FE;" class="picimg1">
  57. <image class="w-100" style="height: 100%;" src="@/static/defult/pic.png"
  58. mode="aspectFit"></image>
  59. </view>
  60. </view>
  61. </view>
  62. </view>
  63. </view>
  64. <view class="mt-3 p-2" style="box-shadow: 0px 2px 13px 2px rgba(211,212,214,0.45);border-radius: 8px;">
  65. <view class="centerY">
  66. <image class="w-15" src="@/static/other/zjjy.png" mode="widthFix"></image>
  67. <view class="fs-14 font-bold ml-2">
  68. 专家建议
  69. </view>
  70. <view class=" ml-2 fs-12" style="color: #868687;">
  71. 无异常。请保持
  72. </view>
  73. </view>
  74. <view class="centerY mt-2">
  75. <image class="w-15" src="@/static/other/jcyy.png" mode="widthFix"></image>
  76. <view class="fs-14 font-bold ml-2">
  77. 专家建议
  78. </view>
  79. <view class=" ml-2 fs-12" style="color: #868687;">
  80. 宁波第一人民医院
  81. </view>
  82. </view>
  83. </view>
  84. </view>
  85. <view class="text-center text-gry2 fs-10 mt-2">
  86. 注:本报告内容只针对眼底照片可见范围
  87. </view>
  88. </view>
  89. </view>
  90. <view class="">
  91. </view>
  92. </view>
  93. </template>
  94. <script>
  95. export default {
  96. data() {
  97. return {
  98. };
  99. },
  100. onPullDownRefresh() {
  101. setTimeout(()=>{
  102. uni.stopPullDownRefresh()
  103. },1000)
  104. }
  105. }
  106. </script>
  107. <style lang="scss">
  108. page {
  109. background: #F5F9FF;
  110. }
  111. .picbox1 {
  112. width: 100% !important;
  113. height: 0;
  114. padding-bottom: 70%;
  115. margin: 0;
  116. position: relative;
  117. overflow: hidden;
  118. }
  119. .picbox1 .picimg1 {
  120. width: 100%;
  121. height: 100%;
  122. position: absolute;
  123. }
  124. .bw_line {
  125. width: 10rpx;
  126. height: 30rpx;
  127. background-color: #fff;
  128. border-radius: 6rpx;
  129. }
  130. .bghead {
  131. background-image: url('@/static/other/ydjc.png');
  132. background-size: 100% 100%;
  133. background-repeat: no-repeat;
  134. background-position: center;
  135. }
  136. </style>