specimenListItem.vue 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  1. <template>
  2. <view class="page_item">
  3. <view class="page_item_top">
  4. <view class="page_item_top-inner">
  5. <view class="page_item_top_L">
  6. <view class="L_text"><text class="serialNumber">{{i + 1}}</text>{{ item.specimenDesc || "无" }}</view>
  7. </view>
  8. <view class="page_item_top_R">
  9. <text :style="{color:item.urgent == 1?'red':'green'}">{{item.urgent == 1 ? "急" : "普"}}</text>
  10. </view>
  11. </view>
  12. </view>
  13. <view class="page_item_cont">
  14. <view class="page_item_cont_T">
  15. <view class="page_item_cont_title">
  16. <view style="width: 10em;"> {{item.stype ? item.stype.name : '无'}} </view>
  17. <view class="text_big">{{ item.scode || "无" }}</view>
  18. </view>
  19. <view class="page_item_cont_title">
  20. <view class="text_big"> {{ item.patientName }}<text v-if="item.bedNum">({{item.bedNum}}床)</text> </view>
  21. <view class="text_big">{{ item.residenceNo }}</view>
  22. </view>
  23. <view class="page_item_cont_title">
  24. <view class="text_big"> 收取:{{item.receiverName||'无'}} </view>
  25. <view class="text_big">{{item.arriveTime||'无'}}</text></view>
  26. </view>
  27. <view class="page_item_cont_title">
  28. <view class="text_big">{{
  29. item.sickRoom ? item.sickRoom.dept : "无"
  30. }}</view>
  31. <text style="width: 4em;text-align: center;" class="icon_transport transport-arrow-right-full"></text>
  32. <view class="text_big">{{
  33. item.checkDept ? item.checkDept.dept : "无"
  34. }}</view>
  35. </view>
  36. </view>
  37. </view>
  38. <view class="L"></view>
  39. <view class="R"></view>
  40. </view>
  41. </template>
  42. <script>
  43. export default {
  44. props: {
  45. i: {
  46. type: Number,
  47. },
  48. item: {
  49. type: Object,
  50. },
  51. },
  52. };
  53. </script>
  54. <style lang="less" scoped>
  55. .page_item {
  56. margin-top: 16rpx;
  57. margin-bottom: 124rpx;
  58. background: #fff;
  59. border-radius: 8rpx;
  60. margin: 0 20rpx;
  61. border: 2rpx solid #e5e9ed;
  62. position: relative;
  63. overflow: hidden;
  64. padding: 0 16rpx;
  65. .L {
  66. width: 40rpx;
  67. height: 40rpx;
  68. border-radius: 50%;
  69. background: #f9fafb;
  70. position: absolute;
  71. left: -20rpx;
  72. top: 68rpx;
  73. border: 2rpx solid #e5e9ed;
  74. }
  75. .R {
  76. width: 40rpx;
  77. height: 40rpx;
  78. border-radius: 50%;
  79. background: #f9fafb;
  80. position: absolute;
  81. float: right;
  82. right: -20rpx;
  83. top: 68rpx;
  84. border: 2rpx solid #e5e9ed;
  85. }
  86. .starting {
  87. width: 50rpx;
  88. height: 50rpx;
  89. color: #fff;
  90. background: #49b856;
  91. display: inline-block;
  92. border-radius: 50%;
  93. text-align: center;
  94. line-height: 46rpx;
  95. font-size: 32rpx;
  96. margin-right: 6rpx;
  97. }
  98. .End {
  99. width: 50rpx;
  100. height: 50rpx;
  101. color: #fff;
  102. background: #39b199;
  103. display: inline-block;
  104. border-radius: 50%;
  105. text-align: center;
  106. line-height: 46rpx;
  107. font-size: 32rpx;
  108. margin-right: 6rpx;
  109. }
  110. .page_item_top {
  111. height: 88rpx;
  112. border-bottom: 2rpx dashed #e5e9ed;
  113. padding: 0 16rpx;
  114. .page_item_top-inner {
  115. display: flex;
  116. justify-content: space-between;
  117. align-items: center;
  118. height: 100%;
  119. .page_item_top_L {
  120. .serialNumber{
  121. width: 50rpx;
  122. height: 50rpx;
  123. border-radius: 50%;
  124. background-color: #49b856;
  125. display: flex;
  126. justify-content: center;
  127. align-items: center;
  128. color: #fff;
  129. line-height: 0;
  130. margin-right: 8rpx;
  131. }
  132. .emergencys {
  133. background: #ff3b53 !important;
  134. width: 124rpx !important;
  135. }
  136. .emergency {
  137. background: #ff3b53 !important;
  138. }
  139. .emergency1 {
  140. background: #49b856 !important;
  141. }
  142. .page_item_cont_start {
  143. text-align: center;
  144. height: 44rpx;
  145. width: 104rpx;
  146. line-height: 44rpx;
  147. border-radius: 8rpx;
  148. background: #49b856;
  149. color: #fff;
  150. display: inline-block;
  151. }
  152. .L_time {
  153. color: #6cc076;
  154. font-size: 32rpx;
  155. }
  156. .L_text {
  157. font-size: 32rpx;
  158. font-weight: 700;
  159. display: flex;
  160. align-items: center;
  161. }
  162. }
  163. .page_item_top_R {
  164. font-size: 32rpx;
  165. .back {
  166. background-color: #49b856;
  167. }
  168. .L_iocn {
  169. color: rgb(7, 134, 60);
  170. font-size: 36rpx;
  171. font-weight: 700;
  172. }
  173. }
  174. }
  175. }
  176. .page_item_cont {
  177. min-height: 90rpx;
  178. padding: 0 16rpx;
  179. text-align: left;
  180. position: relative;
  181. .text_big {
  182. font-size: 32rpx;
  183. font-weight: 700;
  184. margin-top: 10rpx;
  185. text-align: right;
  186. word-break: break-all;
  187. line-height: 1.25;
  188. p {
  189. font-weight: 700;
  190. line-height: 1.5;
  191. }
  192. }
  193. .page_item_cont_T {
  194. padding-top: 28rpx;
  195. padding-bottom: 28rpx;
  196. font-size: 28rpx;
  197. .page_item_cont_title {
  198. height: 100%;
  199. font-size: 32rpx;
  200. display: flex;
  201. justify-content: space-between;
  202. align-items: center;
  203. }
  204. }
  205. .page_item_cont_B {
  206. padding-top: 28rpx;
  207. margin-bottom: 28rpx;
  208. .page_item_cont_title {
  209. font-size: 32rpx;
  210. display: flex;
  211. justify-content: space-between;
  212. }
  213. .page_item_cont_title1 {
  214. height: 60rpx;
  215. line-height: 60rpx;
  216. font-size: 32rpx;
  217. padding-left: 64rpx;
  218. }
  219. }
  220. }
  221. .page_item_foot {
  222. border-top: 2rpx dashed #e5e9ed;
  223. border-bottom: 2rpx dashed #e5e9ed;
  224. padding: 28rpx 16rpx;
  225. text-align: left;
  226. .page_item_foot_text {
  227. font-size: 32rpx;
  228. margin-bottom: 20rpx;
  229. .text1 {
  230. color: rgb(102, 102, 102);
  231. }
  232. .text2 {
  233. float: right;
  234. font-weight: 700;
  235. }
  236. }
  237. }
  238. #infos {
  239. display: none;
  240. }
  241. .page_item_infos {
  242. padding-bottom: 20rpx;
  243. border-bottom: 2rpx dashed #e5e9ed;
  244. .page_item_info2 {
  245. text-align: left;
  246. line-height: 60rpx;
  247. font-size: 32rpx;
  248. padding-left: 16rpx;
  249. .page_item_foot_text {
  250. font-size: 32rpx;
  251. margin-bottom: 20rpx;
  252. .text1 {
  253. color: rgb(102, 102, 102);
  254. }
  255. .text2 {
  256. float: right;
  257. font-weight: 700;
  258. }
  259. }
  260. }
  261. }
  262. }
  263. </style>