blood_list.vue 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  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. display: flex;
  94. flex-direction: column;
  95. .pharmacyDetails_title {
  96. font-size: 46rpx;
  97. font-weight: 550;
  98. text-align: center;
  99. }
  100. .page_item_wrap {
  101. position: relative;
  102. margin-top: 32rpx;
  103. .page_item {
  104. margin-top: 16rpx;
  105. margin-bottom: 124rpx;
  106. background: #fff;
  107. border-radius: 8rpx;
  108. margin: 0 20rpx;
  109. border: 2rpx solid #e5e9ed;
  110. position: relative;
  111. overflow: hidden;
  112. padding: 0 16rpx;
  113. .L {
  114. width: 40rpx;
  115. height: 40rpx;
  116. border-radius: 50%;
  117. background: #f9fafb;
  118. position: absolute;
  119. left: -20rpx;
  120. top: 68rpx;
  121. border: 2rpx solid #e5e9ed;
  122. }
  123. .R {
  124. width: 40rpx;
  125. height: 40rpx;
  126. border-radius: 50%;
  127. background: #f9fafb;
  128. position: absolute;
  129. float: right;
  130. right: -20rpx;
  131. top: 68rpx;
  132. border: 2rpx solid #e5e9ed;
  133. }
  134. .page_item_top {
  135. height: 88rpx;
  136. border-bottom: 2rpx dashed #e5e9ed;
  137. padding: 0 16rpx;
  138. .page_item_top-inner {
  139. display: flex;
  140. justify-content: space-between;
  141. align-items: center;
  142. height: 100%;
  143. .page_item_top_L {
  144. .L_text {
  145. font-size: 32rpx;
  146. font-weight: 700;
  147. }
  148. }
  149. .page_item_top_R {
  150. font-size: 32rpx;
  151. .L_iocn {
  152. color: rgb(7, 134, 60);
  153. font-size: 36rpx;
  154. font-weight: 700;
  155. }
  156. }
  157. }
  158. }
  159. .page_item_cont {
  160. min-height: 90rpx;
  161. padding: 0 16rpx;
  162. text-align: left;
  163. position: relative;
  164. .text_big {
  165. font-size: 32rpx;
  166. font-weight: 700;
  167. // margin-top: 10rpx;
  168. p {
  169. font-weight: 700;
  170. line-height: 1.5;
  171. }
  172. }
  173. .line {
  174. height: 20rpx;
  175. width: 2rpx;
  176. border-left: 2rpx solid #e5e9ed;
  177. position: absolute;
  178. top: 82rpx;
  179. left: 40rpx;
  180. }
  181. .page_item_cont_T {
  182. padding-top: 28rpx;
  183. padding-bottom: 28rpx;
  184. font-size: 28rpx;
  185. .page_item_cont_title {
  186. height: 100%;
  187. font-size: 32rpx;
  188. display: flex;
  189. justify-content: space-between;
  190. align-items: center;
  191. }
  192. }
  193. .page_item_cont_B {
  194. padding-top: 28rpx;
  195. margin-bottom: 28rpx;
  196. .page_item_cont_title {
  197. font-size: 32rpx;
  198. display: flex;
  199. justify-content: space-between;
  200. align-items: center;
  201. }
  202. }
  203. .page_item_cont_C {
  204. margin-bottom: 28rpx;
  205. .page_item_cont_title_C {
  206. font-size: 32rpx;
  207. display: flex;
  208. justify-content: space-between;
  209. align-items: center;
  210. }
  211. }
  212. #infos {
  213. display: none;
  214. }
  215. }
  216. }
  217. .L-l {
  218. width: 2rpx;
  219. height: 40rpx;
  220. background: #f9fafb;
  221. position: absolute;
  222. left: 20rpx;
  223. top: 72rpx;
  224. }
  225. .R-l {
  226. width: 2rpx;
  227. height: 40rpx;
  228. background: #f9fafb;
  229. position: absolute;
  230. right: 20rpx;
  231. top: 72rpx;
  232. }
  233. }
  234. .cube-toolbar-item {
  235. width: 710rpx;
  236. height: 68rpx;
  237. line-height: 68rpx;
  238. position: fixed;
  239. left: 20rpx;
  240. bottom: 160rpx;
  241. border-radius: 8rpx;
  242. background: linear-gradient(to right, #72c172, #3bb197);
  243. font-size: 36rpx;
  244. color: #fff;
  245. text-align: center;
  246. }
  247. .btn-wrap {
  248. display: flex;
  249. justify-content: space-between;
  250. position: fixed;
  251. left: 20rpx;
  252. bottom: 160rpx;
  253. }
  254. .cube-toolbar-item1 {
  255. width: 350rpx;
  256. height: 68rpx;
  257. line-height: 68rpx;
  258. border-radius: 8rpx;
  259. margin: 0 5rpx;
  260. background: linear-gradient(to right, #72c172, #3bb197);
  261. font-size: 36rpx;
  262. color: #fff;
  263. text-align: center;
  264. }
  265. .foot_btn2 {
  266. position: fixed;
  267. bottom: 0;
  268. right: 20rpx;
  269. left: 20rpx;
  270. line-height: 66rpx;
  271. height: 100rpx;
  272. border-top: 2rpx solid #e5e9ed;
  273. background: #f9fafb;
  274. display: flex;
  275. justify-content: space-between;
  276. .btn2 {
  277. height: 66rpx;
  278. width: 100%;
  279. margin: 0 1%;
  280. background-image: linear-gradient(to right, #72c172, #3bb197);
  281. color: #fff;
  282. border-radius: 8rpx;
  283. font-size: 32rpx;
  284. margin-top: 16rpx;
  285. text-align: center;
  286. }
  287. .btn3 {
  288. height: 66rpx;
  289. width: 48%;
  290. margin: 0 1%;
  291. background-image: linear-gradient(to right, #72c172, #3bb197);
  292. color: #fff;
  293. border-radius: 8rpx;
  294. font-size: 32rpx;
  295. margin-top: 16rpx;
  296. text-align: center;
  297. }
  298. }
  299. }
  300. </style>