scanning_blood.vue 14 KB

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