medicalWasteListItem.vue 6.4 KB

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