blood_list.vue 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328
  1. <template>
  2. <view class="pharmacyDetails">
  3. <view class="pharmacyDetails_title">血制品信息</view>
  4. <view class="page_item footerOtherMargin">
  5. <view class="page_item_wrap" v-for="bloodDTO in bloods" :key="bloodDTO.id">
  6. <view class="page_item">
  7. <view class="page_item_top">
  8. <view class="page_item_top-inner">
  9. <view class="page_item_top_L">
  10. <view class="L_text">{{bloodDTO.type ? bloodDTO.type.name : "无"}}<text v-if="bloodDTO.type">({{bloodDTO.bloodCode||'无'}}) {{ bloodDTO.volume?bloodDTO.volume+'ML':'无' }}</text></view>
  11. </view>
  12. <view class="page_item_top_R">
  13. <text></text>
  14. </view>
  15. </view>
  16. </view>
  17. <view class="page_item_cont">
  18. <view class="page_item_cont_T">
  19. <view class="page_item_cont_title">
  20. <view class="text_big"><text v-if="bloodDTO.printDate">{{bloodDTO.printDate | formatDate('yyyy-MM-dd hh:mm')}}</text><text v-else>无</text></view>
  21. <text style="width: 4em;text-align: center;" class="icon_transport transport-arrow-right-full"></text>
  22. <view class="text_big"><text v-if="bloodDTO.overDate">{{bloodDTO.overDate | formatDate('yyyy-MM-dd hh:mm')}}</text><text v-else>无</text></view>
  23. </view>
  24. <view class="page_item_cont_title">
  25. <view>
  26. 血型:{{ bloodDTO.aboType||'无' }}
  27. &emsp;&emsp;
  28. RH(D):<text>{{bloodDTO.rhType || '无'}}</text>
  29. </view>
  30. <view class="text_big"></view>
  31. </view>
  32. <view class="page_item_cont_title">
  33. <view> 患者:<text>{{ bloodDTO.patientName }}<text v-if="bloodDTO.hosNum">({{ bloodDTO.hosNum }})</text></text> </view>
  34. <view class="text_big"></view>
  35. </view>
  36. <view class="page_item_cont_title">
  37. <view> {{ bloodDTO.applyDeptDTO?bloodDTO.applyDeptDTO.dept:'无' }} </view>
  38. <view class="text_big">{{ bloodDTO.state?bloodDTO.state.name:'无' }}</text></view>
  39. </view>
  40. </view>
  41. </view>
  42. <view class="L"></view>
  43. <view class="R"></view>
  44. </view>
  45. <view class="L-l"></view>
  46. <view class="R-l"></view>
  47. </view>
  48. </view>
  49. <view class="foot_btn2 footerPadding">
  50. <view class="btn2" @click="goBack">返回</view>
  51. </view>
  52. </view>
  53. </template>
  54. <script>
  55. import {
  56. post,
  57. webHandle
  58. } from "../../http/http.js";
  59. export default {
  60. data() {
  61. return {
  62. queryObj: {}, //路由传递过来的数据
  63. bloods: [],
  64. };
  65. },
  66. methods: {
  67. // 返回
  68. goBack() {
  69. uni.navigateBack();
  70. },
  71. },
  72. onLoad(options) {
  73. console.log(options);
  74. this.queryObj = options;
  75. if (options.bloods) {
  76. this.bloods = JSON.parse(options.bloods);
  77. }
  78. // #ifdef APP-PLUS
  79. webHandle("no", "app");
  80. // #endif
  81. // #ifdef H5
  82. webHandle("no", "wx");
  83. // #endif
  84. },
  85. };
  86. </script>
  87. <style lang="less" scoped>
  88. .pharmacyDetails {
  89. background-color: rgb(249, 250, 251);
  90. padding-top: 50rpx;
  91. height: 100%;
  92. box-sizing: border-box;
  93. .pharmacyDetails_title {
  94. font-size: 46rpx;
  95. font-weight: 550;
  96. text-align: center;
  97. }
  98. .page_item_wrap {
  99. position: relative;
  100. margin-top: 32rpx;
  101. .page_item {
  102. margin-top: 16rpx;
  103. margin-bottom: 124rpx;
  104. background: #fff;
  105. border-radius: 8rpx;
  106. margin: 0 20rpx;
  107. border: 2rpx solid #e5e9ed;
  108. position: relative;
  109. overflow: hidden;
  110. padding: 0 16rpx;
  111. .L {
  112. width: 40rpx;
  113. height: 40rpx;
  114. border-radius: 50%;
  115. background: #f9fafb;
  116. position: absolute;
  117. left: -20rpx;
  118. top: 68rpx;
  119. border: 2rpx solid #e5e9ed;
  120. }
  121. .R {
  122. width: 40rpx;
  123. height: 40rpx;
  124. border-radius: 50%;
  125. background: #f9fafb;
  126. position: absolute;
  127. float: right;
  128. right: -20rpx;
  129. top: 68rpx;
  130. border: 2rpx solid #e5e9ed;
  131. }
  132. .page_item_top {
  133. height: 88rpx;
  134. border-bottom: 2rpx dashed #e5e9ed;
  135. padding: 0 16rpx;
  136. .page_item_top-inner {
  137. display: flex;
  138. justify-content: space-between;
  139. align-items: center;
  140. height: 100%;
  141. .page_item_top_L {
  142. .L_text {
  143. font-size: 32rpx;
  144. font-weight: 700;
  145. }
  146. }
  147. .page_item_top_R {
  148. font-size: 32rpx;
  149. .L_iocn {
  150. color: rgb(7, 134, 60);
  151. font-size: 36rpx;
  152. font-weight: 700;
  153. }
  154. }
  155. }
  156. }
  157. .page_item_cont {
  158. min-height: 90rpx;
  159. padding: 0 16rpx;
  160. text-align: left;
  161. position: relative;
  162. .text_big {
  163. font-size: 32rpx;
  164. font-weight: 700;
  165. // margin-top: 10rpx;
  166. p {
  167. font-weight: 700;
  168. line-height: 1.5;
  169. }
  170. }
  171. .line {
  172. height: 20rpx;
  173. width: 2rpx;
  174. border-left: 2rpx solid #e5e9ed;
  175. position: absolute;
  176. top: 82rpx;
  177. left: 40rpx;
  178. }
  179. .page_item_cont_T {
  180. padding-top: 28rpx;
  181. padding-bottom: 28rpx;
  182. font-size: 28rpx;
  183. .page_item_cont_title {
  184. height: 100%;
  185. font-size: 32rpx;
  186. display: flex;
  187. justify-content: space-between;
  188. align-items: center;
  189. }
  190. }
  191. .page_item_cont_B {
  192. padding-top: 28rpx;
  193. margin-bottom: 28rpx;
  194. .page_item_cont_title {
  195. font-size: 32rpx;
  196. display: flex;
  197. justify-content: space-between;
  198. align-items: center;
  199. }
  200. }
  201. .page_item_cont_C {
  202. margin-bottom: 28rpx;
  203. .page_item_cont_title_C {
  204. font-size: 32rpx;
  205. display: flex;
  206. justify-content: space-between;
  207. align-items: center;
  208. }
  209. }
  210. #infos {
  211. display: none;
  212. }
  213. }
  214. }
  215. .L-l {
  216. width: 2rpx;
  217. height: 40rpx;
  218. background: #f9fafb;
  219. position: absolute;
  220. left: 20rpx;
  221. top: 72rpx;
  222. }
  223. .R-l {
  224. width: 2rpx;
  225. height: 40rpx;
  226. background: #f9fafb;
  227. position: absolute;
  228. right: 20rpx;
  229. top: 72rpx;
  230. }
  231. }
  232. .cube-toolbar-item {
  233. width: 710rpx;
  234. height: 68rpx;
  235. line-height: 68rpx;
  236. position: fixed;
  237. left: 20rpx;
  238. bottom: 160rpx;
  239. border-radius: 8rpx;
  240. background: linear-gradient(to right, #72c172, #3bb197);
  241. font-size: 36rpx;
  242. color: #fff;
  243. text-align: center;
  244. }
  245. .btn-wrap {
  246. display: flex;
  247. justify-content: space-between;
  248. position: fixed;
  249. left: 20rpx;
  250. bottom: 160rpx;
  251. }
  252. .cube-toolbar-item1 {
  253. width: 350rpx;
  254. height: 68rpx;
  255. line-height: 68rpx;
  256. border-radius: 8rpx;
  257. margin: 0 5rpx;
  258. background: linear-gradient(to right, #72c172, #3bb197);
  259. font-size: 36rpx;
  260. color: #fff;
  261. text-align: center;
  262. }
  263. .foot_btn2 {
  264. position: fixed;
  265. bottom: 0;
  266. right: 20rpx;
  267. left: 20rpx;
  268. line-height: 66rpx;
  269. height: 100rpx;
  270. border-top: 2rpx solid #e5e9ed;
  271. background: #f9fafb;
  272. display: flex;
  273. justify-content: space-between;
  274. .btn2 {
  275. height: 66rpx;
  276. width: 100%;
  277. margin: 0 1%;
  278. background-image: linear-gradient(to right, #72c172, #3bb197);
  279. color: #fff;
  280. border-radius: 8rpx;
  281. font-size: 32rpx;
  282. margin-top: 16rpx;
  283. text-align: center;
  284. }
  285. .btn3 {
  286. height: 66rpx;
  287. width: 48%;
  288. margin: 0 1%;
  289. background-image: linear-gradient(to right, #72c172, #3bb197);
  290. color: #fff;
  291. border-radius: 8rpx;
  292. font-size: 32rpx;
  293. margin-top: 16rpx;
  294. text-align: center;
  295. }
  296. }
  297. }
  298. </style>