scanning_blood.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503
  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" @click="goBack()">
  105. 知道了
  106. </button>
  107. </view>
  108. </view>
  109. </template>
  110. <script>
  111. import {
  112. webHandle,
  113. post
  114. } from "../../http/http.js";
  115. export default {
  116. data() {
  117. return {
  118. receiveOrder: false,
  119. buildOrder: false,
  120. bloodDTO: {}, //血制品信息
  121. taskTypeConfig: {}, //血制品配置信息
  122. orderId:'',//工单id
  123. gotoFlag: true,
  124. };
  125. },
  126. methods: {
  127. goBack() {
  128. uni.navigateTo({
  129. url: "../receiptpage/receiptpage",
  130. });
  131. },
  132. // 接单并签到
  133. receiveOrderAndSign() {
  134. if (!this.gotoFlag) {
  135. return;
  136. }
  137. this.gotoFlag = false;
  138. uni.showModal({
  139. title: "提示",
  140. content: "请确认是否接单并签到?",
  141. success: (result) => {
  142. if (result.confirm) {
  143. console.log("用户点击确定");
  144. let postData = {
  145. type: 'blood',
  146. id: this.bloodDTO.id,
  147. orderId: this.orderId
  148. };
  149. uni.showLoading({
  150. title: "加载中",
  151. mask: true,
  152. });
  153. post("/transflow/createOrTakeOrder", postData).then((ress) => {
  154. uni.hideLoading();
  155. if (ress.state == 200) {
  156. uni.navigateTo({
  157. url: `../scanning_blood_process/scanning_blood_process?orderId=${ress.data.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(this.bloodDTO))}&scanCount=${ress.data.scanCount}&status=${ress.state}`,
  158. });
  159. } else {
  160. uni.showToast({
  161. icon: "none",
  162. title: "请求失败!",
  163. });
  164. }
  165. });
  166. } else if (result.cancel) {
  167. console.log("用户点击取消");
  168. }
  169. },
  170. });
  171. },
  172. // 建单并签到
  173. buildOrderAndSign() {
  174. if (!this.gotoFlag) {
  175. return;
  176. }
  177. this.gotoFlag = false;
  178. uni.showModal({
  179. title: "提示",
  180. content: "请确认是否建单并签到?",
  181. success: (result) => {
  182. if (result.confirm) {
  183. console.log("用户点击确定");
  184. let postData = {
  185. type: 'blood',
  186. id: this.bloodDTO.id,
  187. };
  188. uni.showLoading({
  189. title: "加载中",
  190. mask: true,
  191. });
  192. post("/transflow/createOrTakeOrder", postData).then((ress) => {
  193. uni.hideLoading();
  194. if (ress.state == 200) {
  195. uni.navigateTo({
  196. url: `../scanning_blood_process/scanning_blood_process?orderId=${ress.data.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(this.bloodDTO))}&scanCount=${ress.data.scanCount}&status=${ress.state}`,
  197. });
  198. } else {
  199. uni.showToast({
  200. icon: "none",
  201. title: "请求失败!",
  202. });
  203. }
  204. });
  205. } else if (result.cancel) {
  206. console.log("用户点击取消");
  207. }
  208. },
  209. });
  210. },
  211. //获取血制品信息及其关联的工单信息
  212. scanInfo(qrcode) {
  213. uni.showLoading({
  214. title: "加载中",
  215. mask: true,
  216. });
  217. post("/common/common/getDictionary", {"type":"list","key":"ttconfig_sign_type"}).then((res1) => {
  218. post("/transflow/scanInfo", {
  219. type: 'blood',
  220. code: qrcode,
  221. }).then((res) => {
  222. uni.hideLoading();
  223. if (res.state == 200) {
  224. this.bloodDTO = res.data.dto || {};
  225. this.orderId = res.data.orderId;
  226. console.log(this.orderId);
  227. this.taskTypeConfig = res.data.taskTypeConfig;
  228. let sign_ids = this.taskTypeConfig.signTypeIds?this.taskTypeConfig.signTypeIds.split(','):[];
  229. console.log(sign_ids);
  230. this.receiveOrder = false;
  231. this.buildOrder = false;
  232. sign_ids.forEach(v => {
  233. let obj = res1.find(vv => vv.id == v);
  234. console.log(obj);
  235. if(obj && obj.value == 1){
  236. this.receiveOrder = true;
  237. }
  238. if(obj && obj.value == 2){
  239. this.buildOrder = true;
  240. }
  241. })
  242. } else {
  243. uni.showToast({
  244. icon: "none",
  245. title: "请求失败",
  246. });
  247. }
  248. });
  249. });
  250. },
  251. },
  252. onShow() {
  253. this.gotoFlag = true;
  254. },
  255. onLoad(options) {
  256. console.log(options);
  257. let {
  258. qrcode
  259. } = options;
  260. if (qrcode) {
  261. this.scanInfo(qrcode);
  262. }
  263. // #ifdef APP-PLUS
  264. webHandle("no", "app");
  265. // #endif
  266. // #ifdef H5
  267. webHandle("no", "wx");
  268. // #endif
  269. },
  270. };
  271. </script>
  272. <style lang="less" scoped>
  273. .bloodDetails {
  274. background-color: rgb(249, 250, 251);
  275. .Scanning_top {
  276. .Scanning_top_icon {
  277. width: 140rpx;
  278. height: 140rpx;
  279. margin: 0 auto;
  280. border-radius: 50%;
  281. line-height: 140rpx;
  282. text-align: center;
  283. .cubeic-ok {
  284. font-size: 140rpx;
  285. color: #35b34a;
  286. }
  287. .cubeic-close {
  288. font-size: 140rpx;
  289. color: #ff3b53;
  290. }
  291. }
  292. .Scanning_top_text {
  293. .text1 {
  294. margin-top: 40rpx;
  295. font-size: 48rpx;
  296. text-align: center;
  297. }
  298. }
  299. }
  300. .page_item_wrap {
  301. position: relative;
  302. margin-top: 32rpx;
  303. .page_item {
  304. margin-top: 16rpx;
  305. margin-bottom: 124rpx;
  306. background: #fff;
  307. border-radius: 8rpx;
  308. margin: 0 20rpx;
  309. border: 2rpx solid #e5e9ed;
  310. position: relative;
  311. overflow: hidden;
  312. padding: 0 16rpx;
  313. .L {
  314. width: 40rpx;
  315. height: 40rpx;
  316. border-radius: 50%;
  317. background: #f9fafb;
  318. position: absolute;
  319. left: -20rpx;
  320. top: 68rpx;
  321. border: 2rpx solid #e5e9ed;
  322. }
  323. .R {
  324. width: 40rpx;
  325. height: 40rpx;
  326. border-radius: 50%;
  327. background: #f9fafb;
  328. position: absolute;
  329. float: right;
  330. right: -20rpx;
  331. top: 68rpx;
  332. border: 2rpx solid #e5e9ed;
  333. }
  334. .page_item_top {
  335. height: 88rpx;
  336. border-bottom: 2rpx dashed #e5e9ed;
  337. padding: 0 16rpx;
  338. .page_item_top-inner {
  339. display: flex;
  340. justify-content: space-between;
  341. align-items: center;
  342. height: 100%;
  343. .page_item_top_L {
  344. .L_text {
  345. font-size: 32rpx;
  346. font-weight: 700;
  347. }
  348. }
  349. .page_item_top_R {
  350. font-size: 32rpx;
  351. .L_iocn {
  352. color: rgb(7, 134, 60);
  353. font-size: 36rpx;
  354. font-weight: 700;
  355. }
  356. }
  357. }
  358. }
  359. .page_item_cont {
  360. min-height: 180rpx;
  361. padding: 0 16rpx;
  362. text-align: left;
  363. position: relative;
  364. .text_big {
  365. width: 50%;
  366. text-align: right;
  367. font-size: 32rpx;
  368. font-weight: 700;
  369. text {
  370. font-weight: 700;
  371. line-height: 1.5;
  372. }
  373. }
  374. .line {
  375. height: 20rpx;
  376. width: 2rpx;
  377. border-left: 2rpx solid #e5e9ed;
  378. position: absolute;
  379. top: 82rpx;
  380. left: 40rpx;
  381. }
  382. .page_item_cont_T {
  383. padding-top: 28rpx;
  384. font-size: 28rpx;
  385. .page_item_cont_title {
  386. height: 100%;
  387. font-size: 32rpx;
  388. display: flex;
  389. justify-content: space-between;
  390. }
  391. }
  392. .page_item_cont_B {
  393. padding-top: 28rpx;
  394. margin-bottom: 28rpx;
  395. .page_item_cont_title {
  396. font-size: 32rpx;
  397. display: flex;
  398. justify-content: space-between;
  399. align-items: center;
  400. }
  401. }
  402. .page_item_cont_C {
  403. margin-bottom: 28rpx;
  404. .page_item_cont_title_C {
  405. font-size: 32rpx;
  406. display: flex;
  407. justify-content: space-between;
  408. align-items: center;
  409. &>text{
  410. flex-shrink: 0;
  411. }
  412. }
  413. }
  414. #infos {
  415. display: none;
  416. }
  417. }
  418. }
  419. .L-l {
  420. width: 2rpx;
  421. height: 40rpx;
  422. background: #f9fafb;
  423. position: absolute;
  424. left: 20rpx;
  425. top: 72rpx;
  426. }
  427. .R-l {
  428. width: 2rpx;
  429. height: 40rpx;
  430. background: #f9fafb;
  431. position: absolute;
  432. right: 20rpx;
  433. top: 72rpx;
  434. }
  435. }
  436. .cube-toolbar-item-wrap {
  437. display: flex;
  438. position: fixed;
  439. left: 0;
  440. bottom: 20rpx;
  441. width: 100%;
  442. .cube-toolbar-item {
  443. flex: 1;
  444. margin: 0 18rpx;
  445. height: 68rpx;
  446. line-height: 68rpx;
  447. border-radius: 8rpx;
  448. background: linear-gradient(to right, #72c172, #3bb197);
  449. font-size: 36rpx;
  450. color: #fff;
  451. text-align: center;
  452. }
  453. }
  454. .btn-wrap {
  455. display: flex;
  456. justify-content: space-between;
  457. position: fixed;
  458. left: 20rpx;
  459. bottom: 160rpx;
  460. }
  461. .cube-toolbar-item1 {
  462. width: 350rpx;
  463. height: 68rpx;
  464. line-height: 68rpx;
  465. border-radius: 8rpx;
  466. margin: 0 5rpx;
  467. background: linear-gradient(to right, #72c172, #3bb197);
  468. font-size: 36rpx;
  469. color: #fff;
  470. text-align: center;
  471. }
  472. }
  473. </style>