signIn_blood.vue 8.1 KB

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