Browse Source

临床服务控制页面

seimin 1 year ago
parent
commit
0002b1e3e3
2 changed files with 58 additions and 6 deletions
  1. 26 6
      pages/promptPage/promptPage.vue
  2. 32 0
      pages/receipt_infopage/receipt_infopage.vue

+ 26 - 6
pages/promptPage/promptPage.vue

@@ -10,8 +10,17 @@
10 10
 				<text class="cubeic-close icon_transport transport-shibai"></text>
11 11
 			</view>
12 12
 		</view>
13
-		<view class="Scanning_cont">
14
-			<view>{{content}}</view>
13
+		<view class="Scanning_cont" v-if="status == 200">
14
+			<view class="tl">您已经成功接收{{result.deptName}}的{{result.num}}个药包</view>
15
+			<!-- <view class="tl">您已经成功接收N7血液科的1个药包,共2组药品</view> -->
16
+			<view class="success_item tl">发药单号包括:</view>
17
+			<!-- <view class="success_item tl">明细详情:</view> -->
18
+			<view class="tl">{{result.drugBagsCodes}}</view>
19
+			<!-- <view class="tl">3200024183024</view> -->
20
+			<!-- <view class="tl">3200024183025</view> -->
21
+		</view>
22
+		<view class="Scanning_cont" v-else>
23
+			<view>{{errorContent}}</view>
15 24
 		</view>
16 25
 		<view class="foot_btn">
17 26
 			<view class="btn3" @click="showAlert()">知道了</view>
@@ -27,8 +36,9 @@
27 36
 	export default {
28 37
 		data() {
29 38
 			return {
39
+				result: {},
30 40
 				options: {},
31
-				content: '',
41
+				errorContent: '',
32 42
 				status: null,
33 43
 			};
34 44
 		},
@@ -51,9 +61,9 @@
51 61
 						uni.hideLoading();
52 62
 						this.status = result.status;
53 63
 						if (result.status == 200) {
54
-							this.content = `您已经成功接收${result.deptName}的${result.num}个药包,包括:${result.drugBagsCodes}`;
64
+							this.result = result || {};
55 65
 						} else {
56
-							this.content = result.error;
66
+							this.errorContent = result.error;
57 67
 						}
58 68
 					})
59 69
 			}
@@ -73,8 +83,12 @@
73 83
 
74 84
 <style lang="less">
75 85
 	.Scanning_B {
86
+    display: flex;
87
+    flex-direction: column;
88
+    height: 100vh;
89
+    padding: 0 40rpx;
76 90
 		.Scanning_top {
77
-			height: 200rpx;
91
+			height: 150rpx;
78 92
 
79 93
 			.Scanning_top_icon {
80 94
 				width: 140rpx;
@@ -106,6 +120,12 @@
106 120
 
107 121
 		.Scanning_cont {
108 122
 			font-size: 32rpx;
123
+			.tl{
124
+        text-align: left;
125
+      }
126
+      .success_item{
127
+        color: #8f8f8f;
128
+      }
109 129
 
110 130
 			view {
111 131
 				margin-bottom: 16rpx;

+ 32 - 0
pages/receipt_infopage/receipt_infopage.vue

@@ -397,6 +397,7 @@
397 397
       <view class="btn3" @click="toDrugBatches(infoDATA.drugs.batchNo)" v-if="infoDATA.taskType.associationType.value == 'drugsBag' && taskTypeConfig.drugsBatchInfo == 1" hover-class="seimin-btn-hover">药品批次</view>
398 398
       <view class="btn3" @click="viewBlood(infoDATA)" v-if="infoDATA.taskType.associationType.value == 'ordinary' && infoDATA.taskType.ordinaryField.value == 'blood'" hover-class="seimin-btn-hover">查看血制品</view>
399 399
       <view class="btn3" @click="additionalUser(infoDATA)" v-if="(infoDATA.taskType.associationType.value == 'inspect' || infoDATA.taskType.associationType.value == 'patientTransport') && infoDATA.worker && infoDATA.worker.id && multiplayerMode === 1" hover-class="seimin-btn-hover">追加陪检人员</view>
400
+      <view class="btn3" @click="additionalUser(infoDATA)" v-if="infoDATA.taskType.associationType.value == 'other' && infoDATA.worker && infoDATA.worker.id && clinicalMultiplayerMode === 1" hover-class="seimin-btn-hover">追加执行人员</view>
400 401
     </view>
401 402
     <!-- 弹窗 -->
402 403
     <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
@@ -439,6 +440,7 @@
439 440
         currentCode: '', //当前拍照使用的科室二维码
440 441
         currentData: {}, //当前小扫描的工单对象
441 442
         multiplayerMode: 0,
443
+        clinicalMultiplayerMode: 0,
442 444
         hosId: uni.getStorageSync('userData').user.currentHospital.id,
443 445
         SMFlag:true,
444 446
         actualDelivery: 0,
@@ -1343,6 +1345,34 @@
1343 1345
             this.multiplayerMode = 0;
1344 1346
           }
1345 1347
         });
1348
+      },
1349
+      // 获取临床服务页面控制开关
1350
+      getTaskOtherConfig(){
1351
+        post("/simple/data/fetchDataList/taskTypeConfig", {
1352
+            "idx": 0,
1353
+            "sum": 10,
1354
+            "taskTypeConfig": {
1355
+                "taskTypeDTO": {
1356
+                    "hosId": {
1357
+                        "id": this.hosId
1358
+                    },
1359
+                    "associationType": {
1360
+                        "key": "association_types",
1361
+                        "value": "other"
1362
+                    }
1363
+                }
1364
+            }
1365
+        }).then((result) => {
1366
+          if (result.status == 200) {
1367
+            if(result.list && result.list[0]){
1368
+              this.clinicalMultiplayerMode = result.list[0].clinicalMultiplayerMode;
1369
+            }else{
1370
+              this.clinicalMultiplayerMode = 0;
1371
+            }
1372
+          } else {
1373
+            this.clinicalMultiplayerMode = 0;
1374
+          }
1375
+        });
1346 1376
       }
1347 1377
     },
1348 1378
     onLoad(options) {
@@ -1364,6 +1394,8 @@
1364 1394
         options.associationTypeValue == 'patientTransport'
1365 1395
       ) {
1366 1396
         this.getTaskConfig();
1397
+      }else if(options.associationTypeValue == 'other'){
1398
+        this.getTaskOtherConfig();
1367 1399
       }
1368 1400
       // 创建动画
1369 1401
       this.animation = uni.createAnimation({