Ver código fonte

标本间开发

maotao 5 meses atrás
pai
commit
e9df3c7d20

+ 73 - 0
components/scanner/scanner.vue

@@ -0,0 +1,73 @@
1
+<template>  
2
+    <div class="content"></div>  
3
+</template>  
4
+ 
5
+<script>  
6
+var main,receiver,filter;    
7
+var _codeQueryTag = false;    
8
+export default {  
9
+    data() {  
10
+        return {  
11
+            scanCode: ''  
12
+        }  
13
+    },  
14
+    created () { 
15
+			// #ifdef APP-PLUS
16
+			this.initScan();
17
+			this.startScan(); 
18
+			// #endif
19
+    },    
20
+    onHide(){
21
+			// #ifdef APP-PLUS
22
+			this.stopScan();
23
+			// #endif
24
+    },  
25
+    destroyed(){    
26
+			/*页面退出时一定要卸载监听,否则下次进来时会重复,造成扫一次出2个以上的结果*/  
27
+			// #ifdef APP-PLUS
28
+			this.stopScan();
29
+			// #endif
30
+    },    
31
+    methods: {  
32
+        initScan() {
33
+        		let _this = this;  
34
+        		main = plus.android.runtimeMainActivity();//获取activity  
35
+        		var IntentFilter = plus.android.importClass('android.content.IntentFilter');   
36
+        		filter = new IntentFilter();    
37
+        		filter.addAction("com.android.server.scannerservice.broadcast"); // 换你的广播动作  
38
+        		receiver = plus.android.implements('io.dcloud.feature.internal.reflect.BroadcastReceiver',{  
39
+        		onReceive : function(context, intent) {
40
+        				plus.android.importClass(intent);     
41
+        				let code = intent.getStringExtra("scannerdata");// 换你的广播标签  
42
+        				_this.queryCode(code);    
43
+        		}});    
44
+        },    
45
+        startScan(){    
46
+        		main.registerReceiver(receiver,filter);  
47
+        },    
48
+        stopScan(){  
49
+        		main.unregisterReceiver(receiver);    
50
+        },    
51
+        queryCode(code){  
52
+        		//防重复  
53
+        		if(_codeQueryTag)return false;    
54
+        		_codeQueryTag = true;    
55
+        		setTimeout(function(){    
56
+        				_codeQueryTag = false;    
57
+        		},150);  
58
+        		var id = code  
59
+        		uni.$emit('scan',id)  
60
+        }
61
+    }  
62
+}  
63
+</script>  
64
+ 
65
+<style>  
66
+  /*  page {  
67
+        background-color: #efeff4;  
68
+    }  
69
+    .content {  
70
+        text-align: center;  
71
+    }  */
72
+</style>
73
+ 

+ 43 - 4
manifest.json

@@ -1,5 +1,5 @@
1 1
 {
2
-    "name" : "",
2
+    "name" : "病理全流程",
3 3
     "appid" : "__UNI__9F2011E",
4 4
     "description" : "",
5 5
     "versionName" : "1.0.0",
@@ -18,17 +18,21 @@
18 18
         },
19 19
         /* 模块配置 */
20 20
         "modules" : {
21
-            "Push" : {}
21
+            "Push" : {},
22
+            "Barcode" : {},
23
+            "Camera" : {}
22 24
         },
23 25
         /* 应用发布信息 */
24 26
         "distribute" : {
25 27
             /* android打包配置 */
26 28
             "android" : {
27 29
                 "permissions" : [
30
+                    "<uses-feature android:name=\"android.hardware.camera\"/>",
31
+                    "<uses-feature android:name=\"android.hardware.camera.autofocus\"/>",
28 32
                     "<uses-permission android:name=\"android.permission.CALL_PHONE\"/>",
29 33
                     "<uses-permission android:name=\"android.permission.CAMERA\"/>"
30 34
                 ],
31
-                "autoSdkPermissions" : false,
35
+                "autoSdkPermissions" : true,
32 36
                 "abiFilters" : [ "armeabi-v7a", "arm64-v8a" ]
33 37
             },
34 38
             /* ios打包配置 */
@@ -42,6 +46,38 @@
42 46
             },
43 47
             "splashscreen" : {
44 48
                 "androidStyle" : "common"
49
+            },
50
+            "icons" : {
51
+                "android" : {
52
+                    "hdpi" : "unpackage/res/icons/72x72.png",
53
+                    "xhdpi" : "unpackage/res/icons/96x96.png",
54
+                    "xxhdpi" : "unpackage/res/icons/144x144.png",
55
+                    "xxxhdpi" : "unpackage/res/icons/192x192.png"
56
+                },
57
+                "ios" : {
58
+                    "appstore" : "unpackage/res/icons/1024x1024.png",
59
+                    "ipad" : {
60
+                        "app" : "unpackage/res/icons/76x76.png",
61
+                        "app@2x" : "unpackage/res/icons/152x152.png",
62
+                        "notification" : "unpackage/res/icons/20x20.png",
63
+                        "notification@2x" : "unpackage/res/icons/40x40.png",
64
+                        "proapp@2x" : "unpackage/res/icons/167x167.png",
65
+                        "settings" : "unpackage/res/icons/29x29.png",
66
+                        "settings@2x" : "unpackage/res/icons/58x58.png",
67
+                        "spotlight" : "unpackage/res/icons/40x40.png",
68
+                        "spotlight@2x" : "unpackage/res/icons/80x80.png"
69
+                    },
70
+                    "iphone" : {
71
+                        "app@2x" : "unpackage/res/icons/120x120.png",
72
+                        "app@3x" : "unpackage/res/icons/180x180.png",
73
+                        "notification@2x" : "unpackage/res/icons/40x40.png",
74
+                        "notification@3x" : "unpackage/res/icons/60x60.png",
75
+                        "settings@2x" : "unpackage/res/icons/58x58.png",
76
+                        "settings@3x" : "unpackage/res/icons/87x87.png",
77
+                        "spotlight@2x" : "unpackage/res/icons/80x80.png",
78
+                        "spotlight@3x" : "unpackage/res/icons/120x120.png"
79
+                    }
80
+                }
45 81
             }
46 82
         }
47 83
     },
@@ -86,6 +122,7 @@
86 122
             "proxy" : {
87 123
                 "/service" : {
88 124
                     "target" : "http://192.168.3.108", //请求的目标域名
125
+
89 126
                     // "target" : "http://192.168.4.163", //宋程玉本地
90 127
                     "changeOrigin" : true, //是否跨域
91 128
                     "secure" : false
@@ -93,5 +130,7 @@
93 130
             },
94 131
             "port" : 8081 //当前项目的端口号
95 132
         }
96
-    }
133
+    },
134
+    "locale" : "zh-Hans",
135
+    "fallbackLocale" : "zh-Hans"
97 136
 }

+ 25 - 2
pages.json

@@ -632,8 +632,31 @@
632 632
           "titleNView": false
633 633
         }
634 634
       }
635
-    }
636
-    
635
+    },
636
+		{
637
+		  "path": "pages/specimenPort/specimenPort", //标本间列表
638
+		  "style": {
639
+		    "h5": {
640
+		      "titleNView": false
641
+		    }
642
+		  }
643
+		},
644
+    {
645
+      "path": "pages/specimenPort/detail", //标本间详情
646
+      "style": {
647
+        "h5": {
648
+          "titleNView": false
649
+        }
650
+      }
651
+    },
652
+		{
653
+		  "path": "pages/specimenPort/scan", //标本间扫描页
654
+		  "style": {
655
+		    "h5": {
656
+		      "titleNView": false
657
+		    }
658
+		  }
659
+		}
637 660
   ],
638 661
   "globalStyle": {
639 662
     "navigationBarTextStyle": "black",

+ 38 - 6
pages/homePage/homePage.vue

@@ -734,9 +734,25 @@
734 734
               if (!res.user.user.online) {
735 735
                 this.online = false;
736 736
               } else {
737
-                this.online = true;
738
-                // 建立websocket连接
739
-                webHandle("receiptpage", "app", this.ip);
737
+								this.online = true;
738
+								let menu = res.user.menu.filter(i=>i.parentid=='278')
739
+								if(menu){
740
+									let isSpecimen = menu.filter(i=>i.title=='标本间')
741
+									if(isSpecimen){
742
+										// 建立websocket连接
743
+										webHandle("specimenPort", "app");
744
+										uni.setStorageSync("isSpecimen", '1');
745
+									}else{
746
+										// 建立websocket连接
747
+										webHandle("receiptpage", "wx");
748
+										uni.setStorageSync("isSpecimen", '0');
749
+									}
750
+									console.log(88888,menu)
751
+								}else{
752
+									// 建立websocket连接
753
+									webHandle("receiptpage", "wx");
754
+									uni.setStorageSync("isSpecimen", '0');
755
+								}
740 756
               }
741 757
             } else {
742 758
               webHandle("pharmacy", "app", this.ip);
@@ -807,9 +823,25 @@
807 823
             if (!user.user.online) {
808 824
               this.online = false;
809 825
             } else {
810
-              this.online = true;
811
-              // 建立websocket连接
812
-              webHandle("receiptpage", "wx");
826
+							this.online = true;
827
+							let menu = user.menu.filter(i=>i.parentid=='278')
828
+							if(menu){
829
+								let isSpecimen = menu.filter(i=>i.title=='标本间')
830
+								if(isSpecimen){
831
+									// 建立websocket连接
832
+									webHandle("specimenPort", "app");
833
+									uni.setStorageSync("isSpecimen", '1');
834
+								}else{
835
+									// 建立websocket连接
836
+									webHandle("receiptpage", "wx");
837
+									uni.setStorageSync("isSpecimen", '0');
838
+								}
839
+								console.log(88888,menu)
840
+							}else{
841
+								// 建立websocket连接
842
+								webHandle("receiptpage", "wx");
843
+								uni.setStorageSync("isSpecimen", '0');
844
+							}
813 845
             }
814 846
           } else { //只有药房橘色
815 847
             webHandle("pharmacy", "wx");

+ 277 - 8
pages/receiptpage/receiptpage.vue

@@ -2,7 +2,7 @@
2 2
   <view class="Receiptpage">
3 3
     <view class="page_tab">
4 4
       <view class="page_tab_bar" :class="{ active: item.label === selectedLabelSlots }" v-for="item in tabs"
5
-        :key="item.value" @click="clickHandler(item.label)">
5
+        :key="item.value" @click.prevent="clickHandler(item.label)">
6 6
         {{ item.label }}
7 7
         <text class="tab_num">( {{ item.num }} )</text>
8 8
         <view class="more" v-if="item.label === '执行中'" @click.stop="execFilter"></view>
@@ -320,14 +320,14 @@
320 320
     <view class="bigScreenWrap">
321 321
       <bigScreen ref="bigscreen"></bigScreen>
322 322
       <view class="more" v-if="arrayBigScreen.length"></view>
323
-      <picker class="more_picker" @click.stop @change="execFilterBigScreen($event)" :value="indexBigScreen"
323
+      <picker class="more_picker" @cancel="cancelPicker" @click.stop @change="execFilterBigScreen($event)" :value="indexBigScreen"
324 324
         :range="arrayBigScreen" range-key="name" v-if="arrayBigScreen.length">
325 325
         <view class="uni-input">{{ arrayBigScreen[indexBigScreen].name }}</view>
326 326
       </picker>
327 327
     </view>
328
-    <!-- 悬浮按钮 -->
329
-    <uni-fab :pattern="pattern" :content="content" :direction="direction" @trigger="trigger"></uni-fab>
330
-    <!-- 弹窗 -->
328
+		<!-- 悬浮按钮 -->
329
+    <uni-fab :pattern="pattern" :content="content" :direction="direction" @fabClick="fabClick" @trigger="trigger"></uni-fab>
330
+		<!-- 弹窗 -->
331 331
     <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
332 332
       @ok="ok" @cancel="cancel" @know="know" :operate="models.operate"></showModel>
333 333
     <!-- 我的二维码-弹窗 -->
@@ -412,11 +412,13 @@
412 412
     
413 413
     <!-- 示闲弹窗 -->
414 414
     <showModel :title="models4.title" icon="models4.icon" :disjunctor="models4.disjunctor" :content="models4.content" @know="know4" @ok="ok4" @cancel="cancel4" :operate="models4.operate"></showModel>
415
-  </view>
415
+		<scanner></scanner>
416
+	</view>
416 417
 </template>
417 418
 <script>
418 419
   import selectAccount from "../../components/selectAccount/selectAccount.vue";
419 420
   import smallScreen from "../../components/smallScreen/smallScreen.vue";
421
+	import scanner from "../../components/scanner/scanner.vue";
420 422
   import showModel from "../../components/showModel/showModel.vue";
421 423
   import bigScreen from "../../components/bigScreen/bigScreen.vue";
422 424
   // https://ext.dcloud.net.cn/plugin?id=144
@@ -549,7 +551,7 @@
549 551
         // 悬浮按钮展开菜单内容配置项
550 552
         content: [{
551 553
           text: "我的任务",
552
-        }, ],
554
+        },],
553 555
         // 当前选中tab页名称
554 556
         selectedLabelSlots: "待接单",
555 557
         // tab页信息
@@ -614,9 +616,254 @@
614 616
       uniFab,
615 617
       showModel,
616 618
       bigScreen,
619
+			scanner,
617 620
       selectAccount,
618 621
     },
619 622
     methods: {
623
+			padChange(scannerCode){
624
+				scannerCode = scannerCode.replace('\n','')
625
+				// if(e.detail.value.length<5){
626
+				// 	return
627
+				// }
628
+				if (!this.SMFlag) {
629
+				  return;
630
+				}
631
+				let qrcodePrefix = '';
632
+				this.SMFlag = false;
633
+				// SM().then((content) => {
634
+				  uni.showLoading({
635
+				    title: "加载中",
636
+				    mask: true,
637
+				  });
638
+				  //检验二维码的有效性(扫码前必须验证)
639
+				  post("/dept/scanning", {
640
+						content:scannerCode
641
+					})
642
+				    .then((result) => {
643
+				      this.currentCode = result.code;
644
+				      this.SMFlag = true;
645
+				      // 200检测通过,201没有有效期也通过。
646
+				      if (result.state == 200 || result.state == 201) {
647
+				        let data = {
648
+				          code: result.code, //二维码
649
+				        };
650
+				        //微信—大扫描(科室码,患者码,标本码,快捷建单码,药包码)
651
+				        let code = result.code.includes(qrcodePrefix) ? result.code : qrcodePrefix + result.code;
652
+				        post("/workerOrder/scanCode", { code, hosId: this.hosId })
653
+				          .then((res) => {
654
+				            uni.hideLoading();
655
+				            if (res.status == 200) {
656
+				              // 扫描标本码
657
+				              if (res.type == "specimen") {
658
+				                let infoDATA = {
659
+				                  stype: res.data.stype,
660
+				                  scode: res.data.scode,
661
+				                  patientName: res.data.patientName,
662
+				                  sickRoom: res.data.sickRoom ?
663
+				                    res.data.sickRoom.dept : "-",
664
+				                  checkDept: res.data.checkDept ?
665
+				                    res.data.checkDept.dept : "-",
666
+				                  bedNum: res.data.bedNum,
667
+				                };
668
+				                uni.navigateTo({
669
+				                  url: `../scanning_B/scanning_B?res=${encodeURIComponent(
670
+				                  JSON.stringify(res)
671
+				                )}&infoDATA=${encodeURIComponent(
672
+				                  JSON.stringify(infoDATA)
673
+				                )}`,
674
+				                });
675
+				              } else if (res.type == "patient") {
676
+				                //如果是患者腕带码
677
+				                // code: data.code //二维码
678
+				                res.workOrder = res.workOrder ? res.workOrder : []; //liao
679
+				                uni.navigateTo({
680
+				                  url: `../scanning_ins/scanning_ins?code=${
681
+				                  data.code
682
+				                }&infoDATA=${encodeURIComponent(
683
+				                  JSON.stringify(res.data)
684
+				                )}&workData=${encodeURIComponent(
685
+				                  JSON.stringify(res.workOrder)
686
+				                )}&patientOrders=${encodeURIComponent(
687
+				                  JSON.stringify(res.patientOrders)
688
+				                )}`,
689
+				                });
690
+				              } else if (res.type == "quickOrder") {
691
+				                //快捷建单
692
+				                if(res.data.isDigitalHandover == 1){
693
+				                  uni.navigateTo({
694
+				                    url: `../specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
695
+				                    JSON.stringify(res.data)
696
+				                  )}`,
697
+				                  });
698
+				                }else{
699
+				                  uni.navigateTo({
700
+				                    url: `../shortcutbuildOrders/shortcutbuildOrders?infoDATA=${encodeURIComponent(
701
+				                    JSON.stringify(res.data)
702
+				                  )}`,
703
+				                  });
704
+				                }
705
+				              } else if (res.type == "dept") {
706
+				                // 扫描科室码
707
+				                // code: data.code //二维码
708
+				                let infoDATA = res.data;
709
+				                console.log(infoDATA)
710
+				                // 判断是否是标本配送,并且仅仅只有这一种业务类型,默认全选,并跳转到下一步;
711
+				                // 判断是否是标本轮巡 ,并且仅仅只有这一种业务类型,并且只有一个工单,默认选中,并跳转到下一步;
712
+				                if(Object.keys(infoDATA).length === 1 && (infoDATA.specimen || (infoDATA.specimenPlan && infoDATA.specimenPlan.length === 1))){
713
+				                  this.infoDATA = infoDATA;
714
+				                  this.workData = infoDATA.specimen || infoDATA.specimenPlan;
715
+				                  this.tabType = infoDATA.specimen ? 'specimen' : 'specimenPlan';
716
+				                  this.code = data.code;
717
+				                  this.selectArr = [];
718
+				                  for (var i = 0; i < this.workData.length; i++) {
719
+				                    this.selectArr.push(this.workData[i].id);
720
+				                  }
721
+				                  this.userId.ids = this.selectArr;
722
+				                  this.orderDeptHandler(true);
723
+				                }else if(res.deptHandoverType && res.deptHandoverType.value == 'clinicalWaste'){
724
+				                  // 医废
725
+				                  uni.navigateTo({
726
+				                    url: `/pages/medicalWaste/medicalWasteSignIn/medicalWasteSignIn?code=${data.code}&deptName=${res.deptName}&deptId=${res.deptId}`,
727
+				                  });
728
+				                }else{
729
+				                  uni.navigateTo({
730
+				                    url: `../scanning_all/scanning_all?infoDATA=${encodeURIComponent(
731
+				                    JSON.stringify(infoDATA)
732
+				                  )}&code=${data.code}&deptName=${res.deptName}&deptId=${res.deptId}`,
733
+				                  });
734
+				                }
735
+				              } else if (res.type == 'drugsBag') {
736
+				                //扫药包码
737
+				                uni.navigateTo({
738
+				                  url: `/pages/scanning_drug/scanning_drug?drugsBagId=${res.drugsBagId}&drugsBagBatchNo=${res.drugsBagBatchNo}`,
739
+				                });
740
+				              } else if (res.type == 'nucleicAcid') {
741
+				                //扫核酸码
742
+				                uni.navigateTo({
743
+				                  url: `/pages/scanning_nucleicAcid/scanning_nucleicAcid?qrcode=${data.code}`,
744
+				                });
745
+				              } else if (res.type == 'blood') {
746
+				                //扫血制品
747
+				                // 判断size,多个则进入新页面选择
748
+				                if(res.size > 1){
749
+				                  uni.navigateTo({
750
+				                    url: `/pages/bloodSelect/bloodSelect?qrcode=${data.code}&navigateTo=scanning_blood`,
751
+				                  });
752
+				                } else {
753
+				                  uni.navigateTo({
754
+				                    url: `/pages/scanning_blood/scanning_blood?qrcode=${data.code}`,
755
+				                  });
756
+				                }
757
+				              } else if (res.type == 'receiveOrder') {
758
+				                //扫快捷接单
759
+				                uni.showModal({
760
+				                  title: "提示",
761
+				                  content: `您本次接单包括${res.names.join('、')},一共含有${res.data.length}个工单,是否确认接单?`,
762
+				                  success: function(result) {
763
+				                    if (result.confirm) {
764
+				                      uni.showLoading({
765
+				                        title: "加载中",
766
+				                        mask: true,
767
+				                      });
768
+				                      post("/workerOrder/receiveOrders", {ids: res.data.toString()}).then((result) => {
769
+				                        uni.hideLoading();
770
+				                        if (result.status == 200) {
771
+				                          uni.showModal({
772
+				                            title: "提示",
773
+				                            content: `本次接单包括${res.names.join('、')},${res.data.length}个工单已接单完成`,
774
+				                            showCancel: false,
775
+				                            success: function(res) {
776
+				                              if (res.confirm) {
777
+				                                console.log("用户点击确定");
778
+				                                uni.redirectTo({
779
+				                                  url: "../receiptpage/receiptpage",
780
+				                                });
781
+				                              } else if (res.cancel) {
782
+				                                console.log("用户点击取消");
783
+				                              }
784
+				                            },
785
+				                          });
786
+				                        } else {
787
+				                          uni.showToast({
788
+				                            icon: "none",
789
+				                            title: result.msg || "接口获取数据失败!",
790
+				                          });
791
+				                        }
792
+				                      });
793
+				                    } else if (result.cancel) {
794
+				                      console.log("用户点击取消");
795
+				                    }
796
+				                  },
797
+				                });
798
+				              } else if (res.type == 'bloodTake') {
799
+				                if(res.data){
800
+				                  //新血制品-扫科室
801
+				                  uni.navigateTo({
802
+				                    url: `/pages/newBlood/startOrderSignBlood/startOrderSignBlood?deptId=${res.deptId}&deptName=${res.deptName}&taskTypeId=${res.taskTypeId}`,
803
+				                  });
804
+				                }else{
805
+				                  // 走type是dept的流程
806
+				                  // 扫描科室码
807
+				                  // code: data.code //二维码
808
+				                  let infoDATA = res.data;
809
+				                  console.log(infoDATA)
810
+				                  // 判断是否是标本配送,并且仅仅只有这一种业务类型,默认全选,并跳转到下一步;
811
+				                  // 判断是否是标本轮巡 ,并且仅仅只有这一种业务类型,并且只有一个工单,默认选中,并跳转到下一步;
812
+				                  if(Object.keys(infoDATA).length === 1 && (infoDATA.specimen || (infoDATA.specimenPlan && infoDATA.specimenPlan.length === 1))){
813
+				                    this.infoDATA = infoDATA;
814
+				                    this.workData = infoDATA.specimen || infoDATA.specimenPlan;
815
+				                    this.tabType = infoDATA.specimen ? 'specimen' : 'specimenPlan';
816
+				                    this.code = data.code;
817
+				                    this.selectArr = [];
818
+				                    for (var i = 0; i < this.workData.length; i++) {
819
+				                      this.selectArr.push(this.workData[i].id);
820
+				                    }
821
+				                    this.userId.ids = this.selectArr;
822
+				                    this.orderDeptHandler(true);
823
+				                  }else{
824
+				                    uni.navigateTo({
825
+				                      url: `../scanning_all/scanning_all?infoDATA=${encodeURIComponent(
826
+				                      JSON.stringify(infoDATA)
827
+				                    )}&code=${data.code}&deptName=${res.deptName}&deptId=${res.deptId}`,
828
+				                    });
829
+				                  }
830
+				                }
831
+				              } else if(res.type == 'clinicalWaste'){
832
+				                // 医废
833
+				                if(res.wasteDetails){
834
+				                  uni.navigateTo({
835
+				                    url: `/pages/medicalWaste/medicalWasteDetail/medicalWasteDetail?qrcode=${res.code}`,
836
+				                  });
837
+				                }else{
838
+				                  uni.navigateTo({
839
+				                    url: `/pages/medicalWaste/medicalWasteBind/medicalWasteBind?qrcode=${res.code}`,
840
+				                  });
841
+				                }
842
+				              }
843
+				            } else {
844
+				              if(res.bigScanSpecialMsg){
845
+				                uni.navigateTo({
846
+				                  url: `../scanning_big_Result/scanning_big_Result?msg=${res.msg || ''}&qrcode=${this.currentCode}&bigScanSpecialMsg=${encodeURIComponent(JSON.stringify(res.bigScanSpecialMsg))}`,
847
+				                });
848
+				              }else{
849
+				                uni.navigateTo({
850
+				                  url: `../scanning_Result/scanning_Result?status=${res.status}&msg=${res.msg}&qrcode=${this.currentCode}`,
851
+				                });
852
+				              }
853
+				            }
854
+				          });
855
+				      } else {
856
+				        uni.hideLoading();
857
+				        uni.showToast({
858
+				          icon: "none",
859
+				          title: result.info || "接口获取数据失败!",
860
+				        });
861
+				      }
862
+				    })
863
+				// }).catch(err => {
864
+				//   this.SMFlag = true;
865
+				// });
866
+			},
620 867
 			// 搜索科室
621 868
 			searchAdm(){
622 869
 				let data = {
@@ -1165,6 +1412,8 @@
1165 1412
 				this.taskTypeId = '' //任务类型
1166 1413
 				uni.setStorageSync("admStore",{})
1167 1414
       },
1415
+			cancelPicker(){
1416
+			},
1168 1417
       // 大扫描筛选
1169 1418
       execFilterBigScreen({
1170 1419
         detail: {
@@ -1186,7 +1435,7 @@
1186 1435
           (item) => item.rolecode === "pharmacist"
1187 1436
         );
1188 1437
         //判断当前登陆人具体角色 end
1189
-        console.log(menu);
1438
+        // console.log(menu);
1190 1439
         this.arrayBigScreen = [];
1191 1440
         menu.forEach((item) => {
1192 1441
           if (item.link === "wxInspect") {
@@ -1640,6 +1889,8 @@
1640 1889
           });
1641 1890
         }
1642 1891
       },
1892
+			fabClick(){
1893
+			},
1643 1894
       // 悬浮按钮点击事件
1644 1895
       trigger(e) {
1645 1896
         if (e.item.text === "我的任务") {
@@ -2504,6 +2755,14 @@
2504 2755
       // #endif
2505 2756
     },
2506 2757
     onShow() {
2758
+			let that = this
2759
+			// #ifdef APP-PLUS
2760
+			uni.$off('scan') // 每次进来先 移除全局自定义事件监听器
2761
+			uni.$on('scan', function(data) {
2762
+				console.log(888,data)
2763
+				that.padChange(data)
2764
+			})
2765
+			// #endif
2507 2766
       this.SMFlag = true;
2508 2767
       // #ifdef H5
2509 2768
       document.body.addEventListener("touchmove", this.stop, {
@@ -2522,6 +2781,16 @@
2522 2781
   };
2523 2782
 </script>
2524 2783
 <style lang="less">
2784
+	.hideInput{
2785
+		height: 40px;
2786
+		position: absolute;
2787
+		width: 100px;
2788
+		top: 100px;
2789
+		left: 100px;
2790
+		z-index: 99999;
2791
+		border: 1px solid;
2792
+		padding-left: 10px;
2793
+	}
2525 2794
 	/deep/ .uni-drawer__content{
2526 2795
 		width: 600rpx !important;
2527 2796
 	}

+ 8 - 0
pages/specimenPort/detail.vue

@@ -0,0 +1,8 @@
1
+<template>
2
+</template>
3
+
4
+<script>
5
+</script>
6
+
7
+<style>
8
+</style>

+ 8 - 0
pages/specimenPort/scan.vue

@@ -0,0 +1,8 @@
1
+<template>
2
+</template>
3
+
4
+<script>
5
+</script>
6
+
7
+<style>
8
+</style>

+ 68 - 0
pages/specimenPort/specimenPort.vue

@@ -0,0 +1,68 @@
1
+<template>
2
+	<view class="conte">
3
+		<view class="header">
4
+			标本间
5
+	<!-- 		<view class="filter" @click="filterClick">
6
+			  <text class="newicon newicon-shaixuan"></text>
7
+			</view> -->
8
+		</view>
9
+		<view class="list df">
10
+			<view class="df-list list-border">
11
+				<view>BL110110</view>
12
+				<view>未打印</view>
13
+			</view>
14
+			<view class="df-list">
15
+				<view>申请科室:神经内科</view>
16
+				<view>部位:口腔</view>
17
+			</view>
18
+			<view class="df-list">
19
+				<view>患者:神经内科</view>
20
+				<view>住院号:口腔</view>
21
+			</view>
22
+			<view class="df-list">
23
+				<view>离:神经内科</view>
24
+				<view>固:口腔</view>
25
+			</view>
26
+		</view>
27
+	</view>
28
+</template>
29
+
30
+<script>
31
+</script>
32
+
33
+<style lang="less" scoped>
34
+	.conte{
35
+		.header{
36
+			height: 80rpx;
37
+			width: 100%;
38
+			display: flex;
39
+			justify-content: center;
40
+			align-items: center;
41
+			padding: 0 20rpx;
42
+		}
43
+		.list{
44
+			padding: 0 20rpx;
45
+			margin-bottom: 20rpx;
46
+			.df-list{
47
+				display: flex;
48
+				justify-content: space-between;
49
+				padding: 10rpx 0;
50
+				font-size: 28rpx;
51
+				color: #555555;
52
+			}
53
+			.list-border{
54
+				border-bottom: 1px solid #D2D2D2;
55
+				height: 80rpx;
56
+				display: flex;
57
+				justify-content: space-between;
58
+				align-items: center;
59
+				font-size: 32rpx !important;
60
+				font-weight: 500;
61
+				color: #000;
62
+			}
63
+		}
64
+		.df{
65
+			
66
+		}
67
+	}
68
+</style>