signIn_blood.vue 9.5 KB

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