scanning_blood_process.vue 8.4 KB

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