startOrderSignBloodDetail.vue 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341
  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 flex1">{{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. .flex1{
  174. flex: 1;
  175. }
  176. .Scanning_top {
  177. margin-top: 16rpx;
  178. background-color: #fff;
  179. color: #49b856;
  180. font-weight: bold;
  181. font-size: 30rpx;
  182. display: flex;
  183. align-items: center;
  184. line-height: 1.1;
  185. view{
  186. padding: 16rpx 20rpx;
  187. flex: 1;
  188. &.title1{
  189. flex: 4;
  190. word-break: break-all;
  191. }
  192. }
  193. }
  194. .Scanning_cont {
  195. flex: 1;
  196. display: flex;
  197. flex-direction: column;
  198. overflow-y: auto;
  199. .list{
  200. background-color: #fff;
  201. margin-top: 16rpx;
  202. line-height: 1;
  203. .list_top{
  204. display: flex;
  205. font-weight: bold;
  206. color: #000;
  207. font-size: 30rpx;
  208. position: relative;
  209. padding-bottom: 16rpx;
  210. .newicon-a-ziyuan7{
  211. position: absolute;
  212. left: 12rpx;
  213. top: 14rpx;
  214. font-size: 32rpx;
  215. color: #49b856;
  216. }
  217. view{
  218. padding: 16rpx 20rpx 0 0;
  219. flex: 1;
  220. &.title1{
  221. padding: 16rpx 20rpx 0 54rpx;
  222. flex: 5;
  223. text:first-of-type{
  224. margin-right: 16rpx;
  225. }
  226. }
  227. }
  228. }
  229. .list_bottom{
  230. display: flex;
  231. font-size: 25rpx;
  232. color: #767676;
  233. view{
  234. padding: 0 20rpx 16rpx 5rpx;
  235. flex: 1;
  236. &.title1{
  237. padding: 0 20rpx 16rpx 54rpx;
  238. flex: 5;
  239. display: flex;
  240. }
  241. &.title2{
  242. display: flex;
  243. align-items: center;
  244. }
  245. .newicon-a-ziyuan3{
  246. color: #cdcdcd;
  247. font-size: 12rpx;
  248. margin-left: 20rpx;
  249. transform: rotate(180deg);
  250. transition: all 0.5s;
  251. &.active{
  252. transform: rotate(0deg);
  253. }
  254. }
  255. }
  256. }
  257. .list_detail{
  258. border: 2rpx solid #C6C6C6;
  259. padding: 22rpx 30rpx 0;
  260. font-size: 26rpx;
  261. .list_detail_item{
  262. margin-bottom: 22rpx;
  263. padding: 10rpx 0;
  264. background-color: #F3FAF7;
  265. .list_detail_item_title{
  266. padding: 0 17rpx 6rpx;
  267. border-bottom: 2rpx solid #C3C3C3;
  268. display: flex;
  269. align-items: center;
  270. justify-content: space-between;
  271. .serialNumber{
  272. font-size: 38rpx;
  273. }
  274. }
  275. .list_detail_item_content{
  276. padding: 0 17rpx;
  277. view{
  278. line-height: 35rpx;
  279. margin-top: 17rpx;
  280. &:first-of-type{
  281. margin-top: 9rpx;
  282. }
  283. }
  284. .zhi{
  285. margin-left: 60rpx;
  286. margin-right: 60rpx;
  287. }
  288. .list_detail_item_content_status{
  289. display: flex;
  290. justify-content: flex-end;
  291. text{
  292. font-weight: bold;
  293. }
  294. }
  295. }
  296. }
  297. }
  298. }
  299. }
  300. .foot_btn_spe {
  301. line-height: 64rpx;
  302. height: 64rpx;
  303. margin-bottom: 40rpx;
  304. text-align: center;
  305. display: flex;
  306. justify-content: space-between;
  307. view {
  308. height: 64rpx;
  309. flex: 1;
  310. margin: 0 1%;
  311. background-image: linear-gradient(to right, #72c172, #3bb197);
  312. color: #fff;
  313. border-radius: 8rpx;
  314. font-size: 26rpx;
  315. }
  316. }
  317. }
  318. </style>