scanning_blood.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532
  1. <template>
  2. <view class="bloodDetails">
  3. <view class="Scanning_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="page_item_wrap">
  12. <view class="page_item">
  13. <view class="page_item_top">
  14. <view class="page_item_top-inner">
  15. <view class="page_item_top_L">
  16. <text class="L_text">血袋号:{{ bloodDTO.bloodCode||'无' }}</text>
  17. </view>
  18. <view class="page_item_top_R">
  19. <text class="L_iocn"></text>
  20. </view>
  21. </view>
  22. </view>
  23. <view class="page_item_cont">
  24. <view class="page_item_cont_C">
  25. <view class="page_item_cont_title_C">
  26. <text>血液类型</text>
  27. <text class="text_big">
  28. <text>
  29. {{bloodDTO.type ? bloodDTO.type.name : "无"}}
  30. </text>
  31. </text>
  32. </view>
  33. </view>
  34. <view class="page_item_cont_C">
  35. <view class="page_item_cont_title_C">
  36. <text>血量</text>
  37. <text class="text_big">
  38. <text>{{ bloodDTO.volume?bloodDTO.volume+'ML':'无' }}</text>
  39. </text>
  40. </view>
  41. </view>
  42. <view class="page_item_cont_C">
  43. <view class="page_item_cont_title_C">
  44. <text>采血日期</text>
  45. <text class="text_big">
  46. <text v-if="bloodDTO.printDate">{{bloodDTO.printDate | formatDate('yyyy-MM-dd hh:mm')}}</text>
  47. <text v-else>无</text>
  48. </text>
  49. </view>
  50. </view>
  51. <view class="page_item_cont_C">
  52. <view class="page_item_cont_title_C">
  53. <text>有效期至</text>
  54. <text class="text_big">
  55. <text v-if="bloodDTO.overDate">{{bloodDTO.overDate | formatDate('yyyy-MM-dd hh:mm')}}</text>
  56. <text v-else>无</text>
  57. </text>
  58. </view>
  59. </view>
  60. <view class="page_item_cont_C">
  61. <view class="page_item_cont_title_C">
  62. <text>血型</text>
  63. <text class="text_big">
  64. <text>{{ bloodDTO.aboType||'无' }}</text>
  65. </text>
  66. </view>
  67. </view>
  68. <view class="page_item_cont_C">
  69. <view class="page_item_cont_title_C">
  70. <text>RH(D)</text>
  71. <text class="text_big">{{bloodDTO.rhType || '无'}}</text>
  72. </view>
  73. </view>
  74. <view class="page_item_cont_C">
  75. <view class="page_item_cont_title_C">
  76. <text>患者</text>
  77. <text class="text_big">
  78. <text>{{ bloodDTO.patientName }}<text v-if="bloodDTO.hosNum">({{ bloodDTO.hosNum }})</text></text>
  79. </text>
  80. </view>
  81. </view>
  82. <view class="page_item_cont_C">
  83. <view class="page_item_cont_title_C">
  84. <text>申请科室</text>
  85. <text class="text_big">
  86. <text>{{ bloodDTO.applyDeptDTO?bloodDTO.applyDeptDTO.dept:'无' }}</text>
  87. </text>
  88. </view>
  89. </view>
  90. </view>
  91. <view class="L"></view>
  92. <view class="R"></view>
  93. </view>
  94. <view class="L-l"></view>
  95. <view class="R-l"></view>
  96. </view>
  97. <view class="cube-toolbar-item-wrap" v-show="bloodDTO.id">
  98. <button class="cube-toolbar-item" v-show="orderId && receiveOrder" @click="receiveOrderAndSign()">
  99. 接单并签到
  100. </button>
  101. <button class="cube-toolbar-item" v-show="!orderId && buildOrder" @click="buildOrderAndSign()">
  102. 建单并签到
  103. </button>
  104. <button class="cube-toolbar-item" v-show="signDeptOrder" @click="signDeptOrderAndSign()">
  105. 指定科室建单
  106. </button>
  107. <button class="cube-toolbar-item" @click="goBack()">
  108. 知道了
  109. </button>
  110. </view>
  111. </view>
  112. </template>
  113. <script>
  114. import {
  115. webHandle,
  116. post
  117. } from "../../http/http.js";
  118. export default {
  119. data() {
  120. return {
  121. options: {},
  122. receiveOrder: false,
  123. buildOrder: false,
  124. signDeptOrder: false,
  125. bloodDTO: {}, //血制品信息
  126. taskTypeConfig: {}, //血制品配置信息
  127. orderId:'',//工单id
  128. gotoFlag: true,
  129. };
  130. },
  131. methods: {
  132. goBack() {
  133. uni.navigateTo({
  134. url: "../receiptpage/receiptpage",
  135. });
  136. },
  137. // 接单并签到
  138. receiveOrderAndSign() {
  139. if (!this.gotoFlag) {
  140. return;
  141. }
  142. this.gotoFlag = false;
  143. uni.showModal({
  144. title: "提示",
  145. content: "请确认是否接单并签到?",
  146. success: (result) => {
  147. if (result.confirm) {
  148. console.log("用户点击确定");
  149. let postData = {
  150. type: 'blood',
  151. id: this.bloodDTO.id,
  152. orderId: this.orderId
  153. };
  154. uni.showLoading({
  155. title: "加载中",
  156. mask: true,
  157. });
  158. post("/transflow/createOrTakeOrder", postData).then((ress) => {
  159. uni.hideLoading();
  160. if (ress.state == 200) {
  161. uni.navigateTo({
  162. url: `../scanning_blood_process/scanning_blood_process?orderId=${ress.data.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(this.bloodDTO))}&scanCount=${ress.data.scanCount}&status=${ress.state}`,
  163. });
  164. } else {
  165. uni.showToast({
  166. icon: "none",
  167. title: ress.msg || "接口获取数据失败!",
  168. });
  169. }
  170. });
  171. } else if (result.cancel) {
  172. console.log("用户点击取消");
  173. }
  174. },
  175. });
  176. },
  177. // 建单并签到
  178. buildOrderAndSign() {
  179. if (!this.gotoFlag) {
  180. return;
  181. }
  182. this.gotoFlag = false;
  183. uni.showModal({
  184. title: "提示",
  185. content: "请确认是否建单并签到?",
  186. success: (result) => {
  187. if (result.confirm) {
  188. console.log("用户点击确定");
  189. let postData = {
  190. type: 'blood',
  191. id: this.bloodDTO.id,
  192. };
  193. uni.showLoading({
  194. title: "加载中",
  195. mask: true,
  196. });
  197. post("/transflow/createOrTakeOrder", postData).then((ress) => {
  198. uni.hideLoading();
  199. if (ress.state == 200) {
  200. uni.navigateTo({
  201. url: `../scanning_blood_process/scanning_blood_process?orderId=${ress.data.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(this.bloodDTO))}&scanCount=${ress.data.scanCount}&status=${ress.state}`,
  202. });
  203. } else {
  204. uni.showToast({
  205. icon: "none",
  206. title: ress.msg || "接口获取数据失败!",
  207. });
  208. }
  209. });
  210. } else if (result.cancel) {
  211. console.log("用户点击取消");
  212. }
  213. },
  214. });
  215. },
  216. // 指定科室建单
  217. signDeptOrderAndSign(){
  218. uni.showModal({
  219. title: "提示",
  220. content: "请选择血制品要送达的科室!",
  221. success: (result) => {
  222. if (result.confirm) {
  223. console.log("用户点击确定");
  224. uni.navigateTo({
  225. url: `../search/search?type=bloodSelect&bloodDTO=${encodeURIComponent(JSON.stringify(this.bloodDTO))}`,
  226. });
  227. } else if (result.cancel) {
  228. console.log("用户点击取消");
  229. }
  230. },
  231. });
  232. },
  233. //获取血制品信息及其关联的工单信息
  234. scanInfo(value, type) {
  235. uni.showLoading({
  236. title: "加载中",
  237. mask: true,
  238. });
  239. post("/common/common/getDictionary", {"type":"list","key":"ttconfig_sign_type"}).then((res1) => {
  240. post("/transflow/scanInfo", {
  241. type: 'blood',
  242. [type]: value,
  243. }).then((res) => {
  244. uni.hideLoading();
  245. if (res.state == 200) {
  246. this.bloodDTO = res.data.dto || {};
  247. this.orderId = res.data.orderId;
  248. console.log(this.orderId);
  249. this.taskTypeConfig = res.data.taskTypeConfig;
  250. let sign_ids = this.taskTypeConfig.signTypeIds?this.taskTypeConfig.signTypeIds.split(','):[];
  251. console.log(sign_ids);
  252. this.receiveOrder = false;
  253. this.buildOrder = false;
  254. this.signDeptOrder = false;
  255. sign_ids.forEach(v => {
  256. let obj = res1.find(vv => vv.id == v);
  257. console.log(obj);
  258. // 接单
  259. if(obj && obj.value == 1){
  260. this.receiveOrder = true;
  261. }
  262. // 建单
  263. if(obj && obj.value == 2){
  264. this.buildOrder = true;
  265. }
  266. // 指定科室建单
  267. if(obj && obj.value == 3){
  268. this.signDeptOrder = true;
  269. }
  270. })
  271. } else {
  272. uni.showToast({
  273. icon: "none",
  274. title: res.msg || "接口获取数据失败!",
  275. });
  276. }
  277. });
  278. });
  279. },
  280. },
  281. onShow() {
  282. this.gotoFlag = true;
  283. },
  284. onLoad(options) {
  285. console.log(options);
  286. this.options = options;
  287. if (this.options.qrcode) {
  288. this.scanInfo(this.options.qrcode, 'code');
  289. }else if (this.options.id) {
  290. this.scanInfo(this.options.id, 'id');
  291. }
  292. // #ifdef APP-PLUS
  293. webHandle("no", "app");
  294. // #endif
  295. // #ifdef H5
  296. webHandle("no", "wx");
  297. // #endif
  298. },
  299. };
  300. </script>
  301. <style lang="less" scoped>
  302. .bloodDetails {
  303. background-color: rgb(249, 250, 251);
  304. .Scanning_top {
  305. .Scanning_top_icon {
  306. width: 140rpx;
  307. height: 140rpx;
  308. margin: 0 auto;
  309. border-radius: 50%;
  310. line-height: 140rpx;
  311. text-align: center;
  312. .cubeic-ok {
  313. font-size: 140rpx;
  314. color: #35b34a;
  315. }
  316. .cubeic-close {
  317. font-size: 140rpx;
  318. color: #ff3b53;
  319. }
  320. }
  321. .Scanning_top_text {
  322. .text1 {
  323. margin-top: 40rpx;
  324. font-size: 48rpx;
  325. text-align: center;
  326. }
  327. }
  328. }
  329. .page_item_wrap {
  330. position: relative;
  331. margin-top: 32rpx;
  332. .page_item {
  333. margin-top: 16rpx;
  334. margin-bottom: 124rpx;
  335. background: #fff;
  336. border-radius: 8rpx;
  337. margin: 0 20rpx;
  338. border: 2rpx solid #e5e9ed;
  339. position: relative;
  340. overflow: hidden;
  341. padding: 0 16rpx;
  342. .L {
  343. width: 40rpx;
  344. height: 40rpx;
  345. border-radius: 50%;
  346. background: #f9fafb;
  347. position: absolute;
  348. left: -20rpx;
  349. top: 68rpx;
  350. border: 2rpx solid #e5e9ed;
  351. }
  352. .R {
  353. width: 40rpx;
  354. height: 40rpx;
  355. border-radius: 50%;
  356. background: #f9fafb;
  357. position: absolute;
  358. float: right;
  359. right: -20rpx;
  360. top: 68rpx;
  361. border: 2rpx solid #e5e9ed;
  362. }
  363. .page_item_top {
  364. height: 88rpx;
  365. border-bottom: 2rpx dashed #e5e9ed;
  366. padding: 0 16rpx;
  367. .page_item_top-inner {
  368. display: flex;
  369. justify-content: space-between;
  370. align-items: center;
  371. height: 100%;
  372. .page_item_top_L {
  373. .L_text {
  374. font-size: 32rpx;
  375. font-weight: 700;
  376. }
  377. }
  378. .page_item_top_R {
  379. font-size: 32rpx;
  380. .L_iocn {
  381. color: rgb(7, 134, 60);
  382. font-size: 36rpx;
  383. font-weight: 700;
  384. }
  385. }
  386. }
  387. }
  388. .page_item_cont {
  389. min-height: 180rpx;
  390. padding: 0 16rpx;
  391. text-align: left;
  392. position: relative;
  393. .text_big {
  394. width: 50%;
  395. text-align: right;
  396. font-size: 32rpx;
  397. font-weight: 700;
  398. text {
  399. font-weight: 700;
  400. line-height: 1.5;
  401. }
  402. }
  403. .line {
  404. height: 20rpx;
  405. width: 2rpx;
  406. border-left: 2rpx solid #e5e9ed;
  407. position: absolute;
  408. top: 82rpx;
  409. left: 40rpx;
  410. }
  411. .page_item_cont_T {
  412. padding-top: 28rpx;
  413. font-size: 28rpx;
  414. .page_item_cont_title {
  415. height: 100%;
  416. font-size: 32rpx;
  417. display: flex;
  418. justify-content: space-between;
  419. }
  420. }
  421. .page_item_cont_B {
  422. padding-top: 28rpx;
  423. margin-bottom: 28rpx;
  424. .page_item_cont_title {
  425. font-size: 32rpx;
  426. display: flex;
  427. justify-content: space-between;
  428. align-items: center;
  429. }
  430. }
  431. .page_item_cont_C {
  432. margin-bottom: 28rpx;
  433. .page_item_cont_title_C {
  434. font-size: 32rpx;
  435. display: flex;
  436. justify-content: space-between;
  437. align-items: center;
  438. &>text{
  439. flex-shrink: 0;
  440. }
  441. }
  442. }
  443. #infos {
  444. display: none;
  445. }
  446. }
  447. }
  448. .L-l {
  449. width: 2rpx;
  450. height: 40rpx;
  451. background: #f9fafb;
  452. position: absolute;
  453. left: 20rpx;
  454. top: 72rpx;
  455. }
  456. .R-l {
  457. width: 2rpx;
  458. height: 40rpx;
  459. background: #f9fafb;
  460. position: absolute;
  461. right: 20rpx;
  462. top: 72rpx;
  463. }
  464. }
  465. .cube-toolbar-item-wrap {
  466. display: flex;
  467. position: fixed;
  468. left: 0;
  469. bottom: 20rpx;
  470. width: 100%;
  471. .cube-toolbar-item {
  472. flex: 1;
  473. margin: 0 1%;
  474. height: 68rpx;
  475. line-height: 68rpx;
  476. border-radius: 8rpx;
  477. background: linear-gradient(to right, #72c172, #3bb197);
  478. font-size: 28rpx;
  479. color: #fff;
  480. text-align: center;
  481. }
  482. }
  483. .btn-wrap {
  484. display: flex;
  485. justify-content: space-between;
  486. position: fixed;
  487. left: 20rpx;
  488. bottom: 160rpx;
  489. }
  490. .cube-toolbar-item1 {
  491. width: 350rpx;
  492. height: 68rpx;
  493. line-height: 68rpx;
  494. border-radius: 8rpx;
  495. margin: 0 5rpx;
  496. background: linear-gradient(to right, #72c172, #3bb197);
  497. font-size: 36rpx;
  498. color: #fff;
  499. text-align: center;
  500. }
  501. }
  502. </style>