Sfoglia il codice sorgente

药品配送增加交接人

seimin 3 anni fa
parent
commit
c7893e375b

+ 293 - 0
components/selectAccount/selectAccount.vue

@@ -0,0 +1,293 @@
1
+<template>
2
+  <view class="changeHospital" v-show="disjunctor">
3
+    <view class="changeHospital__wrap">
4
+      <view class="changeHospital__header" v-if="title">
5
+        {{ title }}
6
+      </view>
7
+      <view class="changeHospital__article">
8
+        <view class="uni-list-cell">
9
+          <view class="uni-list-cell-left">
10
+            交接人账号:
11
+          </view>
12
+          <view class="uni-list-cell-db">
13
+            <input class="uni-input" auto-focus="true" placeholder="请填写交接人信息" v-model="account" @input="bindPickerChange($event)" />
14
+          </view>
15
+        </view>
16
+        <view class="uni-list-cell">
17
+          <view class="uni-list-cell-left">
18
+            交接人姓名:
19
+          </view>
20
+          <view class="uni-list-cell-db-text">
21
+            <text>{{accountName}}</text>
22
+          </view>
23
+        </view>
24
+      </view>
25
+      <view class="changeHospital__footer">
26
+        <view v-if="operate.ok" class="changeHospital__ok" @click="ok" hover-class="seimin-btn-hover">
27
+          {{ operate.ok || "" }}
28
+        </view>
29
+        <view v-if="operate.cancel" class="changeHospital__cancel" @click="cancel" hover-class="seimin-btn-hover">
30
+          {{ operate.cancel || "" }}
31
+        </view>
32
+      </view>
33
+    </view>
34
+  </view>
35
+</template>
36
+
37
+<script>
38
+  import {
39
+    post
40
+  } from "../../http/http.js";
41
+  export default {
42
+    data() {
43
+      return {
44
+        userData: null,
45
+        hosId:null,
46
+        timer:null,
47
+        account:'',//交接人账号
48
+        accountName:'',//交接人姓名
49
+        accountId:''//交接人ID
50
+      };
51
+    },
52
+    watch: {
53
+      disjunctor(newValue) {
54
+        if (newValue && this.operate.know == "知道了") {
55
+          this.time = 5;
56
+          this.timer = setInterval(() => {
57
+            this.time--;
58
+            if (this.time <= 0) {
59
+              clearInterval(this.timer);
60
+              this.know();
61
+            }
62
+          }, 1000);
63
+        }
64
+      },
65
+    },
66
+    props: {
67
+      // 显示隐藏
68
+      disjunctor: {
69
+        type: Boolean,
70
+        default: false,
71
+      },
72
+      // 标题
73
+      title: {
74
+        type: String,
75
+        default: "提示",
76
+      },
77
+      // 操作按钮文字
78
+      operate: {
79
+        type: Object,
80
+        default: () => {
81
+          return {
82
+            ok: "确认",
83
+            cancel: "取消",
84
+          };
85
+        },
86
+      },
87
+    },
88
+    methods: {
89
+      //修改picker的值
90
+      bindPickerChange(e) {
91
+        console.log(e.target.value);
92
+        clearTimeout(this.timer);
93
+        let cValue = e.target.value;
94
+        this.timer = setTimeout(()=>{
95
+          let account = e.target.value;
96
+          post("/data/isRepeat", {
97
+            hospital: {id: this.hosId},
98
+            account
99
+          }).then(result => {
100
+            if(cValue === account && result.status == 200){
101
+              this.accountName = result.userName;
102
+              this.account = account;
103
+              this.accountId = result.userId;
104
+            }
105
+          })
106
+        },500)
107
+      },
108
+      // 确定
109
+      ok() {
110
+        let e = {};
111
+        if(this.accountName){
112
+          e.accountName = this.accountName;
113
+        }
114
+        if(this.account){
115
+          e.account = this.account;
116
+        }
117
+        if(this.accountId){
118
+          e.accountId = this.accountId;
119
+        }
120
+        this.$emit("ok", e);
121
+      },
122
+      // 取消
123
+      cancel() {
124
+        this.$emit("cancel");
125
+      },
126
+    },
127
+    created() {
128
+      this.hosId = uni.getStorageSync('userData').user.currentHospital.id;
129
+    }
130
+  };
131
+</script>
132
+
133
+<style lang="less" scoped>
134
+  .changeHospital {
135
+    position: fixed;
136
+    left: 0;
137
+    right: 0;
138
+    top: 0;
139
+    bottom: 0;
140
+    background-color: rgba(0, 0, 0, 0.2);
141
+    z-index: 999;
142
+
143
+    .uni-list-cell {
144
+      width: 90%;
145
+      display: flex;
146
+      flex-direction: row;
147
+      justify-content: space-evenly;
148
+      align-items: center;
149
+      text-align: center;
150
+      margin-top: 32rpx;
151
+
152
+      .uni-list-cell-left {
153
+        flex: 3;
154
+        font-size: 32rpx;
155
+        color: #666;
156
+      }
157
+
158
+      .uni-list-cell-db {
159
+        border: 1px solid #e5e9ed;
160
+        background-color: #fff;
161
+        padding: 16rpx 0;
162
+        flex: 5;
163
+      }
164
+      .uni-list-cell-db-text {
165
+        flex: 5;
166
+        text-align: left;
167
+      }
168
+    }
169
+
170
+    .changeHospital__wrap {
171
+      width: 90vw;
172
+      position: absolute;
173
+      left: 50%;
174
+      top: 50%;
175
+      transform: translate(-50%, -50%);
176
+      background-color: #fff;
177
+      border-radius: 12rpx;
178
+      color: #666;
179
+
180
+      .changeHospital__header {
181
+        font-size: 36rpx;
182
+        color: #000;
183
+        height: 84rpx;
184
+        display: flex;
185
+        justify-content: center;
186
+        align-items: center;
187
+      }
188
+
189
+      .changeHospital__article {
190
+        width: 90%;
191
+        margin: 0 auto 25rpx;
192
+        padding: 48rpx 0;
193
+        background-color: rgb(249, 250, 251);
194
+        border: 2rpx solid rgb(229, 233, 237);
195
+        border-radius: 12rpx;
196
+        box-sizing: border-box;
197
+        display: flex;
198
+        flex-direction: column;
199
+        justify-content: center;
200
+        align-items: center;
201
+
202
+        &.p0 {
203
+          padding: 0;
204
+        }
205
+
206
+        .changeHospital__icon {
207
+          font-size: 138rpx;
208
+          margin-bottom: 32rpx;
209
+
210
+          &.changeHospital__icon--success {
211
+            color: rgb(52, 179, 73);
212
+          }
213
+
214
+          &.changeHospital__icon--warn {
215
+            color: rgb(245, 165, 35);
216
+          }
217
+
218
+          &.changeHospital__icon--error {
219
+            color: rgb(255, 58, 82);
220
+          }
221
+        }
222
+
223
+        .changeHospital__content {
224
+          font-size: 36rpx;
225
+        }
226
+
227
+        .changeHospital__info {
228
+          font-size: 32rpx;
229
+          color: rgb(102, 102, 102);
230
+        }
231
+
232
+        .specialCloseFlag {
233
+          width: 90%;
234
+          height: 100%;
235
+          padding: 16rpx;
236
+        }
237
+
238
+        .radio-wrap {
239
+          .radio-item {
240
+            margin-top: 16rpx;
241
+
242
+            /deep/ .uni-radio-input-checked {
243
+              background-color: #49b856 !important;
244
+              border-color: #49b856 !important;
245
+            }
246
+          }
247
+        }
248
+      }
249
+
250
+      .changeHospital__footer {
251
+        box-sizing: border-box;
252
+        height: 100rpx;
253
+        border-top: 2rpx solid rgb(229, 233, 237);
254
+        display: flex;
255
+        align-items: center;
256
+
257
+        view {
258
+          height: 100%;
259
+          display: flex;
260
+          align-items: center;
261
+          justify-content: center;
262
+          font-size: 36rpx;
263
+          color: rgb(102, 102, 102);
264
+          position: relative;
265
+
266
+          &:nth-of-type(2)::before {
267
+            content: "";
268
+            position: absolute;
269
+            left: 0;
270
+            bottom: 0;
271
+            width: 2rpx;
272
+            height: 87rpx;
273
+            background-color: rgb(229, 233, 237);
274
+          }
275
+        }
276
+
277
+        .changeHospital__ok {
278
+          flex: 1;
279
+          color: rgb(73, 184, 86);
280
+        }
281
+
282
+        .changeHospital__cancel {
283
+          flex: 1;
284
+        }
285
+
286
+        .changeHospital__know {
287
+          flex: 1;
288
+          color: rgb(73, 184, 86);
289
+        }
290
+      }
291
+    }
292
+  }
293
+</style>

+ 352 - 0
components/smallScreen/smallScreen.vue

@@ -0,0 +1,352 @@
1
+<template>
2
+  <view class="smallScreen">
3
+    <view class="smallScreen_scan" @click="Scan_ss(sData,sType)">
4
+      <slot></slot>
5
+    </view>
6
+    <!-- 填写交接人账号弹窗 -->
7
+    <selectAccount v-if="hosModels.disjunctor" :title="hosModels.title" :disjunctor="hosModels.disjunctor" @ok="hosOk"
8
+      @cancel="hosCancel">
9
+    </selectAccount>
10
+  </view>
11
+</template>
12
+
13
+<script>
14
+  import selectAccount from "../../components/selectAccount/selectAccount.vue";
15
+  import {
16
+    post,
17
+    SM
18
+  } from "../../http/http.js";
19
+  export default {
20
+    data() {
21
+      return {
22
+        currentCode: '', //当前小扫描的科室二维码
23
+        currentData: {}, //当前小扫描的工单对象
24
+        // 填写交接人账号弹窗model
25
+        hosModels: {
26
+          disjunctor: false,
27
+        },
28
+      }
29
+    },
30
+    props:{
31
+      sData:{
32
+        type:Object
33
+      },
34
+      sType:{
35
+        type:Number
36
+      }
37
+    },
38
+    methods: {
39
+      // 如果不是静配,药配,标本配送,标本轮巡
40
+      // 科室签到(小扫描)
41
+      nextDeptOrder_ss(data, accountObj) {
42
+        let isKs = 0;
43
+        let ids = [];
44
+        let id = data.id;
45
+        ids.push(id);
46
+        let list = {
47
+          code: "",
48
+          ids: ids,
49
+        };
50
+        let code = "";
51
+        let type = "";
52
+        if (this.currentCode) {
53
+          let gdStateValue = data.gdState.value; //工单状态value
54
+          let associationTypeValue = data.taskType.associationType.value; //关联类型value
55
+          // 患者陪检,并且工单状态是待到达
56
+          if (
57
+            gdStateValue == "4" &&
58
+            associationTypeValue == "inspect"
59
+          ) {
60
+            list.code = this.currentCode; //其他
61
+            type = "handleIns";
62
+          }
63
+          // 其他临床服务,并且工单状态是待到达||工单状态待送达
64
+          if (
65
+            (associationTypeValue == "other" &&
66
+              gdStateValue == "4") ||
67
+            gdStateValue == "5"
68
+          ) {
69
+            code = this.currentCode;
70
+            type = "orderSign/" + code;
71
+            list = {
72
+              ids
73
+            };
74
+            if (accountObj) {
75
+              list.handover = [accountObj.accountId];
76
+            }
77
+            isKs = 1;
78
+          }
79
+          if (
80
+            (gdStateValue == "5" &&
81
+              associationTypeValue == "inspect") ||
82
+            associationTypeValue == "patientTransport"
83
+          ) {
84
+            code = this.currentCode;
85
+            type = "orderSign/" + code;
86
+            list = {
87
+              ids
88
+            };
89
+            if (accountObj) {
90
+              list.handover = [accountObj.accountId];
91
+            }
92
+            isKs = 1;
93
+          }
94
+          if (gdStateValue == "8") {
95
+            code = this.currentCode; //患者陪检--检查
96
+            type = "orderSign/" + code;
97
+            list = {
98
+              ids
99
+            };
100
+            if (accountObj) {
101
+              list.handover = [accountObj.accountId];
102
+            }
103
+            isKs = 1;
104
+          }
105
+          if (
106
+            gdStateValue == "4" &&
107
+            associationTypeValue == "patientTransport"
108
+          ) {
109
+            list = {
110
+              code: this.currentCode, //患者转运--检查
111
+              ids: ids,
112
+            };
113
+            type = "handleTrans";
114
+          }
115
+          post("/workerOrder/" + type, list).then((res) => {
116
+            uni.hideLoading();
117
+            if (res) {
118
+              if (res.status == 200) {
119
+                if (
120
+                  gdStateValue == "4" &&
121
+                  associationTypeValue == "other"
122
+                ) {
123
+                  uni.navigateTo({
124
+                    url: `../../pages/scanning_code/scanning_code?type=${associationTypeValue}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}`,
125
+                  });
126
+                }
127
+                if (
128
+                  gdStateValue == "4" &&
129
+                  associationTypeValue != "other"
130
+                ) {
131
+                  uni.navigateTo({
132
+                    url: `../../pages/scanning_Result/scanning_Result?type=${
133
+                    associationTypeValue
134
+                  }&type1=${res.type}&id=${data.id}&deptCode=${
135
+                    list.code
136
+                  }&patient=${res.patient}&patientCode=${
137
+                    res.patientCode
138
+                  }&deptName=${res.deptName}&bedNum=${
139
+                    res.bedNum
140
+                  }&status=${res.status}&msg=${
141
+                    res.msg
142
+                  }&model=${encodeURIComponent(JSON.stringify(res))}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}`,
143
+                  });
144
+                }
145
+                if (gdStateValue == "8") {
146
+                  uni.navigateTo({
147
+                    url: `../../pages/scanning_code/scanning_code?type=${associationTypeValue}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}`,
148
+                  });
149
+                }
150
+                if (gdStateValue == "5") {
151
+                  uni.navigateTo({
152
+                    url: `../../pages/scanning_code/scanning_code?type=${associationTypeValue}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}`,
153
+                  });
154
+                }
155
+              } else {
156
+                console.log(res, "扫描失败");
157
+                if (res.type == "trans-ddd-1") {
158
+                  //起点科室扫描腕带码失败
159
+                  uni.navigateTo({
160
+                    url: `../../pages/scanning_Result/scanning_Result?type=${associationTypeValue}&type1=${res.type}&id=${data.id}&status=600&msg=${res.msg}`,
161
+                  });
162
+                } else {
163
+                  uni.navigateTo({
164
+                    url: `../../pages/scanning_Result/scanning_Result?type=${
165
+                    associationTypeValue
166
+                  }&type1=${res.type}&id=${data.id}&status=600&msg=${
167
+                    res.msg
168
+                  }&isKs=${isKs}&model=${encodeURIComponent(
169
+                    JSON.stringify(res)
170
+                  )}`,
171
+                  });
172
+                }
173
+              }
174
+            } else {
175
+              uni.navigateTo({
176
+                url: `../../pages/scanning_Result/scanning_Result?id=${data.id}&status=600&msg=扫码失败!请扫描正确的二维码!&isKs=${isKs}`,
177
+              });
178
+            }
179
+          });
180
+        }
181
+      },
182
+      // 如果不是患者陪检或患者转运或其他
183
+      // 科室签到
184
+      nextDeptOrder_s(data, accountObj) {
185
+        console.log(data, accountObj)
186
+        let ids = [];
187
+        let id = data.id;
188
+        ids.push(id);
189
+        let code = "";
190
+        let postData = {
191
+          ids
192
+        };
193
+        if (accountObj) {
194
+          postData.handover = [accountObj.accountId];
195
+        }
196
+        if (this.currentCode) {
197
+          code = this.currentCode;
198
+          // 科室签到
199
+          post("/workerOrder/orderSign/" + code, postData).then((res) => {
200
+            uni.hideLoading();
201
+            if (res.status == 200) {
202
+              // 跳转到扫描科室
203
+              // type1: res.type, //type类型
204
+              // id: data.id, //工单ID
205
+              // deptCode: code, //二维码
206
+              // dept: res.dept //科室名称
207
+              uni.navigateTo({
208
+                url: `../../pages/scanning_code/scanning_code?type=${data.taskType.associationType.value}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}`,
209
+              });
210
+            } else {
211
+              uni.navigateTo({
212
+                url: `../../pages/scanning_Result/scanning_Result?type=${data.taskType.associationType.value}&type1=${res.type}&id=${data.id}&status=600&msg=${res.msg}&isKs=1`,
213
+              });
214
+            }
215
+          });
216
+        }
217
+      },
218
+      // type==1  如果不是静配,药配,标本配送,标本轮巡
219
+      // type==2  如果不是患者陪检,患者转运,其他
220
+      // 扫码(小扫描)
221
+      Scan_ss(data, type) {
222
+        this.currentData = data;
223
+        console.log(data, 'data');
224
+        SM().then((ress1) => {
225
+          uni.showLoading({
226
+            title: "加载中",
227
+            mask: true,
228
+          });
229
+          //检验二维码的有效性
230
+          post("/dept/scanning", {
231
+            content: ress1,
232
+            taskTypeId: data.taskType.id,
233
+            gdState: data.gdState.id,
234
+          }).then((result) => {
235
+            this.currentCode = result.code;
236
+            if (result.state == 200 || result.state == 201) {
237
+              if (result.account) {
238
+                if (type == 1) {
239
+                  this.nextDeptOrder_ss(this.currentData, {
240
+                    account: result.account,
241
+                    accountName: result.name,
242
+                    accountId: result.id,
243
+                  });
244
+                } else if (type == 2) {
245
+                  this.nextDeptOrder_s(this.currentData, {
246
+                    account: result.account,
247
+                    accountName: result.name,
248
+                    accountId: result.id,
249
+                  });
250
+                }
251
+              } else {
252
+                this.nextDeptOrder_ss(this.currentData);
253
+              }
254
+            } else if (result.state == '0000') {
255
+              uni.hideLoading();
256
+              this.showSelectAccount(); //yeye
257
+            } else {
258
+              uni.hideLoading();
259
+              uni.showToast({
260
+                icon: "none",
261
+                title: "请求失败!",
262
+              });
263
+            }
264
+          });
265
+        });
266
+      },
267
+      // 填写交接人账号-确认
268
+      hosOk(data) {
269
+        console.log(data);
270
+        const {
271
+          accountName,
272
+          account,
273
+          accountId
274
+        } = data;
275
+        if (!accountName && !account) {
276
+          //没有填写交接人
277
+          uni.showModal({
278
+            title: '提示',
279
+            content: "请填写交接人账号!",
280
+            showCancel: false,
281
+            success: function(res) {
282
+              if (res.confirm) {
283
+                console.log('用户点击确定');
284
+              } else if (res.cancel) {
285
+                console.log('用户点击取消');
286
+              }
287
+            }
288
+          });
289
+          return;
290
+        } else if (!accountName && account || accountName && !account) {
291
+          //没有填写交接人
292
+          uni.showModal({
293
+            title: '提示',
294
+            content: "请填写正确的交接人账号!",
295
+            showCancel: false,
296
+            success: function(res) {
297
+              if (res.confirm) {
298
+                console.log('用户点击确定');
299
+              } else if (res.cancel) {
300
+                console.log('用户点击取消');
301
+              }
302
+            }
303
+          });
304
+          return;
305
+        }
306
+        this.hosModels.disjunctor = false;
307
+        let associationTypeValue = this.currentData.taskType.associationType.value;
308
+        console.log(associationTypeValue)
309
+        if (
310
+          associationTypeValue !== "patientTransport" &&
311
+          associationTypeValue !== "inspect" &&
312
+          associationTypeValue !== "other"
313
+        ) {
314
+          this.nextDeptOrder_s(this.currentData, data);
315
+        }
316
+        if (
317
+          associationTypeValue !== "jPBag" &&
318
+          associationTypeValue !== "drugsBag" &&
319
+          associationTypeValue !== "specimen" &&
320
+          associationTypeValue !== "specimenPlan"
321
+        ) {
322
+          this.nextDeptOrder_ss(this.currentData, data);
323
+        }
324
+      },
325
+      // 填写交接人账号-取消
326
+      hosCancel() {
327
+        this.hosModels.disjunctor = false;
328
+      },
329
+      // 填写交接人账号弹窗
330
+      showSelectAccount() {
331
+        this.hosModels = {
332
+          title: '填写交接人账号',
333
+          disjunctor: true,
334
+        }
335
+      },
336
+    },
337
+    components: {
338
+      selectAccount
339
+    }
340
+  };
341
+</script>
342
+
343
+<style lang="less">
344
+.smallScreen{
345
+  width: 100%;
346
+  height: 100%;
347
+  .smallScreen_scan{
348
+    width: 100%;
349
+    height: 100%;
350
+  }
351
+}
352
+</style>

+ 5 - 196
pages/receipt_infopage/receipt_infopage.vue

@@ -275,13 +275,13 @@
275 275
       <!-- 如果不是静配,药配,标本配送,标本轮巡 -->
276 276
       <template
277 277
         v-if="((!infoDATA.worker)||(infoDATA.worker&&infoDATA.worker.id == currentUserId))&&infoDATA.gdState.value != 6&&infoDATA.gdState.value != 7&&infoDATA.gdState.value != 11">
278
-        <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']" @click="Scan_ss(infoDATA)" v-if="
278
+        <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']" v-if="
279 279
           infoDATA.gdState.value != 2 &&
280 280
           infoDATA.taskType.associationType.value != 'jPBag' &&
281 281
           infoDATA.taskType.associationType.value != 'drugsBag' &&
282 282
           infoDATA.taskType.associationType.value != 'specimen' &&
283 283
           infoDATA.taskType.associationType.value != 'specimenPlan'
284
-        " hover-class="seimin-btn-hover">扫一扫</view>
284
+        " hover-class="seimin-btn-hover"><smallScreen :sData="infoDATA" :sType="1">扫码</smallScreen></view>
285 285
         <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']" @click="photograph(infoDATA)" v-if="
286 286
           infoDATA.gdState.value != 2 &&
287 287
           infoDATA.taskType.associationType.value != 'jPBag' &&
@@ -301,12 +301,12 @@
301 301
         " hover-class="seimin-btn-hover">特殊情况关闭</view>
302 302
       </template>
303 303
       <!-- 如果不是患者陪检或患者转运或其他 -->
304
-      <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']" @click="Scan_s(infoDATA)" v-if="
304
+      <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']" v-if="
305 305
           infoDATA.gdState.value != 2 &&
306 306
           infoDATA.taskType.associationType.value != 'patientTransport' &&
307 307
           infoDATA.taskType.associationType.value != 'inspect' &&
308 308
           infoDATA.taskType.associationType.value != 'other'
309
-        " hover-class="seimin-btn-hover">扫一扫</view>
309
+        " hover-class="seimin-btn-hover"><smallScreen :sData="infoDATA" :sType="2">扫码</smallScreen></view>
310 310
       <view class="btn3" @click="specialCloseClick()" v-if="
311 311
           infoDATA.gdState.value != 2 &&
312 312
           infoDATA.taskType.associationType.value != 'patientTransport' &&
@@ -325,6 +325,7 @@
325 325
   </view>
326 326
 </template>
327 327
 <script>
328
+  import smallScreen from "../../components/smallScreen/smallScreen.vue";
328 329
   import showModel from "../../components/showModel/showModel.vue";
329 330
   import {
330 331
     get,
@@ -507,198 +508,6 @@
507 508
           this.animationData = this.animation.export();
508 509
         }
509 510
       },
510
-      // 如果不是静配,药配,标本配送,标本轮巡
511
-      // 扫码
512
-      Scan_ss(data) {
513
-        let isKs = 0;
514
-        let ids = [];
515
-        let id = data.id;
516
-        ids.push(id);
517
-        let list = {
518
-          code: "",
519
-          ids: ids,
520
-        };
521
-        let code = "";
522
-        let type = "";
523
-        SM().then((ress1) => {
524
-          uni.showLoading({
525
-            title: "加载中",
526
-            mask: true,
527
-          });
528
-          //检验二维码的有效性
529
-          post("/dept/scanning", {
530
-            content: ress1,
531
-          }).then((result) => {
532
-            if (result.state == 200 || result.state == 201) {
533
-              let ress = result.code;
534
-              if (ress) {
535
-                if (
536
-                  data.gdState.value == "4" &&
537
-                  data.taskType.associationType.value == "inspect"
538
-                ) {
539
-                  list.code = ress; //其他
540
-                  type = "handleIns";
541
-                }
542
-                if (
543
-                  (data.taskType.associationType.value == "other" &&
544
-                    data.gdState.value == "4") ||
545
-                  data.gdState.value == "5"
546
-                ) {
547
-                  code = ress; //其他=终点
548
-                  type = "orderSign/" + code;
549
-                  list = ids;
550
-                  isKs = 1;
551
-                }
552
-                if (
553
-                  (data.gdState.value == "5" &&
554
-                    data.taskType.associationType.value == "inspect") ||
555
-                  data.taskType.associationType.value == "patientTransport"
556
-                ) {
557
-                  code = ress; //患者转运--起点
558
-                  type = "orderSign/" + code;
559
-                  list = ids;
560
-                  isKs = 1;
561
-                }
562
-                if (data.gdState.value == "8") {
563
-                  code = ress; //患者陪检--检查
564
-                  type = "orderSign/" + code;
565
-                  list = ids;
566
-                  isKs = 1;
567
-                }
568
-                if (
569
-                  data.gdState.value == "4" &&
570
-                  data.taskType.associationType.value == "patientTransport"
571
-                ) {
572
-                  list = {
573
-                    code: ress, //患者转运--检查
574
-                    ids: ids,
575
-                  };
576
-                  type = "handleTrans";
577
-                }
578
-                post("/workerOrder/" + type, list).then((res) => {
579
-                  uni.hideLoading();
580
-                  if (res) {
581
-                    if (res.status == 200) {
582
-                      if (
583
-                        data.gdState.value == "4" &&
584
-                        data.taskType.associationType.value == "other"
585
-                      ) {
586
-                        uni.navigateTo({
587
-                          url: `../scanning_code/scanning_code?type=${data.taskType.associationType.value}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}`,
588
-                        });
589
-                      }
590
-                      if (
591
-                        data.gdState.value == "4" &&
592
-                        data.taskType.associationType.value != "other"
593
-                      ) {
594
-                        uni.navigateTo({
595
-                          url: `../scanning_Result/scanning_Result?type=${
596
-                          data.taskType.associationType.value
597
-                        }&type1=${res.type}&id=${data.id}&deptCode=${
598
-                          list.code
599
-                        }&patient=${res.patient}&patientCode=${
600
-                          res.patientCode
601
-                        }&deptName=${res.deptName}&bedNum=${
602
-                          res.bedNum
603
-                        }&status=${res.status}&msg=${
604
-                          res.msg
605
-                        }&model=${encodeURIComponent(JSON.stringify(res))}`,
606
-                        });
607
-                      }
608
-                      if (data.gdState.value == "8") {
609
-                        uni.navigateTo({
610
-                          url: `../scanning_code/scanning_code?type=${data.taskType.associationType.value}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}`,
611
-                        });
612
-                      }
613
-                      if (data.gdState.value == "5") {
614
-                        uni.navigateTo({
615
-                          url: `../scanning_code/scanning_code?type=${data.taskType.associationType.value}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}`,
616
-                        });
617
-                      }
618
-                    } else {
619
-                      if (res.type == "trans-ddd-1") {
620
-                        //起点科室扫描腕带码失败
621
-                        uni.navigateTo({
622
-                          url: `../scanning_Result/scanning_Result?type=${data.taskType.associationType.value}&type1=${res.type}&id=${data.id}&status=600&msg=${res.msg}`,
623
-                        });
624
-                      } else {
625
-                        uni.navigateTo({
626
-                          url: `../scanning_Result/scanning_Result?type=${
627
-                          data.taskType.associationType.value
628
-                        }&type1=${res.type}&id=${data.id}&status=600&msg=${
629
-                          res.msg
630
-                        }&isKs=${isKs}&model=${encodeURIComponent(
631
-                          JSON.stringify(res)
632
-                        )}`,
633
-                        });
634
-                      }
635
-                    }
636
-                  } else {
637
-                    uni.navigateTo({
638
-                      url: `../scanning_Result/scanning_Result?id=${data.id}&status=600&msg=扫码失败!请扫描正确的二维码!&isKs=${isKs}`,
639
-                    });
640
-                  }
641
-                });
642
-              }
643
-            } else {
644
-              uni.hideLoading();
645
-              uni.showToast({
646
-                icon: "none",
647
-                title: "请求失败!",
648
-              });
649
-            }
650
-          });
651
-        });
652
-      },
653
-      // 如果不是患者陪检或患者转运或其他
654
-      // 扫码
655
-      Scan_s(data) {
656
-        let ids = [];
657
-        let id = data.id;
658
-        ids.push(id);
659
-        let code = "";
660
-        SM().then((ress1) => {
661
-          uni.showLoading({
662
-            title: "加载中",
663
-            mask: true,
664
-          });
665
-          //检验二维码的有效性
666
-          post("/dept/scanning", {
667
-            content: ress1,
668
-          }).then((result) => {
669
-            if (result.state == 200 || result.state == 201) {
670
-              let ress = result.code;
671
-              if (ress) {
672
-                code = ress;
673
-                // 科室签到
674
-                post("/workerOrder/orderSign/" + code, ids).then((res) => {
675
-                  uni.hideLoading();
676
-                  if (res.status == 200) {
677
-                    // 跳转到扫描科室
678
-                    // type1: res.type, //type类型
679
-                    // id: data.id, //工单ID
680
-                    // deptCode: code, //二维码
681
-                    // dept: res.dept //科室名称
682
-                    uni.navigateTo({
683
-                      url: `../scanning_code/scanning_code?type=${data.taskType.associationType.value}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}`,
684
-                    });
685
-                  } else {
686
-                    uni.navigateTo({
687
-                      url: `../scanning_Result/scanning_Result?type=${data.taskType.associationType.value}&type1=${res.type}&id=${data.id}&status=600&msg=${res.msg}&isKs=1`,
688
-                    });
689
-                  }
690
-                });
691
-              }
692
-            } else {
693
-              uni.hideLoading();
694
-              uni.showToast({
695
-                icon: "none",
696
-                title: "请求失败!",
697
-              });
698
-            }
699
-          });
700
-        });
701
-      },
702 511
       // 抢单->知道了
703 512
       know() {
704 513
         this.models.disjunctor = false;

+ 4 - 196
pages/receiptpage/receiptpage.vue

@@ -175,7 +175,7 @@
175 175
                 item.taskType.associationType.value != 'patientTransport' &&
176 176
                 item.taskType.associationType.value != 'inspect' &&
177 177
                 item.taskType.associationType.value != 'other'
178
-              " @click="Scan_s(item)" hover-class="seimin-btn-hover">扫码</view>
178
+              " hover-class="seimin-btn-hover"><smallScreen :sData="item" :sType="2">扫码</smallScreen></view>
179 179
             <!-- 如果不是静配,药配,标本配送,标本轮巡 -->
180 180
             <view class="page_item_btn_wrap" v-if="
181 181
                 selectedLabelSlots == '执行中' &&
@@ -190,7 +190,7 @@
190 190
                     item.gdState.value == 4
191 191
                       ? '50%'
192 192
                       : '100%',
193
-                }" @click="Scan_ss(item)" hover-class="seimin-btn-hover">扫码</view>
193
+                }" hover-class="seimin-btn-hover"><smallScreen :sData="item" :sType="1">扫码</smallScreen></view>
194 194
               <view v-if="
195 195
                   item.taskType.associationType.value != 'other' &&
196 196
                   item.gdState.value == 4
@@ -214,6 +214,7 @@
214 214
   </view>
215 215
 </template>
216 216
 <script>
217
+  import smallScreen from "../../components/smallScreen/smallScreen.vue";
217 218
   import showModel from "../../components/showModel/showModel.vue";
218 219
   import bigScreen from "../../components/bigScreen/bigScreen.vue";
219 220
   // https://ext.dcloud.net.cn/plugin?id=144
@@ -507,202 +508,9 @@
507 508
           },
508 509
         };
509 510
       },
510
-      // 如果不是静配,药配,标本配送,标本轮巡
511
-      // 扫码(小扫描)
512
-      Scan_ss(data) {
513
-        let isKs = 0;
514
-        let ids = [];
515
-        let id = data.id;
516
-        ids.push(id);
517
-        let list = {
518
-          code: "",
519
-          ids: ids,
520
-        };
521
-        let code = "";
522
-        let type = "";
523
-        SM().then((ress1) => {
524
-          uni.showLoading({
525
-            title: "加载中",
526
-            mask: true,
527
-          });
528
-          //检验二维码的有效性
529
-          post("/dept/scanning", {
530
-            content: ress1,
531
-          }).then((result) => {
532
-            if (result.state == 200 || result.state == 201) {
533
-              let ress = result.code;
534
-              if (ress) {
535
-                if (
536
-                  data.gdState.value == "4" &&
537
-                  data.taskType.associationType.value == "inspect"
538
-                ) {
539
-                  list.code = ress; //其他
540
-                  type = "handleIns";
541
-                }
542
-                if (
543
-                  (data.taskType.associationType.value == "other" &&
544
-                    data.gdState.value == "4") ||
545
-                  data.gdState.value == "5"
546
-                ) {
547
-                  code = ress; //其他=终点
548
-                  type = "orderSign/" + code;
549
-                  list = ids;
550
-                  isKs = 1;
551
-                }
552
-                if (
553
-                  (data.gdState.value == "5" &&
554
-                    data.taskType.associationType.value == "inspect") ||
555
-                  data.taskType.associationType.value == "patientTransport"
556
-                ) {
557
-                  code = ress; //患者转运--起点
558
-                  type = "orderSign/" + code;
559
-                  list = ids;
560
-                  isKs = 1;
561
-                }
562
-                if (data.gdState.value == "8") {
563
-                  code = ress; //患者陪检--检查
564
-                  type = "orderSign/" + code;
565
-                  list = ids;
566
-                  isKs = 1;
567
-                }
568
-                if (
569
-                  data.gdState.value == "4" &&
570
-                  data.taskType.associationType.value == "patientTransport"
571
-                ) {
572
-                  list = {
573
-                    code: ress, //患者转运--检查
574
-                    ids: ids,
575
-                  };
576
-                  type = "handleTrans";
577
-                }
578
-                post("/workerOrder/" + type, list).then((res) => {
579
-                  uni.hideLoading();
580
-                  if (res) {
581
-                    if (res.status == 200) {
582
-                      if (
583
-                        data.gdState.value == "4" &&
584
-                        data.taskType.associationType.value == "other"
585
-                      ) {
586
-                        uni.navigateTo({
587
-                          url: `../scanning_code/scanning_code?type=${data.taskType.associationType.value}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}`,
588
-                        });
589
-                      }
590
-                      if (
591
-                        data.gdState.value == "4" &&
592
-                        data.taskType.associationType.value != "other"
593
-                      ) {
594
-                        uni.navigateTo({
595
-                          url: `../scanning_Result/scanning_Result?type=${
596
-                          data.taskType.associationType.value
597
-                        }&type1=${res.type}&id=${data.id}&deptCode=${
598
-                          list.code
599
-                        }&patient=${res.patient}&patientCode=${
600
-                          res.patientCode
601
-                        }&deptName=${res.deptName}&bedNum=${
602
-                          res.bedNum
603
-                        }&status=${res.status}&msg=${
604
-                          res.msg
605
-                        }&model=${encodeURIComponent(JSON.stringify(res))}`,
606
-                        });
607
-                      }
608
-                      if (data.gdState.value == "8") {
609
-                        uni.navigateTo({
610
-                          url: `../scanning_code/scanning_code?type=${data.taskType.associationType.value}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}`,
611
-                        });
612
-                      }
613
-                      if (data.gdState.value == "5") {
614
-                        uni.navigateTo({
615
-                          url: `../scanning_code/scanning_code?type=${data.taskType.associationType.value}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}`,
616
-                        });
617
-                      }
618
-                    } else {
619
-                      console.log(res, "扫描失败");
620
-                      if (res.type == "trans-ddd-1") {
621
-                        //起点科室扫描腕带码失败
622
-                        uni.navigateTo({
623
-                          url: `../scanning_Result/scanning_Result?type=${data.taskType.associationType.value}&type1=${res.type}&id=${data.id}&status=600&msg=${res.msg}`,
624
-                        });
625
-                      } else {
626
-                        uni.navigateTo({
627
-                          url: `../scanning_Result/scanning_Result?type=${
628
-                          data.taskType.associationType.value
629
-                        }&type1=${res.type}&id=${data.id}&status=600&msg=${
630
-                          res.msg
631
-                        }&isKs=${isKs}&model=${encodeURIComponent(
632
-                          JSON.stringify(res)
633
-                        )}`,
634
-                        });
635
-                      }
636
-                    }
637
-                  } else {
638
-                    uni.navigateTo({
639
-                      url: `../scanning_Result/scanning_Result?id=${data.id}&status=600&msg=扫码失败!请扫描正确的二维码!&isKs=${isKs}`,
640
-                    });
641
-                  }
642
-                });
643
-              }
644
-            } else {
645
-              uni.hideLoading();
646
-              uni.showToast({
647
-                icon: "none",
648
-                title: "请求失败!",
649
-              });
650
-            }
651
-          });
652
-        });
653
-      },
654
-      // 如果不是患者陪检或患者转运或其他
655
-      // 扫码
656
-      Scan_s(data) {
657
-        let ids = [];
658
-        let id = data.id;
659
-        ids.push(id);
660
-        let code = "";
661
-        SM().then((ress1) => {
662
-          uni.showLoading({
663
-            title: "加载中",
664
-            mask: true,
665
-          });
666
-          //检验二维码的有效性
667
-          post("/dept/scanning", {
668
-            content: ress1,
669
-          }).then((result) => {
670
-            if (result.state == 200 || result.state == 201) {
671
-              let ress = result.code;
672
-              if (ress) {
673
-                code = ress;
674
-                // 科室签到
675
-                post("/workerOrder/orderSign/" + code, ids).then((res) => {
676
-                  uni.hideLoading();
677
-                  if (res.status == 200) {
678
-                    // 跳转到扫描科室
679
-                    // type1: res.type, //type类型
680
-                    // id: data.id, //工单ID
681
-                    // deptCode: code, //二维码
682
-                    // dept: res.dept //科室名称
683
-                    uni.navigateTo({
684
-                      url: `../scanning_code/scanning_code?type=${data.taskType.associationType.value}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}`,
685
-                    });
686
-                  } else {
687
-                    uni.navigateTo({
688
-                      url: `../scanning_Result/scanning_Result?type=${data.taskType.associationType.value}&type1=${res.type}&id=${data.id}&status=600&msg=${res.msg}&isKs=1`,
689
-                    });
690
-                  }
691
-                });
692
-              }
693
-            } else {
694
-              uni.hideLoading();
695
-              uni.showToast({
696
-                icon: "none",
697
-                title: "请求失败!",
698
-              });
699
-            }
700
-          });
701
-        });
702
-      },
703 511
       //执行中列表数据获取
704 512
       executingOrders(idx) {
705
-        console.log(this.zxzData.length,this.totalNum)
513
+        console.log(this.zxzData.length, this.totalNum)
706 514
         if (this.zxzData.length == this.totalNum) {
707 515
           uni.showToast({
708 516
             icon: "none",

+ 7 - 0
pages/scanning_Result/scanning_Result.vue

@@ -73,6 +73,8 @@
73 73
     </view>
74 74
     <view class="Scanning_cont" v-if="res.status == 200 && (type == 'drugsBag' || type == 'jPBag')">
75 75
       <view v-if="type == 'drugsBag'"> 药包编码 : #{{ infoDATA.packid }} </view>
76
+      <view v-if="type == 'drugsBag' && accountObj && (queryObj.type1 === 'drug-ddd-2' || queryObj.type1 === 'drug-dsd-2')"> 交接人账号 : {{ accountObj.account }} </view>
77
+      <view v-if="type == 'drugsBag' && accountObj && (queryObj.type1 === 'drug-ddd-2' || queryObj.type1 === 'drug-dsd-2')"> 交接人姓名 : {{ accountObj.accountName }} </view>
76 78
       <view v-if="type == 'jPBag'">
77 79
         静配药包编码 : #{{ infoDATA.packid }}
78 80
       </view>
@@ -220,6 +222,8 @@
220 222
   export default {
221 223
     data() {
222 224
       return {
225
+        // 交接人信息
226
+        accountObj:undefined,
223 227
         // 完成扫描的id
224 228
         wcId: "",
225 229
         // 弹窗model
@@ -558,6 +562,9 @@
558 562
       } else if (options.model) {
559 563
         this.infoDATA = JSON.parse(options.model);
560 564
       }
565
+      if(options.accountObj && options.accountObj != "undefined"){
566
+        this.accountObj = JSON.parse(options.accountObj);
567
+      }
561 568
 
562 569
       this.dataId = options.id;
563 570
       this.RESData = options.resData;

+ 2 - 2
pages/scanning_all/scanning_all.vue

@@ -306,7 +306,7 @@ export default {
306 306
       clearTimeout(this.flagTimer);
307 307
       this.flagTimer = setTimeout(() => {
308 308
         this.flag = false;
309
-        let list = [];
309
+        let list = {};
310 310
         let type = "";
311 311
 
312 312
         if (this.userId.ids.length > 0) {
@@ -318,7 +318,7 @@ export default {
318 318
             this.tabType == "specimenPlan"
319 319
           ) {
320 320
             type = "orderSign/" + this.code;
321
-            list = this.userId.ids;
321
+            list = {ids:this.userId.ids};
322 322
             uni.showLoading({
323 323
               title: "加载中",
324 324
               mask: true,

+ 21 - 3
pages/scanning_code/scanning_code.vue

@@ -121,6 +121,14 @@
121 121
         </view>
122 122
       </view>
123 123
       <view class="page_item_foot">
124
+        <view class="page_item_foot_text" v-if="accountObj && (infoType === 'drug-ddd-1' || infoType === 'drug-dsd-1')">
125
+          <text class="text1">交接人账号</text>
126
+          <text class="text2">{{ accountObj.account }}</text>
127
+        </view>
128
+        <view class="page_item_foot_text" v-if="accountObj && (infoType === 'drug-ddd-1' || infoType === 'drug-dsd-1')">
129
+          <text class="text1">交接人姓名</text>
130
+          <text class="text2">{{ accountObj.accountName }}</text>
131
+        </view>
124 132
         <view class="page_item_foot_text">
125 133
           <text class="text1">状态</text>
126 134
           <text class="text2"
@@ -357,6 +365,8 @@
357 365
   export default {
358 366
     data() {
359 367
       return {
368
+        // 交接人信息
369
+        accountObj:undefined,
360 370
         // 完成工单的id
361 371
         wcId: "",
362 372
         // 弹窗model
@@ -408,6 +418,9 @@
408 418
                   this.infoDATA.taskType.associationType.value == "drugsBag"
409 419
                 ) {
410 420
                   postType = "handleDrugsAndJp";
421
+                  if(this.accountObj){
422
+                    data.handover = this.accountObj.accountId;
423
+                  }
411 424
                 }
412 425
                 if (this.infoDATA.taskType.associationType.value == "specimen") {
413 426
                   data["speCode"] = data.code;
@@ -463,7 +476,7 @@
463 476
                               this.queryObj.dept
464 477
                             }&id=${id}&model=${encodeURIComponent(
465 478
                               JSON.stringify(ress)
466
-                            )}`,
479
+                            )}&accountObj=${encodeURIComponent(JSON.stringify(this.accountObj))}`,
467 480
                             });
468 481
                             // ------------end------------
469 482
                           } else {
@@ -490,7 +503,7 @@
490 503
                           this.queryObj.dept
491 504
                         }&id=${id}&model=${encodeURIComponent(
492 505
                           JSON.stringify(ress)
493
-                        )}`,
506
+                        )}&accountObj=${encodeURIComponent(JSON.stringify(this.accountObj))}`,
494 507
                         });
495 508
                         // ------------end------------
496 509
                       }
@@ -704,6 +717,9 @@
704 717
     },
705 718
     onLoad(options) {
706 719
       console.log(options);
720
+      if(options.accountObj && options.accountObj != "undefined"){
721
+        this.accountObj = JSON.parse(options.accountObj);
722
+      }
707 723
       this.queryObj = options;
708 724
       let id = options.id;
709 725
       this.dataId = id; //工单ID
@@ -972,13 +988,15 @@
972 988
         .page_item_foot_text {
973 989
           font-size: 32rpx;
974 990
           margin-bottom: 20rpx;
991
+          display: flex;
992
+          justify-content: space-between;
993
+          align-items: center;
975 994
 
976 995
           .text1 {
977 996
             color: rgb(102, 102, 102);
978 997
           }
979 998
 
980 999
           .text2 {
981
-            float: right;
982 1000
             font-weight: 700;
983 1001
           }
984 1002
         }

+ 1 - 1
pages/scanning_ins/scanning_ins.vue

@@ -575,7 +575,7 @@
575 575
                     var ids = [];
576 576
                     ids.push(data.id);
577 577
                     type = "orderSign/" + ress;
578
-                    list = ids;
578
+                    list = {ids};
579 579
                     // 科室签到
580 580
                     post("/workerOrder/" + type, list).then((res) => {
581 581
                       uni.hideLoading();