scanning_blood_process.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415
  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-else-if="status == 400">
  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"> 血袋号:{{bloodDTO.bloodCode || '无'}} </view>
  20. <view class="text1 f30"> 产品码:{{bloodDTO.productCode || '无'}} </view>
  21. <view class="text1 f30"> 患者:{{bloodDTO.patientName}}<text v-if="bloodDTO.patientNo">({{bloodDTO.patientNo}})</text> </view>
  22. <view class="text1 f30"> 您扫描的血制品与工单的终点科室不一致,是否收录到此工单? </view>
  23. <view class="text1 f30 mt8">
  24. <checkbox-group @change="forceDeptInputBlur">
  25. <checkbox value="forceDept" :checked="forceDept" color="#49b856" />勾选后本次扫描过程中不再出现此提示
  26. </checkbox-group>
  27. </view>
  28. </view>
  29. </view>
  30. <view class="Scanning_top" v-else>
  31. <view class="Scanning_top_icon">
  32. <text class="cubeic-close icon_transport transport-shibai"></text>
  33. </view>
  34. <view class="Scanning_top_text">
  35. <view class="text1"> 操作失败 </view>
  36. <view class="text1 f30" v-if="queryObj.qrcode"> 扫描内容:{{queryObj.qrcode}} </view>
  37. </view>
  38. </view>
  39. <view class="Scanning_cont" v-if="status == 200">
  40. <view>{{bloodDTO.type ? bloodDTO.type.name : "无"}}<text v-if="bloodDTO.type">({{bloodDTO.bloodCode||'无'}}) {{ bloodDTO.volume?bloodDTO.volume+'ML':'无' }}</text></view>
  41. <view>采血日期:<text v-if="bloodDTO.printDate">{{bloodDTO.printDate | formatDate('yyyy-MM-dd hh:mm')}}</text><text v-else>无</text></view>
  42. <view>有效期至:<text v-if="bloodDTO.overDate">{{bloodDTO.overDate | formatDate('yyyy-MM-dd hh:mm')}}</text><text v-else>无</text></view>
  43. <view>
  44. 血型:{{ bloodDTO.aboType||'无' }}
  45. &emsp;&emsp;
  46. RH(D):<text>{{bloodDTO.rhType || '无'}}</text>
  47. </view>
  48. <view>患者:<text>{{ bloodDTO.patientName }}<text v-if="bloodDTO.hosNum">({{ bloodDTO.hosNum }})</text></text></view>
  49. <view>申请科室:{{ bloodDTO.applyDeptDTO?bloodDTO.applyDeptDTO.dept:'无' }}</view>
  50. </view>
  51. <view class="foot_btn_spe">
  52. <view class="btn2" style="width: 98%;" @click="input_common(queryObj.qrcode, 'scan', true)" v-if="status == 400"> 收录到此工单 </view>
  53. <view class="btn1" @click="Scanning_again()"> 继续扫描 </view>
  54. <view class="btn3" @click="hand_again()">手动录入</view>
  55. <view class="btn2" style="width: 98%;" @click="countAndCheck()"> 清点核对 </view>
  56. </view>
  57. <!-- 手动查询弹窗 -->
  58. <handViewBlood v-if="speModels.disjunctor" :title="speModels.title" :disjunctor="speModels.disjunctor"
  59. @ok="speOk" @cancel="speCancel">
  60. </handViewBlood>
  61. </view>
  62. </template>
  63. <script>
  64. import {
  65. get,
  66. post,
  67. SM,
  68. webHandle
  69. } from "../../http/http.js";
  70. export default {
  71. data() {
  72. return {
  73. forceDept: false,
  74. bloodDTO:{},
  75. status: 200,
  76. speNum: 0,
  77. // 手动查询弹窗model
  78. speModels: {
  79. disjunctor: false,
  80. },
  81. SMFlag: true,
  82. queryObj: {}, //路由传递过来的数据
  83. };
  84. },
  85. methods: {
  86. // 录入到工单
  87. input_common(ress1, type, isFlag = false){
  88. uni.showLoading({
  89. title: "加载中",
  90. mask: true,
  91. });
  92. let isInput = this.forceDept ? this.forceDept : (isFlag || undefined);
  93. post("/transflow/scanBind", {type: 'blood',orderId: this.queryObj.orderId, code: ress1, forceDept: isInput}).then((ress) => {
  94. uni.hideLoading();
  95. if (ress.state == 200 && ress.data.state != 400) {
  96. //扫描标本后会自动调用摄像头,继续扫描,直到status不是200
  97. setTimeout(()=>{
  98. if (type === 'scan') {
  99. this.Scanning_again(this.forceDept);
  100. }
  101. },500)
  102. //todo
  103. if(this.forceDept){
  104. uni.redirectTo({
  105. 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}&isInput=1`,
  106. });
  107. }else{
  108. uni.redirectTo({
  109. 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}`,
  110. });
  111. }
  112. }else if (ress.state == 200 && ress.data.state == 400 && ress.data.orderState != 5) {
  113. if(this.forceDept){
  114. uni.redirectTo({
  115. url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(ress.data.data))}&status=400&scanOrHand=${type}&qrcode=${ress1}&isInput=1`,
  116. });
  117. }else{
  118. uni.redirectTo({
  119. url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(ress.data.data))}&status=400&scanOrHand=${type}&qrcode=${ress1}`,
  120. });
  121. }
  122. } else {
  123. if(this.forceDept){
  124. uni.redirectTo({
  125. url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&status=500&scanOrHand=${type}&qrcode=${ress1}&isInput=1`,
  126. });
  127. }else{
  128. uni.redirectTo({
  129. url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&status=500&scanOrHand=${type}&qrcode=${ress1}`,
  130. });
  131. }
  132. }
  133. });
  134. },
  135. // 勾选后本次扫描过程中不再出现此提示
  136. forceDeptInputBlur(e) {
  137. this.forceDept = e.detail.value.length > 0;
  138. },
  139. // 手动查询-确认
  140. speOk(data) {
  141. console.log(data);
  142. if (!data.id) {
  143. //没有查询到
  144. uni.showModal({
  145. title: '提示',
  146. content: "没有查询到血袋!",
  147. showCancel: false,
  148. success: function(res) {
  149. if (res.confirm) {
  150. console.log('用户点击确定');
  151. } else if (res.cancel) {
  152. console.log('用户点击取消');
  153. }
  154. }
  155. });
  156. return;
  157. }
  158. this.speModels.disjunctor = false;
  159. this.hand_scanning_common(data.bloodCode, 'hand');
  160. },
  161. // 手动查询-取消
  162. speCancel() {
  163. this.speModels.disjunctor = false;
  164. },
  165. // 手动查询弹窗
  166. showHandViewSpecimen() {
  167. this.speModels = {
  168. title: '填写血袋号',
  169. disjunctor: true,
  170. }
  171. },
  172. // 手动录入
  173. hand_again() {
  174. this.showHandViewSpecimen();
  175. },
  176. // 手动输入和扫码公共方法
  177. hand_scanning_common(ress1, type, isFlag = false) {
  178. // ----------------
  179. uni.showLoading({
  180. title: "加载中",
  181. mask: true,
  182. });
  183. //检验二维码的有效性
  184. post("/dept/scanning", {
  185. content: ress1,
  186. }).then((result) => {
  187. this.SMFlag = true;
  188. if (result.state == 200 || result.state == 201) {
  189. let codes = result.code;
  190. if (codes) {
  191. // 判断是否有多个血袋号 start
  192. post("/transflow/scanCheckList", {
  193. type: 'blood',
  194. code: codes,
  195. }).then((res) => {
  196. if (res.state == 200) {
  197. res.data = res.data || [];
  198. if(res.data.length > 1){
  199. if(this.forceDept){
  200. uni.navigateTo({
  201. url: `/pages/bloodSelect/bloodSelect?qrcode=${codes}&navigateTo=scanning_blood_process&orderId=${this.queryObj.orderId}&scanOrHand=${type}&isInput=1`,
  202. });
  203. }else{
  204. uni.navigateTo({
  205. url: `/pages/bloodSelect/bloodSelect?qrcode=${codes}&navigateTo=scanning_blood_process&orderId=${this.queryObj.orderId}&scanOrHand=${type}`,
  206. });
  207. }
  208. }else{
  209. // 继续扫描
  210. this.input_common(ress1, type, isFlag);
  211. }
  212. } else {
  213. uni.hideLoading();
  214. uni.showToast({
  215. icon: "none",
  216. title: res.msg || "接口获取数据失败!",
  217. });
  218. }
  219. });
  220. // 判断是否有多个血袋号 end
  221. } else {
  222. uni.hideLoading();
  223. }
  224. } else {
  225. uni.hideLoading();
  226. uni.showToast({
  227. icon: "none",
  228. title: result.info || "接口获取数据失败!",
  229. });
  230. }
  231. });
  232. // ------------------------------
  233. },
  234. // 继续扫描
  235. Scanning_again(isFlag = false) {
  236. if (!this.SMFlag) {
  237. return;
  238. }
  239. this.SMFlag = false;
  240. SM().then((ress1) => {
  241. this.hand_scanning_common(ress1, 'scan', isFlag);
  242. }).catch(err => {
  243. this.SMFlag = true;
  244. });
  245. },
  246. // 清点核对
  247. countAndCheck() {
  248. if(this.forceDept){
  249. uni.navigateTo({
  250. url: `../check_blood/check_blood?orderId=${this.queryObj.orderId}&isInput=1`,
  251. });
  252. }else{
  253. uni.navigateTo({
  254. url: `../check_blood/check_blood?orderId=${this.queryObj.orderId}`,
  255. });
  256. }
  257. },
  258. },
  259. onShow() {
  260. this.SMFlag = true;
  261. },
  262. onLoad(options) {
  263. console.log(options, "result", this.forceDept);
  264. if(options.isInput == 1){
  265. this.forceDept = true;
  266. }else{
  267. this.forceDept = false;
  268. }
  269. if (options.status == 200 && options.scanOrHand === 'hand') {
  270. this.hand_again();
  271. }
  272. if (options.status == 200 && options.scanOrHand === 'scan' && options.isSelect == 1) {
  273. //扫描标本后会自动调用摄像头,继续扫描,直到status不是200
  274. // isSelect是多血袋选择后自动调用
  275. setTimeout(()=>{
  276. this.Scanning_again();
  277. },500)
  278. }
  279. this.queryObj = options;
  280. if (options.bloodDTO) {
  281. this.bloodDTO = JSON.parse(options.bloodDTO);
  282. }
  283. this.status = options.status;
  284. this.speNum = options.scanCount;
  285. // #ifdef APP-PLUS
  286. webHandle("no", "app");
  287. // #endif
  288. // #ifdef H5
  289. webHandle("no", "wx");
  290. // #endif
  291. },
  292. };
  293. </script>
  294. <style lang="less" scoped>
  295. /deep/ uni-checkbox:not([disabled]) .uni-checkbox-input:hover {
  296. border-color: #49b856 !important;
  297. }
  298. .Scanning_Result {
  299. padding: 0 20rpx;
  300. .Scanning_top {
  301. .Scanning_top_icon {
  302. width: 140rpx;
  303. height: 140rpx;
  304. margin: 0 auto;
  305. border-radius: 50%;
  306. line-height: 140rpx;
  307. .speNum{
  308. text-align: center;
  309. font-size: 140rpx;
  310. }
  311. .cubeic-ok {
  312. font-size: 140rpx;
  313. color: #35b34a;
  314. }
  315. .cubeic-close {
  316. font-size: 140rpx;
  317. color: #ff3b53;
  318. }
  319. }
  320. .Scanning_top_text {
  321. .text1 {
  322. font-size: 48rpx;
  323. text-align: center;
  324. }
  325. .success_tips {
  326. color: red;
  327. font-size: 30rpx;
  328. }
  329. }
  330. }
  331. .Scanning_cont {
  332. font-size: 32rpx;
  333. text-align: center;
  334. view {
  335. margin-bottom: 16rpx;
  336. }
  337. .Scanning_cont_center {
  338. text-align: center;
  339. }
  340. .text {
  341. margin-top: 24rpx;
  342. color: #35b34a;
  343. }
  344. .text1 {
  345. margin-top: 24rpx;
  346. color: #ff3b53;
  347. }
  348. }
  349. .foot_btn {
  350. line-height: 88rpx;
  351. height: 100rpx;
  352. margin-top: 40rpx;
  353. display: flex;
  354. justify-content: center;
  355. .btn1,
  356. .btn2,
  357. .btn3 {
  358. height: 88rpx;
  359. flex: 1;
  360. margin: 0 1%;
  361. background-image: linear-gradient(to right, #72c172, #3bb197);
  362. color: #fff;
  363. border-radius: 8rpx;
  364. font-size: 32rpx;
  365. margin-top: 16rpx;
  366. text-align: center;
  367. }
  368. }
  369. .foot_btn_spe {
  370. line-height: 88rpx;
  371. height: 100rpx;
  372. margin-top: 40rpx;
  373. text-align: center;
  374. display: flex;
  375. justify-content: space-between;
  376. flex-wrap: wrap;
  377. &::after {
  378. content: '';
  379. flex: 1;
  380. }
  381. view {
  382. height: 88rpx;
  383. width: 48%;
  384. margin: 0 1%;
  385. background-image: linear-gradient(to right, #72c172, #3bb197);
  386. color: #fff;
  387. border-radius: 8rpx;
  388. font-size: 32rpx;
  389. margin-top: 16rpx;
  390. }
  391. }
  392. }
  393. </style>