seimin 3 lat temu
rodzic
commit
1af6b8c3ff

+ 8 - 0
pages/homePage/homePage.vue

@@ -47,6 +47,9 @@
47
       <input class="login_input" password v-model="password" placeholder="请输入密码" />
47
       <input class="login_input" password v-model="password" placeholder="请输入密码" />
48
       <input class="login_input" v-show="!isH5AndPwd" v-model="ip" placeholder="请输入域名或IP地址,如:http(s)://192.168.3.108" />
48
       <input class="login_input" v-show="!isH5AndPwd" v-model="ip" placeholder="请输入域名或IP地址,如:http(s)://192.168.3.108" />
49
       <view class="page_item_btn" @click="login()"> 登录 </view>
49
       <view class="page_item_btn" @click="login()"> 登录 </view>
50
+      <view class="tips">
51
+        (此系统为药房使用,其他科室人员请勿进行操作)
52
+      </view>
50
     </view>
53
     </view>
51
     <!-- APP或H5账号密码登录页面 end -->
54
     <!-- APP或H5账号密码登录页面 end -->
52
     <view class="botImg" v-if="online || (!online && online !== undefined && workSchemeType == 1)">
55
     <view class="botImg" v-if="online || (!online && online !== undefined && workSchemeType == 1)">
@@ -897,6 +900,11 @@
897
         color: #42b983;
900
         color: #42b983;
898
         text-align: center;
901
         text-align: center;
899
       }
902
       }
903
+      .tips {
904
+        font-size: 28rpx;
905
+        color: #68686b;
906
+        margin-top: 16rpx;
907
+      }
900
 
908
 
901
       .page_item_btn {
909
       .page_item_btn {
902
         height: 88rpx;
910
         height: 88rpx;

+ 42 - 9
pages/pharmacyDetails/pharmacyDetails.vue

@@ -46,12 +46,12 @@
46
       <view class="R-l"></view>
46
       <view class="R-l"></view>
47
     </view>
47
     </view>
48
     <button class="cube-toolbar-item" :loading="isLoading" :disabled="isLoading" @click="dispensing(1)"
48
     <button class="cube-toolbar-item" :loading="isLoading" :disabled="isLoading" @click="dispensing(1)"
49
-      v-if="infoDATA.drugsState && infoDATA.drugsState.name == '待配药'">
49
+      v-if="infoDATA.drugsState && infoDATA.drugsState.name == '待配药'&&infoDATA.launch.id==loginUser.dept.id">
50
       开始配药
50
       开始配药
51
     </button>
51
     </button>
52
-    <view v-if="infoDATA.drugsState && infoDATA.drugsState.name == '配药中'" class="btn-wrap">
52
+    <view v-if="infoDATA.drugsState && infoDATA.drugsState.name == '配药中'&&infoDATA.launch.id==loginUser.dept.id" class="btn-wrap">
53
       <button class="cube-toolbar-item1" :loading="isLoading" :disabled="isLoading" @click="dispensing(2)">
53
       <button class="cube-toolbar-item1" :loading="isLoading" :disabled="isLoading" @click="dispensing(2)">
54
-        完成配药
54
+        进行核对
55
       </button>
55
       </button>
56
       <button class="cube-toolbar-item1" :loading="isTLoading" :disabled="isTLoading" @click="replaceOperator()">
56
       <button class="cube-toolbar-item1" :loading="isTLoading" :disabled="isTLoading" @click="replaceOperator()">
57
         替换配药人
57
         替换配药人
@@ -72,11 +72,12 @@
72
         infoDATA: [],
72
         infoDATA: [],
73
         isLoading: false,
73
         isLoading: false,
74
         isTLoading: false,
74
         isTLoading: false,
75
+        loginUser: {} //当前登录用户
75
       };
76
       };
76
     },
77
     },
77
     methods: {
78
     methods: {
78
       // 替换配药人
79
       // 替换配药人
79
-      replaceOperator(){
80
+      replaceOperator() {
80
         this.isTLoading = true;
81
         this.isTLoading = true;
81
         uni.showLoading({
82
         uni.showLoading({
82
           title: "加载中",
83
           title: "加载中",
@@ -87,7 +88,7 @@
87
         }).then((result) => {
88
         }).then((result) => {
88
           this.isTLoading = false;
89
           this.isTLoading = false;
89
           uni.hideLoading();
90
           uni.hideLoading();
90
-          if(result.state == 200){
91
+          if (result.state == 200) {
91
             uni.showModal({
92
             uni.showModal({
92
               title: '提示',
93
               title: '提示',
93
               content: result.info,
94
               content: result.info,
@@ -100,7 +101,7 @@
100
                 }
101
                 }
101
               }
102
               }
102
             });
103
             });
103
-          }else{
104
+          } else {
104
             uni.showModal({
105
             uni.showModal({
105
               title: '提示',
106
               title: '提示',
106
               content: "请求失败!",
107
               content: "请求失败!",
@@ -116,7 +117,7 @@
116
           }
117
           }
117
         })
118
         })
118
       },
119
       },
119
-      // 开始配药,完成配药,,,1是待配药,2是配药中
120
+      // 开始配药,进行核对,,,1是待配药,2是配药中
120
       dispensing(type) {
121
       dispensing(type) {
121
         this.isLoading = true;
122
         this.isLoading = true;
122
         uni.showLoading({
123
         uni.showLoading({
@@ -201,7 +202,7 @@
201
             if (result.state == 200) {
202
             if (result.state == 200) {
202
               uni.showModal({
203
               uni.showModal({
203
                 title: '提示',
204
                 title: '提示',
204
-                content: result.info || "完成配药成功!",
205
+                content: result.info || "进行核对成功!",
205
                 showCancel: false,
206
                 showCancel: false,
206
                 success: function(res) {
207
                 success: function(res) {
207
                   if (res.confirm) {
208
                   if (res.confirm) {
@@ -232,6 +233,8 @@
232
       },
233
       },
233
     },
234
     },
234
     onLoad(options) {
235
     onLoad(options) {
236
+      this.loginUser = uni.getStorageSync("userData").user;
237
+      console.log(this.loginUser,'loginUserloginUser')
235
       // #ifdef APP-PLUS
238
       // #ifdef APP-PLUS
236
       webHandle("no", "app");
239
       webHandle("no", "app");
237
       // #endif
240
       // #endif
@@ -251,6 +254,20 @@
251
           uni.hideLoading();
254
           uni.hideLoading();
252
           if (result.state == 200) {
255
           if (result.state == 200) {
253
             this.infoDATA = result.result;
256
             this.infoDATA = result.result;
257
+            if(this.loginUser.dept.id != this.infoDATA.launch.id){
258
+              uni.showModal({
259
+                title: '提示',
260
+                content: "您现在所在的科室是【"+this.loginUser.dept.dept+"】,药包所在的科室是【"+this.infoDATA.launch.dept+"】,您不能进行操作",
261
+                showCancel: false,
262
+                success: function(res) {
263
+                  if (res.confirm) {
264
+                    console.log('用户点击确定');
265
+                  } else if (res.cancel) {
266
+                    console.log('用户点击取消');
267
+                  }
268
+                }
269
+              });
270
+            }
254
           } else {
271
           } else {
255
             uni.showToast({
272
             uni.showToast({
256
               icon: "none",
273
               icon: "none",
@@ -270,6 +287,20 @@
270
           uni.hideLoading();
287
           uni.hideLoading();
271
           if (res.status == 200) {
288
           if (res.status == 200) {
272
             this.infoDATA = res.data;
289
             this.infoDATA = res.data;
290
+            if(this.loginUser.dept.id != this.infoDATA.launch.id){
291
+              uni.showModal({
292
+                title: '提示',
293
+                content: "您现在所在的科室是【"+this.loginUser.dept.dept+"】,药包所在的科室是【"+this.infoDATA.launch.dept+"】,您不能进行操作",
294
+                showCancel: false,
295
+                success: function(res) {
296
+                  if (res.confirm) {
297
+                    console.log('用户点击确定');
298
+                  } else if (res.cancel) {
299
+                    console.log('用户点击取消');
300
+                  }
301
+                }
302
+              });
303
+            }
273
           } else {
304
           } else {
274
             uni.showToast({
305
             uni.showToast({
275
               icon: "none",
306
               icon: "none",
@@ -459,13 +490,15 @@
459
       color: #fff;
490
       color: #fff;
460
       text-align: center;
491
       text-align: center;
461
     }
492
     }
462
-    .btn-wrap{
493
+
494
+    .btn-wrap {
463
       display: flex;
495
       display: flex;
464
       justify-content: space-between;
496
       justify-content: space-between;
465
       position: fixed;
497
       position: fixed;
466
       left: 20rpx;
498
       left: 20rpx;
467
       bottom: 160rpx;
499
       bottom: 160rpx;
468
     }
500
     }
501
+
469
     .cube-toolbar-item1 {
502
     .cube-toolbar-item1 {
470
       width: 350rpx;
503
       width: 350rpx;
471
       height: 68rpx;
504
       height: 68rpx;