signIn_blood.vue 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  1. <template>
  2. <view class="Scanning_Result">
  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="Scanning_cont">
  12. <view>您已到达{{queryObj.deptName}},您需要交接血制品数量为{{receiveNum}}</view>
  13. <view v-for="(item, key, index) in bloods" :key="index">
  14. {{key}}:<text class="link" @click="goToList(item)">{{item.length}}</text>
  15. </view>
  16. </view>
  17. <view class="foot_btn_spe">
  18. <view class="btn1" @click="Scanning_again()"> 继续扫描 </view>
  19. <view class="btn3" @click="hand_again()">手动录入</view>
  20. </view>
  21. <!-- 手动查询弹窗 -->
  22. <handViewBlood v-if="speModels.disjunctor" :title="speModels.title" :disjunctor="speModels.disjunctor"
  23. @ok="speOk" @cancel="speCancel">
  24. </handViewBlood>
  25. </view>
  26. </template>
  27. <script>
  28. import {
  29. get,
  30. post,
  31. SM,
  32. webHandle
  33. } from "../../http/http.js";
  34. export default {
  35. data() {
  36. return {
  37. receiveNum: 0,
  38. order: {},
  39. bloods: [],
  40. // 手动查询弹窗model
  41. speModels: {
  42. disjunctor: false,
  43. },
  44. SMFlag: true,
  45. queryObj: {}, //路由传递过来的数据
  46. };
  47. },
  48. methods: {
  49. // 跳转血制品列表
  50. goToList(bloods){
  51. uni.navigateTo({
  52. url: `../blood_list/blood_list?bloods=${encodeURIComponent(JSON.stringify(bloods))}`,
  53. });
  54. },
  55. //获取页面信息
  56. getInfo(){
  57. uni.showLoading({
  58. title: "加载中",
  59. mask: true,
  60. });
  61. post('/transflow/checkData', {
  62. "type": "blood",
  63. "orderId": this.queryObj.orderId
  64. }).then(res => {
  65. uni.hideLoading();
  66. if(res.state == 200){
  67. console.log(res);
  68. this.order = res.data.dto;
  69. this.bloods = {...res.data.complete, ...res.data.unComplete};
  70. this.receiveNum = 0;
  71. for (let key in this.bloods) {
  72. this.receiveNum += this.bloods[key].length;
  73. }
  74. }else{
  75. uni.showToast({
  76. icon: "none",
  77. title: "请求失败!",
  78. });
  79. }
  80. })
  81. },
  82. // 手动查询-确认
  83. speOk(data) {
  84. console.log(data);
  85. if (!data.id) {
  86. //没有查询到
  87. uni.showModal({
  88. title: '提示',
  89. content: "没有查询到标本!",
  90. showCancel: false,
  91. success: function(res) {
  92. if (res.confirm) {
  93. console.log('用户点击确定');
  94. } else if (res.cancel) {
  95. console.log('用户点击取消');
  96. }
  97. }
  98. });
  99. return;
  100. }
  101. this.speModels.disjunctor = false;
  102. this.hand_scanning_common(data.bloodCode, 'hand');
  103. },
  104. // 手动查询-取消
  105. speCancel() {
  106. this.speModels.disjunctor = false;
  107. },
  108. // 手动查询弹窗
  109. showHandViewSpecimen() {
  110. this.speModels = {
  111. title: '填写血袋号',
  112. disjunctor: true,
  113. }
  114. },
  115. // 手动录入
  116. hand_again() {
  117. this.showHandViewSpecimen();
  118. },
  119. // 手动输入和扫码公共方法
  120. hand_scanning_common(ress1, type) {
  121. // ----------------
  122. uni.showLoading({
  123. title: "加载中",
  124. mask: true,
  125. });
  126. //检验二维码的有效性
  127. post("/dept/scanning", {
  128. content: ress1,
  129. }).then((result) => {
  130. this.SMFlag = true;
  131. if (result.state == 200 || result.state == 201) {
  132. let codes = result.code;
  133. if (codes) {
  134. post("/transflow/scanBind", {type: 'blood',orderId: this.queryObj.orderId, code: ress1}).then((ress) => {
  135. uni.hideLoading();
  136. if (ress.state == 200) {
  137. //扫描标本后会自动调用摄像头,继续扫描,直到status不是200
  138. setTimeout(()=>{
  139. if (type === 'scan') {
  140. this.Scanning_again();
  141. }
  142. },500)
  143. //todo
  144. uni.redirectTo({
  145. url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(ress.data.dto))}&scanCount=${ress.data.scanCount}&status=${ress.state}&scanOrHand=${type}`,
  146. });
  147. } else {
  148. uni.redirectTo({
  149. url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&status=${ress.state}&scanOrHand=${type}&qrcode=${ress1}`,
  150. });
  151. }
  152. });
  153. } else {
  154. uni.hideLoading();
  155. }
  156. } else {
  157. uni.hideLoading();
  158. uni.showToast({
  159. icon: "none",
  160. title: "请求失败!",
  161. });
  162. }
  163. });
  164. // ------------------------------
  165. },
  166. // 继续扫描
  167. Scanning_again() {
  168. if (!this.SMFlag) {
  169. return;
  170. }
  171. this.SMFlag = false;
  172. SM().then((ress1) => {
  173. this.hand_scanning_common(ress1, 'scan');
  174. }).catch(err => {
  175. this.SMFlag = true;
  176. });
  177. },
  178. },
  179. onShow() {
  180. this.SMFlag = true;
  181. },
  182. onLoad(options) {
  183. console.log(options, "result");
  184. this.queryObj = options;
  185. this.getInfo();
  186. // #ifdef APP-PLUS
  187. webHandle("no", "app");
  188. // #endif
  189. // #ifdef H5
  190. webHandle("no", "wx");
  191. // #endif
  192. },
  193. };
  194. </script>
  195. <style lang="less">
  196. .Scanning_Result {
  197. padding: 0 20rpx;
  198. .Scanning_top {
  199. .Scanning_top_icon {
  200. width: 140rpx;
  201. height: 140rpx;
  202. margin: 0 auto;
  203. border-radius: 50%;
  204. line-height: 140rpx;
  205. .speNum{
  206. text-align: center;
  207. font-size: 140rpx;
  208. }
  209. .cubeic-ok {
  210. font-size: 140rpx;
  211. color: #35b34a;
  212. }
  213. .cubeic-close {
  214. font-size: 140rpx;
  215. color: #ff3b53;
  216. }
  217. }
  218. .Scanning_top_text {
  219. .text1 {
  220. font-size: 48rpx;
  221. text-align: center;
  222. }
  223. .success_tips {
  224. color: red;
  225. font-size: 30rpx;
  226. }
  227. }
  228. }
  229. .Scanning_cont {
  230. font-size: 32rpx;
  231. text-align: center;
  232. .link{
  233. text-decoration: underline;
  234. }
  235. view {
  236. margin-bottom: 16rpx;
  237. }
  238. .Scanning_cont_center {
  239. text-align: center;
  240. }
  241. .text {
  242. margin-top: 24rpx;
  243. color: #35b34a;
  244. }
  245. .text1 {
  246. margin-top: 24rpx;
  247. color: #ff3b53;
  248. }
  249. }
  250. .foot_btn {
  251. line-height: 88rpx;
  252. height: 100rpx;
  253. margin-top: 40rpx;
  254. display: flex;
  255. justify-content: center;
  256. .btn1,
  257. .btn2,
  258. .btn3 {
  259. height: 88rpx;
  260. flex: 1;
  261. margin: 0 1%;
  262. background-image: linear-gradient(to right, #72c172, #3bb197);
  263. color: #fff;
  264. border-radius: 8rpx;
  265. font-size: 32rpx;
  266. margin-top: 16rpx;
  267. text-align: center;
  268. }
  269. }
  270. .foot_btn_spe {
  271. line-height: 88rpx;
  272. height: 100rpx;
  273. margin-top: 40rpx;
  274. text-align: center;
  275. display: flex;
  276. justify-content: space-between;
  277. flex-wrap: wrap;
  278. &::after {
  279. content: '';
  280. flex: 1;
  281. }
  282. view {
  283. height: 88rpx;
  284. width: 48%;
  285. margin: 0 1%;
  286. background-image: linear-gradient(to right, #72c172, #3bb197);
  287. color: #fff;
  288. border-radius: 8rpx;
  289. font-size: 32rpx;
  290. margin-top: 16rpx;
  291. }
  292. }
  293. }
  294. </style>