startOrderSignBloodDetail.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380
  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. <cancelBlood :data="v2" :index="i2" :signType4="signType4" :cancelBlood="cancelBlood" :cancelBloodHandover="cancelBloodHandover" :dataList="dataList" type="start"></cancelBlood>
  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. hosId: uni.getStorageSync('userData').user.currentHospital.id,
  71. dataList: {},
  72. queryObj: {}, //路由传递过来的数据
  73. signType4: false,
  74. cancelBlood: 0,
  75. cancelBloodHandover: 0,
  76. };
  77. },
  78. methods: {
  79. // 获取血制品页面控制开关
  80. getTaskBloodConfig(){
  81. return post("/simple/data/fetchDataList/taskTypeConfig", {
  82. "idx": 0,
  83. "sum": 10,
  84. "taskTypeConfig": {
  85. "taskTypeDTO": {
  86. "hosId": {
  87. "id": this.hosId
  88. },
  89. "ordinaryField": {
  90. "key": "ordinary_field",
  91. "value": "blood"
  92. }
  93. }
  94. }
  95. });
  96. },
  97. // 获取血制品页面控制开关
  98. async getBloodPageConfig(){
  99. let result = await this.getTaskBloodConfig();
  100. if (result.status == 200) {
  101. if(result.list && result.list[0]){
  102. let signTypeList = result.list[0].signTypeList || [];
  103. this.signType4 = signTypeList.some(v => v.value == 4);
  104. this.cancelBlood = result.list[0].cancelBlood;
  105. this.cancelBloodHandover = result.list[0].cancelBloodHandover;
  106. }else{
  107. this.signType4 = false;
  108. this.cancelBlood = 0;
  109. this.cancelBloodHandover = 0;
  110. }
  111. } else {
  112. this.signType4 = false;
  113. this.cancelBlood = 0;
  114. this.cancelBloodHandover = 0;
  115. }
  116. },
  117. // 返回
  118. goBack() {
  119. uni.navigateBack();
  120. },
  121. //获取页面信息
  122. getInfo(){
  123. uni.showLoading({
  124. title: "加载中",
  125. mask: true,
  126. });
  127. post('/transflow/scanInfo', {
  128. "code": "nb",
  129. "id": 0,
  130. "type": "bloodTake",
  131. "deptOrderDetails": true,
  132. "bloodIds": this.queryObj.bloodIds,
  133. }).then(res => {
  134. uni.hideLoading();
  135. if(res.state == 200){
  136. let dataList = res.data.data || {};
  137. // 第一层
  138. let dataNewList = {
  139. bloodTotalCount: 0,
  140. patientTotalCount: 0,
  141. children: [],
  142. };
  143. for (let key2 in dataList) {
  144. let value2 = dataList[key2];
  145. console.log(value2);
  146. // 第三层,第四层
  147. let array3 = [];
  148. for (let key3 in value2) {
  149. let value3 = value2[key3];
  150. console.log(dataNewList);
  151. array3.push({
  152. checked: false,
  153. bloodCode: key3.split('|')[0],
  154. volume: key3.split('|')[1],
  155. unit: key3.split('|')[2],
  156. count: value3.length,
  157. children: value3,
  158. });
  159. }
  160. // 第二层
  161. dataNewList.children.push({
  162. patientName: key2.split('|')[0],
  163. hosNum: key2.split('|')[1],
  164. count: array3.reduce((pre, current) => pre + current.count, 0),
  165. children: array3,
  166. });
  167. }
  168. // 计算第一层血袋数量
  169. dataNewList.bloodTotalCount = dataNewList.children.reduce((pre, current) => pre + current.count, 0);
  170. // 计算第一层患者数量
  171. dataNewList.patientTotalCount = Object.keys(dataList).length;
  172. console.log(dataNewList)
  173. // 赋值
  174. this.dataList = dataNewList;
  175. }else{
  176. uni.showToast({
  177. icon: "none",
  178. title: res.msg || "接口获取数据失败!",
  179. });
  180. }
  181. })
  182. },
  183. },
  184. onLoad(options) {
  185. console.log(options, "result");
  186. this.queryObj = options;
  187. this.getInfo();
  188. this.getBloodPageConfig();
  189. // #ifdef APP-PLUS
  190. webHandle("no", "app");
  191. // #endif
  192. // #ifdef H5
  193. webHandle("no", "wx");
  194. // #endif
  195. },
  196. };
  197. </script>
  198. <style lang="less" scoped>
  199. .Scanning_Result {
  200. padding: 16rpx;
  201. display: flex;
  202. flex-direction: column;
  203. height: 100vh;
  204. background-color: #f5f7fb;
  205. .ml16{
  206. margin-left: 16rpx;
  207. }
  208. .blue{
  209. color: #49b856!important;
  210. }
  211. .ellipsis{
  212. white-space: nowrap;
  213. overflow: hidden;
  214. text-overflow: ellipsis;
  215. }
  216. .Scanning_top {
  217. margin-top: 16rpx;
  218. background-color: #fff;
  219. color: #49b856;
  220. font-weight: bold;
  221. font-size: 30rpx;
  222. display: flex;
  223. align-items: center;
  224. line-height: 1.1;
  225. view{
  226. padding: 16rpx 20rpx;
  227. flex: 1;
  228. &.title1{
  229. flex: 4;
  230. word-break: break-all;
  231. }
  232. }
  233. }
  234. .Scanning_cont {
  235. flex: 1;
  236. display: flex;
  237. flex-direction: column;
  238. overflow-y: auto;
  239. .list{
  240. background-color: #fff;
  241. margin-top: 16rpx;
  242. line-height: 1;
  243. .list_top{
  244. display: flex;
  245. font-weight: bold;
  246. color: #000;
  247. font-size: 30rpx;
  248. position: relative;
  249. padding-bottom: 16rpx;
  250. .newicon-a-ziyuan7{
  251. position: absolute;
  252. left: 12rpx;
  253. top: 14rpx;
  254. font-size: 32rpx;
  255. color: #49b856;
  256. }
  257. view{
  258. padding: 16rpx 20rpx 0 0;
  259. flex: 1;
  260. &.title1{
  261. padding: 16rpx 20rpx 0 54rpx;
  262. flex: 5;
  263. text:first-of-type{
  264. margin-right: 16rpx;
  265. }
  266. }
  267. }
  268. }
  269. .list_bottom{
  270. display: flex;
  271. font-size: 25rpx;
  272. color: #767676;
  273. view{
  274. padding: 0 20rpx 16rpx 5rpx;
  275. flex: 1;
  276. &.title1{
  277. padding: 0 20rpx 16rpx 54rpx;
  278. flex: 5;
  279. display: flex;
  280. }
  281. &.title2{
  282. display: flex;
  283. align-items: center;
  284. }
  285. .newicon-a-ziyuan3{
  286. color: #cdcdcd;
  287. font-size: 12rpx;
  288. margin-left: 20rpx;
  289. transform: rotate(180deg);
  290. transition: all 0.5s;
  291. &.active{
  292. transform: rotate(0deg);
  293. }
  294. }
  295. }
  296. }
  297. .list_detail{
  298. border: 2rpx solid #C6C6C6;
  299. padding: 22rpx 30rpx 0;
  300. font-size: 26rpx;
  301. .list_detail_item{
  302. margin-bottom: 22rpx;
  303. padding: 10rpx 0;
  304. background-color: #F3FAF7;
  305. .list_detail_item_title{
  306. padding: 0 17rpx 6rpx;
  307. border-bottom: 2rpx solid #C3C3C3;
  308. display: flex;
  309. align-items: center;
  310. justify-content: space-between;
  311. .serialNumber{
  312. font-size: 38rpx;
  313. }
  314. }
  315. .list_detail_item_content{
  316. padding: 0 17rpx;
  317. view{
  318. line-height: 35rpx;
  319. margin-top: 17rpx;
  320. &:first-of-type{
  321. margin-top: 9rpx;
  322. }
  323. }
  324. .zhi{
  325. margin-left: 60rpx;
  326. margin-right: 60rpx;
  327. }
  328. .list_detail_item_content_status{
  329. display: flex;
  330. justify-content: flex-end;
  331. text{
  332. font-weight: bold;
  333. }
  334. }
  335. }
  336. }
  337. }
  338. }
  339. }
  340. .foot_btn_spe {
  341. line-height: 64rpx;
  342. height: 64rpx;
  343. margin-bottom: 40rpx;
  344. text-align: center;
  345. display: flex;
  346. justify-content: space-between;
  347. view {
  348. height: 64rpx;
  349. flex: 1;
  350. margin: 0 1%;
  351. background-image: linear-gradient(to right, #72c172, #3bb197);
  352. color: #fff;
  353. border-radius: 8rpx;
  354. font-size: 26rpx;
  355. }
  356. }
  357. }
  358. </style>