endOrderSignBlood.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688
  1. <template>
  2. <view class="Scanning_Result">
  3. <view class="Scanning_top_top">
  4. <view class="Scanning_top_icon">
  5. <text class="cubeic-ok icon_transport transport-duigou"></text>
  6. </view>
  7. <view class="Scanning_top_text">
  8. <view class="text1"> 签到成功 </view>
  9. </view>
  10. </view>
  11. <view class="Scanning_cont_cont">
  12. <view>您已到达{{queryObj.deptName}},请选择血制品进行交接</view>
  13. </view>
  14. <view class="Scanning_top">
  15. <view class="title1">{{queryObj.deptName}}</view>
  16. <view>{{dataList.patientTotalCount}}人</view>
  17. <view>{{dataList.bloodTotalCount}}袋</view>
  18. </view>
  19. <view class="Scanning_cont">
  20. <view class="list" v-for="(v2, i2) of dataList.children" :key="i2">
  21. <view class="list_top" :class="{disabled: v2.state.value == 5}">
  22. <checkbox-group @change="changeCheckbox(v2)" style="width: 100%;">
  23. <label style="display: flex;position: relative;">
  24. <checkbox class="checkbox" :checked="v2.checked" :disabled="v2.state.value == 5" />
  25. <text class="newicon newicon-a-ziyuan7"></text>
  26. <view class="title1 ellipsis">
  27. <text>{{v2.patientName}}</text><text>{{v2.hosNum}}</text>
  28. </view>
  29. <view style="display: flex;align-items: center;justify-content: space-between;">
  30. <text>{{v2.count}}袋</text>
  31. <text class="state">{{v2.state ? v2.state.name : ''}}</text>
  32. </view>
  33. </label>
  34. </checkbox-group>
  35. </view>
  36. <view class="list_bottom_wrap" v-for="(v3, i3) of v2.children" :key="i3" @click="v3.checked = !v3.checked">
  37. <view class="list_bottom">
  38. <view class="title1 ellipsis">
  39. <text class="ellipsis">{{v3.bloodCode}}</text>
  40. <text>{{v3.volume}}{{v3.unit}}</text>
  41. </view>
  42. <view class="title2">
  43. <text>{{v3.count}}袋</text>
  44. <text class="newicon newicon-a-ziyuan3" :class="{active: v3.checked}"></text>
  45. </view>
  46. </view>
  47. <view class="list_detail" v-if="v3.checked">
  48. <view class="list_detail_item" v-for="(v4, i4) of v3.children" :key="i4">
  49. <view class="list_detail_item_title">
  50. <text>{{v4.bloodCode}}{{v4.productCode ? '+' + v4.productCode : ''}}</text>
  51. <text class="blue serialNumber">{{i4 + 1}}</text>
  52. </view>
  53. <view class="list_detail_item_content">
  54. <view>
  55. <text>血型:{{v4.aboType}}</text>
  56. <text class="ml16">RH(D):{{v4.rhType}}</text>
  57. </view>
  58. <view>
  59. <text>失效时间:{{v4.overDate | formatDate('yyyy-MM-dd hh:mm')}}</text>
  60. <!-- <text class="zhi">至</text> -->
  61. <!-- <text></text> -->
  62. </view>
  63. <view class="list_detail_item_content_status">
  64. <text class="blue">{{v4.state ? v4.state.name : ''}}</text>
  65. </view>
  66. </view>
  67. </view>
  68. </view>
  69. </view>
  70. </view>
  71. </view>
  72. <view class="foot_btn_spe">
  73. <view class="btn1" @click="complete()" v-if="isShowCompleteBtn">{{isComplete ? '核对完成-完成工单' : '核对完成'}}</view>
  74. <view class="btn3" @click="goBack()">返回</view>
  75. </view>
  76. <!-- 填写交接人工号弹窗 -->
  77. <selectAccount @click.stop.native v-if="hosModels.disjunctor" :content="hosModels.content" :disjunctor="hosModels.disjunctor" @ok="hosOk"
  78. @cancel="hosCancel">
  79. </selectAccount>
  80. </view>
  81. </template>
  82. <script>
  83. import {
  84. get,
  85. post,
  86. SM,
  87. webHandle
  88. } from "../../http/http.js";
  89. export default {
  90. data() {
  91. return {
  92. hosId: uni.getStorageSync('userData').user.currentHospital.id,
  93. // 填写交接人工号弹窗model
  94. hosModels: {
  95. disjunctor: false,
  96. },
  97. dataList: {},
  98. queryObj: {}, //路由传递过来的数据
  99. isComplete: false,
  100. isShowCompleteBtn: false,
  101. };
  102. },
  103. methods: {
  104. // arrayToObject(dataList){
  105. // let bloodList = [];
  106. // dataList.forEach(item1 => {
  107. // item1.children.forEach(item2 => {
  108. // bloodList = bloodList.concat(item2.children);
  109. // })
  110. // })
  111. // let obj = {};
  112. // bloodList.forEach(v => {
  113. // if(obj[v.gdid]){
  114. // obj[v.gdid].push(v)
  115. // }else{
  116. // obj[v.gdid] = [];
  117. // }
  118. // })
  119. // return obj;
  120. // },
  121. changeCheckbox(data){
  122. data.checked = !data.checked;
  123. // console.log(this.dataList.children);
  124. // let dataResList = this.dataList.children.filter(v => v.state.value == 4);
  125. // let bloodResObj = this.arrayToObject(dataResList);
  126. // let dataCheckedList = this.dataList.children.filter(v => v.checked && v.state.value == 4);
  127. // let bloodCheckedObj = this.arrayToObject(dataCheckedList);
  128. // let isComplete = false;
  129. // for(let key in bloodResObj){
  130. // if(bloodCheckedObj[key] && bloodCheckedObj[key].length === bloodResObj[key].length){
  131. // isComplete = true;
  132. // break;
  133. // }
  134. // }
  135. // this.isComplete = isComplete;
  136. let allData = this.dataList.children.filter(v => v.state.value == 4);
  137. let allDataChecked = this.dataList.children.filter(v => v.checked && v.state.value == 4);
  138. this.isShowCompleteBtn = allDataChecked.length > 0;
  139. this.isComplete = allData.length === allDataChecked.length;
  140. },
  141. // 核对完成
  142. complete(){
  143. console.log(this.dataList.children);
  144. uni.showLoading({
  145. title: "加载中",
  146. mask: true,
  147. });
  148. post('/simple/data/fetchDataList/taskTypeConfig', {
  149. idx: 0,
  150. sum: 1,
  151. taskTypeConfig: {
  152. "taskTypeDTO": {
  153. "hosId": {
  154. "id": this.hosId
  155. },
  156. "ordinaryField": {
  157. "key": "ordinary_field",
  158. "value": "blood"
  159. }
  160. }
  161. },
  162. }).then(res => {
  163. uni.hideLoading();
  164. if(res.status == 200){
  165. let list = res.list || [];
  166. if(list.length > 0){
  167. let signTypeList = list[0].signTypeList || [];
  168. let signType = signTypeList.find( v => v.value == 6 );
  169. if(signType){
  170. this.showSelectAccount();
  171. }else{
  172. this.checkComplete();
  173. }
  174. }else{
  175. uni.showToast({
  176. icon: "none",
  177. title: "请配置血制品任务类型!",
  178. });
  179. }
  180. }else{
  181. uni.showToast({
  182. icon: "none",
  183. title: res.msg || "接口获取数据失败!",
  184. });
  185. }
  186. })
  187. },
  188. // 填写交接人工号-确认
  189. hosOk(data) {
  190. console.log(data);
  191. const {
  192. accountName,
  193. account,
  194. accountId
  195. } = data;
  196. if (!accountName && !account) {
  197. //没有填写交接人
  198. uni.showModal({
  199. title: "提示",
  200. content: "请填写交接人工号!",
  201. showCancel: false,
  202. success: function(res) {
  203. if (res.confirm) {
  204. console.log("用户点击确定");
  205. } else if (res.cancel) {
  206. console.log("用户点击取消");
  207. }
  208. },
  209. });
  210. return;
  211. } else if ((!accountName && account) || (accountName && !account)) {
  212. //没有填写交接人
  213. uni.showModal({
  214. title: "提示",
  215. content: "请填写正确的交接人工号!",
  216. showCancel: false,
  217. success: function(res) {
  218. if (res.confirm) {
  219. console.log("用户点击确定");
  220. } else if (res.cancel) {
  221. console.log("用户点击取消");
  222. }
  223. },
  224. });
  225. return;
  226. }
  227. this.hosModels.disjunctor = false;
  228. this.checkComplete(data);
  229. },
  230. // 填写交接人工号-取消
  231. hosCancel() {
  232. this.hosModels.disjunctor = false;
  233. this.flag = true;
  234. },
  235. // 填写交接人工号弹窗
  236. showSelectAccount() {
  237. console.log(this.dataList.children);
  238. let dataList = this.dataList.children.filter(v => v.checked && v.state.value == 4);
  239. let bloodNum = dataList.reduce((pre,current) => pre + current.count, 0);
  240. let patientNum = dataList.length;
  241. this.hosModels = {
  242. content: `已选择${patientNum}名患者共${bloodNum}袋血制品,确定核对完成,请输入交接人员工号!`,
  243. disjunctor: true,
  244. };
  245. },
  246. checkComplete(accountObj){
  247. console.log(this.dataList.children);
  248. let dataList = this.dataList.children.filter(v => v.checked && v.state.value == 4);
  249. let bloodList = [];
  250. dataList.forEach(item1 => {
  251. item1.children.forEach(item2 => {
  252. bloodList = bloodList.concat(item2.children);
  253. })
  254. })
  255. console.log(bloodList);
  256. uni.showLoading({
  257. title: "加载中",
  258. mask: true,
  259. });
  260. let postData = {
  261. "type": "bloodTake",
  262. "orderId": 0,
  263. delivery: this.queryObj.type === 'delivery' ? true : undefined,
  264. // "orderIds": this.queryObj.orderIds || undefined,
  265. bloodIds: bloodList.map(v => v.id).toString(),
  266. };
  267. if (accountObj) {
  268. postData.handoverUser = accountObj.accountId;
  269. }
  270. post('/transflow/checkComplete', postData).then(res => {
  271. uni.hideLoading();
  272. if(res.state == 200){
  273. uni.navigateTo({
  274. url: `../receiptpage/receiptpage`,
  275. });
  276. }else{
  277. uni.showToast({
  278. icon: "none",
  279. title: res.msg || "接口获取数据失败!",
  280. });
  281. }
  282. })
  283. },
  284. // 返回
  285. goBack() {
  286. uni.navigateBack();
  287. },
  288. //获取页面信息
  289. getInfo(){
  290. uni.showLoading({
  291. title: "加载中",
  292. mask: true,
  293. });
  294. post('/transflow/scanInfo', {
  295. "code": "nb",
  296. "id": 0,
  297. "type": "bloodTake",
  298. "deptOrderDetails": true,
  299. "orderIds": this.queryObj.orderIds,
  300. "deptId": this.queryObj.deptId,
  301. }).then(res => {
  302. uni.hideLoading();
  303. if(res.state == 200){
  304. let dataList = res.data.data || {};
  305. // 第一层
  306. let dataNewList = {
  307. bloodTotalCount: 0,
  308. patientTotalCount: 0,
  309. children: [],
  310. };
  311. for (let key2 in dataList) {
  312. let value2 = dataList[key2];
  313. console.log(value2);
  314. // 第三层,第四层
  315. let array3 = [];
  316. for (let key3 in value2) {
  317. let value3 = value2[key3];
  318. console.log(dataNewList);
  319. array3.push({
  320. checked: false,
  321. bloodCode: key3.split('|')[0],
  322. volume: key3.split('|')[1],
  323. unit: key3.split('|')[2],
  324. count: value3.length,
  325. children: value3,
  326. });
  327. }
  328. // 第二层
  329. dataNewList.children.push({
  330. checked: array3[0].children[0].state.value == 4 ? true : false,// 默认
  331. patientName: key2.split('|')[0],
  332. hosNum: key2.split('|')[1],
  333. state: array3[0].children[0].state,
  334. count: array3.reduce((pre, current) => pre + current.count, 0),
  335. children: array3,
  336. });
  337. }
  338. // 默认
  339. let allData = dataNewList.children.filter(v => v.state.value == 4);
  340. let allDataChecked = dataNewList.children.filter(v => v.checked && v.state.value == 4);
  341. this.isShowCompleteBtn = allDataChecked.length > 0;
  342. this.isComplete = allData.length === allDataChecked.length;
  343. // 计算第一层血袋数量
  344. dataNewList.bloodTotalCount = dataNewList.children.reduce((pre, current) => pre + current.count, 0);
  345. // 计算第一层患者数量
  346. dataNewList.patientTotalCount = Object.keys(dataList).length;
  347. console.log(dataNewList)
  348. // 赋值
  349. this.dataList = dataNewList;
  350. }else{
  351. uni.showToast({
  352. icon: "none",
  353. title: res.msg || "接口获取数据失败!",
  354. });
  355. }
  356. })
  357. },
  358. },
  359. onLoad(options) {
  360. console.log(options, "result");
  361. this.queryObj = options;
  362. this.getInfo();
  363. // #ifdef APP-PLUS
  364. webHandle("no", "app");
  365. // #endif
  366. // #ifdef H5
  367. webHandle("no", "wx");
  368. // #endif
  369. },
  370. };
  371. </script>
  372. <style lang="less" scoped>
  373. .Scanning_Result {
  374. padding: 16rpx;
  375. display: flex;
  376. flex-direction: column;
  377. height: 100vh;
  378. background-color: #f5f7fb;
  379. .ml16{
  380. margin-left: 16rpx;
  381. }
  382. .blue{
  383. color: #49b856!important;
  384. }
  385. .ellipsis{
  386. white-space: nowrap;
  387. overflow: hidden;
  388. text-overflow: ellipsis;
  389. }
  390. .Scanning_top_top {
  391. .Scanning_top_icon {
  392. width: 140rpx;
  393. height: 140rpx;
  394. margin: 50rpx auto 40rpx;
  395. border-radius: 50%;
  396. .speNum{
  397. text-align: center;
  398. font-size: 140rpx;
  399. }
  400. .cubeic-ok {
  401. font-size: 140rpx;
  402. color: #35b34a;
  403. }
  404. .cubeic-close {
  405. font-size: 140rpx;
  406. color: #ff3b53;
  407. }
  408. }
  409. .Scanning_top_text {
  410. .text1 {
  411. font-size: 48rpx;
  412. text-align: center;
  413. }
  414. .success_tips {
  415. color: red;
  416. font-size: 30rpx;
  417. }
  418. }
  419. }
  420. .Scanning_cont_cont {
  421. padding-bottom: 50rpx;
  422. text-align: center;
  423. display: flex;
  424. flex-direction: column;
  425. .fz58{
  426. font-size: 58rpx;
  427. }
  428. .table_bodys{
  429. overflow-y: auto;
  430. flex: 1;
  431. }
  432. .table_head{
  433. display: flex;
  434. margin-top: 50rpx;
  435. .ml16{
  436. margin-left: 16rpx;
  437. }
  438. view {
  439. height: 110rpx;
  440. line-height: 1;
  441. flex: 1;
  442. font-weight: bold;
  443. color: #000;
  444. font-size: 38rpx;
  445. display: flex;
  446. justify-content: center;
  447. align-items: center;
  448. }
  449. }
  450. .table_body{
  451. background: #F3FAF7;
  452. border-radius: 8px;
  453. border: 1px solid #E9E9E9;
  454. display: flex;
  455. margin-bottom: 20rpx;
  456. padding: 30rpx 20rpx;
  457. view {
  458. line-height: 1;
  459. flex: 1;
  460. color: #555;
  461. font-size: 38rpx;
  462. display: flex;
  463. justify-content: center;
  464. align-items: center;
  465. word-break: break-all;
  466. }
  467. }
  468. }
  469. .Scanning_top {
  470. margin-top: 16rpx;
  471. background-color: #fff;
  472. color: #49b856;
  473. font-weight: bold;
  474. font-size: 30rpx;
  475. display: flex;
  476. align-items: center;
  477. line-height: 1.1;
  478. view{
  479. padding: 16rpx 20rpx;
  480. flex: 1;
  481. &.title1{
  482. flex: 2;
  483. word-break: break-all;
  484. }
  485. }
  486. }
  487. .Scanning_cont {
  488. flex: 1;
  489. display: flex;
  490. flex-direction: column;
  491. overflow-y: auto;
  492. .list{
  493. background-color: #fff;
  494. margin-top: 16rpx;
  495. line-height: 1;
  496. .list_top{
  497. display: flex;
  498. font-weight: bold;
  499. color: #000;
  500. font-size: 30rpx;
  501. position: relative;
  502. padding-bottom: 16rpx;
  503. &.disabled{
  504. color: #767676!important;
  505. .newicon-a-ziyuan7,
  506. .state{
  507. color: #767676!important;
  508. }
  509. }
  510. .checkbox{
  511. position: absolute;
  512. left: 16rpx;
  513. top: 14rpx;
  514. /deep/ .uni-checkbox-input{
  515. width: 28rpx!important;
  516. height: 28rpx!important;
  517. }
  518. /deep/ .uni-checkbox-input.uni-checkbox-input-checked:before{
  519. font-size: 28rpx!important;
  520. }
  521. /deep/ .uni-checkbox-input.uni-checkbox-input-checked{
  522. color: #42b983!important;
  523. }
  524. }
  525. /deep/ .checkbox:not([disabled]) .uni-checkbox-input:hover {
  526. border-color: #42b983 !important;
  527. color: #42b983 !important;
  528. }
  529. .newicon-a-ziyuan7{
  530. position: absolute;
  531. left: 54rpx;
  532. top: 14rpx;
  533. font-size: 32rpx;
  534. color: #49b856;
  535. }
  536. .state{
  537. font-size: 22rpx;
  538. font-weight: bold;
  539. color: #49b856;
  540. }
  541. view{
  542. padding: 16rpx 20rpx 0 0;
  543. flex: 1;
  544. &.title1{
  545. padding: 16rpx 20rpx 0 94rpx;
  546. flex: 3;
  547. text:first-of-type{
  548. margin-right: 16rpx;
  549. }
  550. }
  551. }
  552. }
  553. .list_bottom{
  554. display: flex;
  555. font-size: 25rpx;
  556. color: #767676;
  557. view{
  558. padding: 0 20rpx 16rpx 5rpx;
  559. flex: 1;
  560. &.title1{
  561. padding: 0 60rpx 16rpx 54rpx;
  562. flex: 3;
  563. display: flex;
  564. }
  565. &.title2{
  566. display: flex;
  567. align-items: center;
  568. }
  569. .newicon-a-ziyuan3{
  570. color: #cdcdcd;
  571. font-size: 12rpx;
  572. margin-left: 20rpx;
  573. transform: rotate(180deg);
  574. transition: all 0.5s;
  575. &.active{
  576. transform: rotate(0deg);
  577. }
  578. }
  579. }
  580. }
  581. .list_detail{
  582. border: 2rpx solid #C6C6C6;
  583. padding: 22rpx 30rpx 0;
  584. font-size: 26rpx;
  585. .list_detail_item{
  586. margin-bottom: 22rpx;
  587. padding: 10rpx 0;
  588. background-color: #F3FAF7;
  589. .list_detail_item_title{
  590. padding: 0 17rpx 6rpx;
  591. border-bottom: 2rpx solid #C3C3C3;
  592. display: flex;
  593. align-items: center;
  594. justify-content: space-between;
  595. .serialNumber{
  596. font-size: 38rpx;
  597. }
  598. }
  599. .list_detail_item_content{
  600. padding: 0 17rpx;
  601. view{
  602. line-height: 35rpx;
  603. margin-top: 17rpx;
  604. &:first-of-type{
  605. margin-top: 9rpx;
  606. }
  607. }
  608. .zhi{
  609. margin-left: 60rpx;
  610. margin-right: 60rpx;
  611. }
  612. .list_detail_item_content_status{
  613. display: flex;
  614. justify-content: flex-end;
  615. text{
  616. font-weight: bold;
  617. }
  618. }
  619. }
  620. }
  621. }
  622. }
  623. }
  624. .foot_btn_spe {
  625. line-height: 64rpx;
  626. height: 64rpx;
  627. margin-bottom: 40rpx;
  628. text-align: center;
  629. display: flex;
  630. justify-content: space-between;
  631. view {
  632. height: 64rpx;
  633. flex: 1;
  634. margin: 0 1%;
  635. background-image: linear-gradient(to right, #72c172, #3bb197);
  636. color: #fff;
  637. border-radius: 8rpx;
  638. font-size: 26rpx;
  639. }
  640. }
  641. }
  642. </style>