endOrderSignBlood.vue 15 KB

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