scanning_blood_process.vue 14 KB

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