startOrderSignBloodDetail.vue 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337
  1. <template>
  2. <view class="Scanning_Result">
  3. <view class="Scanning_top">
  4. <view class="title1">{{queryObj.deptName}}</view>
  5. <view>{{dataList.patientTotalCount}}人</view>
  6. <view>{{dataList.bloodTotalCount}}袋</view>
  7. </view>
  8. <view class="Scanning_cont">
  9. <view class="list" v-for="(v2, i2) of dataList.children" :key="i2">
  10. <view class="list_top">
  11. <text class="newicon newicon-a-ziyuan7"></text>
  12. <view class="title1 ellipsis">
  13. <text>{{v2.patientName}}</text><text>{{v2.hosNum}}</text>
  14. </view>
  15. <view>
  16. <text>{{v2.count}}袋</text>
  17. </view>
  18. </view>
  19. <view class="list_bottom_wrap" v-for="(v3, i3) of v2.children" :key="i3" @click="v3.checked = !v3.checked">
  20. <view class="list_bottom">
  21. <view class="title1 ellipsis">
  22. <text class="ellipsis">{{v3.bloodCode}}</text>
  23. <text>{{v3.volume}}{{v3.unit}}</text>
  24. </view>
  25. <view class="title2">
  26. <text>{{v3.count}}袋</text>
  27. <text class="newicon newicon-a-ziyuan3" :class="{active: v3.checked}"></text>
  28. </view>
  29. </view>
  30. <view class="list_detail" v-if="v3.checked">
  31. <view class="list_detail_item" v-for="(v4, i4) of v3.children" :key="i4">
  32. <view class="list_detail_item_title">
  33. <text>{{v4.bloodCode}}{{v4.productCode ? '+' + v4.productCode : ''}}</text>
  34. <text class="blue serialNumber">{{i4 + 1}}</text>
  35. </view>
  36. <view class="list_detail_item_content">
  37. <view>
  38. <text>血型:{{v4.aboType}}</text>
  39. <text class="ml16">RH(D):{{v4.rhType}}</text>
  40. </view>
  41. <view>
  42. <text>失效时间:{{v4.overDate | formatDate('yyyy-MM-dd hh:mm')}}</text>
  43. <!-- <text class="zhi">至</text> -->
  44. <!-- <text></text> -->
  45. </view>
  46. <view class="list_detail_item_content_status">
  47. <text class="blue">{{v4.state ? v4.state.name : ''}}</text>
  48. </view>
  49. </view>
  50. </view>
  51. </view>
  52. </view>
  53. </view>
  54. </view>
  55. <view class="foot_btn_spe">
  56. <view class="btn3" @click="goBack()">返回</view>
  57. </view>
  58. </view>
  59. </template>
  60. <script>
  61. import {
  62. get,
  63. post,
  64. SM,
  65. webHandle
  66. } from "../../http/http.js";
  67. export default {
  68. data() {
  69. return {
  70. dataList: {},
  71. queryObj: {}, //路由传递过来的数据
  72. };
  73. },
  74. methods: {
  75. // 返回
  76. goBack() {
  77. uni.navigateBack();
  78. },
  79. //获取页面信息
  80. getInfo(){
  81. uni.showLoading({
  82. title: "加载中",
  83. mask: true,
  84. });
  85. post('/transflow/scanInfo', {
  86. "code": "nb",
  87. "id": 0,
  88. "type": "bloodTake",
  89. "deptOrderDetails": true,
  90. "bloodIds": this.queryObj.bloodIds,
  91. }).then(res => {
  92. uni.hideLoading();
  93. if(res.state == 200){
  94. let dataList = res.data.data || {};
  95. // 第一层
  96. let dataNewList = {
  97. bloodTotalCount: 0,
  98. patientTotalCount: 0,
  99. children: [],
  100. };
  101. for (let key2 in dataList) {
  102. let value2 = dataList[key2];
  103. console.log(value2);
  104. // 第三层,第四层
  105. let array3 = [];
  106. for (let key3 in value2) {
  107. let value3 = value2[key3];
  108. console.log(dataNewList);
  109. array3.push({
  110. checked: false,
  111. bloodCode: key3.split('|')[0],
  112. volume: key3.split('|')[1],
  113. unit: key3.split('|')[2],
  114. count: value3.length,
  115. children: value3,
  116. });
  117. }
  118. // 第二层
  119. dataNewList.children.push({
  120. patientName: key2.split('|')[0],
  121. hosNum: key2.split('|')[1],
  122. count: array3.reduce((pre, current) => pre + current.count, 0),
  123. children: array3,
  124. });
  125. }
  126. // 计算第一层血袋数量
  127. dataNewList.bloodTotalCount = dataNewList.children.reduce((pre, current) => pre + current.count, 0);
  128. // 计算第一层患者数量
  129. dataNewList.patientTotalCount = Object.keys(dataList).length;
  130. console.log(dataNewList)
  131. // 赋值
  132. this.dataList = dataNewList;
  133. }else{
  134. uni.showToast({
  135. icon: "none",
  136. title: res.msg || "接口获取数据失败!",
  137. });
  138. }
  139. })
  140. },
  141. },
  142. onLoad(options) {
  143. console.log(options, "result");
  144. this.queryObj = options;
  145. this.getInfo();
  146. // #ifdef APP-PLUS
  147. webHandle("no", "app");
  148. // #endif
  149. // #ifdef H5
  150. webHandle("no", "wx");
  151. // #endif
  152. },
  153. };
  154. </script>
  155. <style lang="less" scoped>
  156. .Scanning_Result {
  157. padding: 16rpx;
  158. display: flex;
  159. flex-direction: column;
  160. height: 100vh;
  161. background-color: #f5f7fb;
  162. .ml16{
  163. margin-left: 16rpx;
  164. }
  165. .blue{
  166. color: #49b856!important;
  167. }
  168. .ellipsis{
  169. white-space: nowrap;
  170. overflow: hidden;
  171. text-overflow: ellipsis;
  172. }
  173. .Scanning_top {
  174. margin-top: 16rpx;
  175. background-color: #fff;
  176. color: #49b856;
  177. font-weight: bold;
  178. font-size: 30rpx;
  179. display: flex;
  180. align-items: center;
  181. line-height: 1.1;
  182. view{
  183. padding: 16rpx 20rpx;
  184. flex: 1;
  185. &.title1{
  186. flex: 4;
  187. word-break: break-all;
  188. }
  189. }
  190. }
  191. .Scanning_cont {
  192. flex: 1;
  193. display: flex;
  194. flex-direction: column;
  195. overflow-y: auto;
  196. .list{
  197. background-color: #fff;
  198. margin-top: 16rpx;
  199. line-height: 1;
  200. .list_top{
  201. display: flex;
  202. font-weight: bold;
  203. color: #000;
  204. font-size: 30rpx;
  205. position: relative;
  206. padding-bottom: 16rpx;
  207. .newicon-a-ziyuan7{
  208. position: absolute;
  209. left: 12rpx;
  210. top: 14rpx;
  211. font-size: 32rpx;
  212. color: #49b856;
  213. }
  214. view{
  215. padding: 16rpx 20rpx 0 0;
  216. flex: 1;
  217. &.title1{
  218. padding: 16rpx 20rpx 0 54rpx;
  219. flex: 5;
  220. text:first-of-type{
  221. margin-right: 16rpx;
  222. }
  223. }
  224. }
  225. }
  226. .list_bottom{
  227. display: flex;
  228. font-size: 25rpx;
  229. color: #767676;
  230. view{
  231. padding: 0 20rpx 16rpx 5rpx;
  232. flex: 1;
  233. &.title1{
  234. padding: 0 20rpx 16rpx 54rpx;
  235. flex: 5;
  236. display: flex;
  237. }
  238. &.title2{
  239. display: flex;
  240. align-items: center;
  241. }
  242. .newicon-a-ziyuan3{
  243. color: #cdcdcd;
  244. font-size: 12rpx;
  245. margin-left: 20rpx;
  246. transform: rotate(180deg);
  247. transition: all 0.5s;
  248. &.active{
  249. transform: rotate(0deg);
  250. }
  251. }
  252. }
  253. }
  254. .list_detail{
  255. border: 2rpx solid #C6C6C6;
  256. padding: 22rpx 30rpx 0;
  257. font-size: 26rpx;
  258. .list_detail_item{
  259. margin-bottom: 22rpx;
  260. padding: 10rpx 0;
  261. background-color: #F3FAF7;
  262. .list_detail_item_title{
  263. padding: 0 17rpx 6rpx;
  264. border-bottom: 2rpx solid #C3C3C3;
  265. display: flex;
  266. align-items: center;
  267. justify-content: space-between;
  268. .serialNumber{
  269. font-size: 38rpx;
  270. }
  271. }
  272. .list_detail_item_content{
  273. padding: 0 17rpx;
  274. view{
  275. line-height: 35rpx;
  276. margin-top: 17rpx;
  277. &:first-of-type{
  278. margin-top: 9rpx;
  279. }
  280. }
  281. .zhi{
  282. margin-left: 60rpx;
  283. margin-right: 60rpx;
  284. }
  285. .list_detail_item_content_status{
  286. display: flex;
  287. justify-content: flex-end;
  288. text{
  289. font-weight: bold;
  290. }
  291. }
  292. }
  293. }
  294. }
  295. }
  296. }
  297. .foot_btn_spe {
  298. line-height: 64rpx;
  299. height: 64rpx;
  300. margin-bottom: 40rpx;
  301. text-align: center;
  302. display: flex;
  303. justify-content: space-between;
  304. view {
  305. height: 64rpx;
  306. flex: 1;
  307. margin: 0 1%;
  308. background-image: linear-gradient(to right, #72c172, #3bb197);
  309. color: #fff;
  310. border-radius: 8rpx;
  311. font-size: 26rpx;
  312. }
  313. }
  314. }
  315. </style>