Browse Source

药品工单增加查看业务信息

seimin 1 year ago
parent
commit
576e5792bc

+ 1 - 1
main.js

@@ -4,7 +4,7 @@ import App from './App'
4 4
 import wx from 'weixin-jsapi'
5 5
 // import VConsole from 'vconsole';
6 6
 // new VConsole();
7
-console.info('v2.4.24');
7
+console.info('v2.4.25');
8 8
 Vue.prototype.wx = wx //声明扫码
9 9
 Vue.prototype.audios = [] //待播放的语音集合
10 10
 // #endif

+ 9 - 0
pages.json

@@ -376,6 +376,15 @@
376 376
           "titleNView": false
377 377
         }
378 378
       }
379
+    }, {
380
+      "path": "pages/drugsBagHistory/drugsBagHistory",
381
+      "style": {
382
+        "h5": {
383
+          "titleNView": false
384
+        },
385
+        "enablePullDownRefresh": true
386
+      }
387
+
379 388
     }
380 389
   ],
381 390
   "globalStyle": {

+ 490 - 0
pages/drugsBagHistory/drugsBagHistory.vue

@@ -0,0 +1,490 @@
1
+<template>
2
+  <view class="pharmacyDetails">
3
+    <view class="pharmacyDetails_title">
4
+      <view class="pharmacyDetails_tab" :class="{ 'active': selectedLabelSlots === item.id }" v-for="item in tabs"
5
+        :key="item.id" @click="clickHandler(item.id)">
6
+        <view class="pharmacyDetails_label">
7
+          {{ item.label }}
8
+        </view>
9
+      </view>
10
+    </view>
11
+    <view class="page_item_wrap">
12
+      <view class="page_item">
13
+        <view class="page_item_top">
14
+          <view class="page_item_top-inner" v-show="selectedLabelSlots == 1">
15
+            <view class="page_item_top_L">
16
+              <text class="L_text">请领单:{{ infoDATA.packid }}</text>
17
+            </view>
18
+            <view class="page_item_top_R">
19
+              <text class="L_iocn">{{
20
+                infoDATA.drugsState && infoDATA.drugsState.name
21
+              }}</text>
22
+            </view>
23
+          </view>
24
+        </view>
25
+        <view class="page_item_cont" v-show="selectedLabelSlots == 1">
26
+          <view class="page_item_cont_B">
27
+            <view class="page_item_cont_title">
28
+              <text>记账时间</text>
29
+              <text class="text_big">
30
+                <text>{{ infoDATA.creatTime }}</text>
31
+              </text>
32
+            </view>
33
+          </view>
34
+          <view class="page_item_cont_C">
35
+            <view class="page_item_cont_title_C">
36
+              <text>请领科室</text>
37
+              <text class="text_big">
38
+                <text>{{ infoDATA.target && infoDATA.target.dept }}</text>
39
+              </text>
40
+            </view>
41
+          </view>
42
+        </view>
43
+        <scroll-view scroll-y class="page_item_cont" v-show="selectedLabelSlots == 2">
44
+          <view class="page_item_cont_C" v-for="(item,i) in queryProcessList" :key="i">
45
+            <view class="page_item_cont_title_C">
46
+              <text style="width: 5em;">{{item.operationTime}}</text>
47
+              <text style="flex: 1;">{{item.operationType?item.operationType.name:''}}</text>
48
+              <view class="text_big" style="text-align: center;max-width: 10em;flex: 1;">
49
+                <text>{{ item.username || '暂无' }}</text>
50
+                <view v-if="item.operatorAccount" style="white-space: nowrap;text-overflow: ellipsis;overflow: hidden;">({{ item.operatorAccount }})</view>
51
+              </view>
52
+            </view>
53
+          </view>
54
+        </scroll-view>
55
+        <view class="L"></view>
56
+        <view class="R"></view>
57
+      </view>
58
+      <view class="L-l"></view>
59
+      <view class="R-l"></view>
60
+    </view>
61
+    <button class="cube-toolbar-item" @click="goto()">
62
+      返回
63
+    </button>
64
+  </view>
65
+</template>
66
+<script>
67
+  import {
68
+    get,
69
+    post,
70
+    SM,
71
+    webHandle
72
+  } from "../../http/http.js";
73
+  export default {
74
+    data() {
75
+      return {
76
+        selectedLabelSlots: 1,
77
+        tabs: [{
78
+            id: 1,
79
+            label: "基础信息",
80
+          },
81
+          {
82
+            id: 2,
83
+            label: "流程信息",
84
+          }
85
+        ],
86
+        infoDATA: [],
87
+        isLoading: false,
88
+        isTLoading: false,
89
+        isOLoading: false,
90
+        loginUser: {}, //当前登录用户
91
+        queryProcessList: [],
92
+      };
93
+    },
94
+    methods: {
95
+      // 返回
96
+      goto() {
97
+        uni.navigateBack();
98
+      },
99
+      // tab切换
100
+      clickHandler(id) {
101
+        this.selectedLabelSlots = id;
102
+        if (id == 1) {
103
+          this.queryBase(this.queryObj);
104
+        } else if (id == 2) {
105
+          this.queryProcess(this.queryObj);
106
+        }
107
+      },
108
+      //基础信息查询
109
+      queryBase(options) {
110
+        //扫码进入详情
111
+        let qrcode = options.qrcode;
112
+        if (qrcode) {
113
+          uni.showLoading({
114
+            title: "加载中",
115
+            mask: true,
116
+          });
117
+          post("/drugsBag/getDrugsBagByQr", {
118
+            qrcode,
119
+          }).then((result) => {
120
+            uni.hideLoading();
121
+            if (result.state == 200) {
122
+              this.infoDATA = result.result;
123
+              if (this.loginUser.dept.id != this.infoDATA.launch.id) {
124
+                uni.showModal({
125
+                  title: '提示',
126
+                  content: "您现在所在的科室是【" + this.loginUser.dept.dept + "】,药包所在的科室是【" + this.infoDATA.launch.dept +
127
+                    "】,您不能进行操作",
128
+                  showCancel: false,
129
+                  success: function(res) {
130
+                    if (res.confirm) {
131
+                      console.log('用户点击确定');
132
+                    } else if (res.cancel) {
133
+                      console.log('用户点击取消');
134
+                    }
135
+                  }
136
+                });
137
+              }
138
+            } else {
139
+              uni.showToast({
140
+                icon: "none",
141
+                title: "请求失败!",
142
+              });
143
+            }
144
+          });
145
+        }
146
+        // 点击列表进入详情
147
+        let id = options.id;
148
+        if (id) {
149
+          uni.showLoading({
150
+            title: "加载中",
151
+            mask: true,
152
+          });
153
+          get("/api/fetchData/drugsBag/" + id).then((res) => {
154
+            uni.hideLoading();
155
+            if (res.status == 200) {
156
+              this.infoDATA = res.data;
157
+              if (this.loginUser.dept.id != this.infoDATA.launch.id) {
158
+                uni.showModal({
159
+                  title: '提示',
160
+                  content: "您现在所在的科室是【" + this.loginUser.dept.dept + "】,药包所在的科室是【" + this.infoDATA.launch.dept +
161
+                    "】,您不能进行操作",
162
+                  showCancel: false,
163
+                  success: function(res) {
164
+                    if (res.confirm) {
165
+                      console.log('用户点击确定');
166
+                    } else if (res.cancel) {
167
+                      console.log('用户点击取消');
168
+                    }
169
+                  }
170
+                });
171
+              }
172
+            } else {
173
+              uni.showToast({
174
+                icon: "none",
175
+                title: "请求失败!",
176
+              });
177
+            }
178
+          });
179
+        }
180
+      },
181
+      // 流程信息查询
182
+      queryProcess(options) {
183
+        //扫码进入详情
184
+        let qrcode = options.qrcode;
185
+        if (qrcode) {
186
+          uni.showLoading({
187
+            title: "加载中",
188
+            mask: true,
189
+          });
190
+          let postData = {
191
+            idx: 0,
192
+            sum: 9999,
193
+            drugsBagOperationLog: {
194
+              qrcode,
195
+              hosId: this.loginUser.currentHospital.id
196
+            }
197
+          }
198
+          post("/simple/data/fetchDataList/drugsBagOperationLog", postData).then((result) => {
199
+            uni.hideLoading();
200
+            if (result.status == 200) {
201
+              result.list.forEach(v => {
202
+                if (v.operationTime) {
203
+                  v.operationTime = (new Date(v.operationTime)).Format("MM-dd hh:mm:ss");
204
+                }
205
+              });
206
+              this.queryProcessList = result.list;
207
+            } else {
208
+              uni.showToast({
209
+                icon: "none",
210
+                title: "请求失败!",
211
+              });
212
+            }
213
+          });
214
+        }
215
+        // 点击列表进入详情
216
+        let packid = options.packid;
217
+        if (packid) {
218
+          uni.showLoading({
219
+            title: "加载中",
220
+            mask: true,
221
+          });
222
+          let postData = {
223
+            idx: 0,
224
+            sum: 9999,
225
+            drugsBagOperationLog: {
226
+              packid: options.packid,
227
+              hosId: this.loginUser.currentHospital.id
228
+            }
229
+          }
230
+          post("/simple/data/fetchDataList/drugsBagOperationLog", postData).then((res) => {
231
+            uni.hideLoading();
232
+            if (res.status == 200) {
233
+              res.list.forEach(v => {
234
+                if (v.operationTime) {
235
+                  v.operationTime = (new Date(v.operationTime)).Format("MM-dd hh:mm:ss");
236
+                }
237
+              });
238
+              this.queryProcessList = res.list;
239
+            } else {
240
+              uni.showToast({
241
+                icon: "none",
242
+                title: "请求失败!",
243
+              });
244
+            }
245
+          });
246
+        }
247
+      }
248
+    },
249
+    onLoad(options) {
250
+      this.loginUser = uni.getStorageSync("userData").user;
251
+      console.log(this.loginUser, 'loginUserloginUser')
252
+      // #ifdef APP-PLUS
253
+      webHandle("no", "app");
254
+      // #endif
255
+      // #ifdef H5
256
+      webHandle("no", "wx");
257
+      // #endif
258
+      this.queryObj = options;
259
+      this.queryBase(this.queryObj);
260
+    },
261
+  };
262
+</script>
263
+<style lang="less">
264
+  .pharmacyDetails {
265
+    background-color: rgb(249, 250, 251);
266
+    padding-top: 32rpx;
267
+
268
+    .pharmacyDetails_title {
269
+      height: 100rpx;
270
+      display: flex;
271
+      align-items: center;
272
+      background-color: #fff;
273
+
274
+      .pharmacyDetails_tab {
275
+        flex: 1;
276
+        display: flex;
277
+        align-items: center;
278
+
279
+        .pharmacyDetails_label {
280
+          display: flex;
281
+          justify-content: center;
282
+          align-items: center;
283
+          font-size: 40rpx;
284
+          width: 100%;
285
+          height: 66rpx;
286
+          border-radius: 32rpx;
287
+          color: #666;
288
+        }
289
+
290
+        &.active {
291
+          .pharmacyDetails_label {
292
+            color: #333;
293
+            background-color: #e5e9ed;
294
+          }
295
+        }
296
+      }
297
+    }
298
+
299
+    .page_item_wrap {
300
+      position: relative;
301
+      margin-top: 32rpx;
302
+
303
+      .page_item {
304
+        margin-top: 16rpx;
305
+        margin-bottom: 124rpx;
306
+        background: #fff;
307
+        border-radius: 8rpx;
308
+        margin: 0 20rpx;
309
+        border: 2rpx solid #e5e9ed;
310
+        position: relative;
311
+        overflow: hidden;
312
+        padding: 0 16rpx;
313
+
314
+        .L {
315
+          width: 40rpx;
316
+          height: 40rpx;
317
+          border-radius: 50%;
318
+          background: #f9fafb;
319
+          position: absolute;
320
+          left: -20rpx;
321
+          top: 68rpx;
322
+          border: 2rpx solid #e5e9ed;
323
+        }
324
+
325
+        .R {
326
+          width: 40rpx;
327
+          height: 40rpx;
328
+          border-radius: 50%;
329
+          background: #f9fafb;
330
+          position: absolute;
331
+          float: right;
332
+          right: -20rpx;
333
+          top: 68rpx;
334
+          border: 2rpx solid #e5e9ed;
335
+        }
336
+
337
+        .page_item_top {
338
+          height: 88rpx;
339
+          border-bottom: 2rpx dashed #e5e9ed;
340
+          padding: 0 16rpx;
341
+
342
+          .page_item_top-inner {
343
+            display: flex;
344
+            justify-content: space-between;
345
+            align-items: center;
346
+            height: 100%;
347
+
348
+            .page_item_top_L {
349
+              .L_text {
350
+                font-size: 32rpx;
351
+                font-weight: 700;
352
+              }
353
+            }
354
+
355
+            .page_item_top_R {
356
+              font-size: 32rpx;
357
+
358
+              .L_iocn {
359
+                color: rgb(7, 134, 60);
360
+                font-size: 36rpx;
361
+                font-weight: 700;
362
+              }
363
+            }
364
+          }
365
+        }
366
+
367
+        .page_item_cont {
368
+          box-sizing: border-box;
369
+          min-height: 180rpx;
370
+          max-height: calc(100vh - 534rpx);
371
+          padding: 0 16rpx;
372
+          text-align: left;
373
+          position: relative;
374
+
375
+          .text_big {
376
+            font-size: 32rpx;
377
+            font-weight: 700;
378
+
379
+            text {
380
+              font-weight: 700;
381
+              line-height: 1.5;
382
+            }
383
+          }
384
+
385
+          .line {
386
+            height: 20rpx;
387
+            width: 2rpx;
388
+            border-left: 2rpx solid #e5e9ed;
389
+            position: absolute;
390
+            top: 82rpx;
391
+            left: 40rpx;
392
+          }
393
+
394
+          .page_item_cont_T {
395
+            padding-top: 28rpx;
396
+            font-size: 28rpx;
397
+
398
+            .page_item_cont_title {
399
+              height: 100%;
400
+              font-size: 32rpx;
401
+              display: flex;
402
+              justify-content: space-between;
403
+            }
404
+          }
405
+
406
+          .page_item_cont_B {
407
+            padding-top: 28rpx;
408
+            margin-bottom: 28rpx;
409
+
410
+            .page_item_cont_title {
411
+              font-size: 32rpx;
412
+              display: flex;
413
+              justify-content: space-between;
414
+              align-items: center;
415
+            }
416
+          }
417
+
418
+          .page_item_cont_C {
419
+            margin-top: 14rpx;
420
+            margin-bottom: 14rpx;
421
+
422
+            .page_item_cont_title_C {
423
+              font-size: 32rpx;
424
+              display: flex;
425
+              justify-content: space-between;
426
+              align-items: center;
427
+            }
428
+          }
429
+
430
+          #infos {
431
+            display: none;
432
+          }
433
+        }
434
+      }
435
+
436
+      .L-l {
437
+        width: 2rpx;
438
+        height: 40rpx;
439
+        background: #f9fafb;
440
+        position: absolute;
441
+        left: 20rpx;
442
+        top: 72rpx;
443
+      }
444
+
445
+      .R-l {
446
+        width: 2rpx;
447
+        height: 40rpx;
448
+        background: #f9fafb;
449
+        position: absolute;
450
+        right: 20rpx;
451
+        top: 72rpx;
452
+      }
453
+    }
454
+
455
+    .cube-toolbar-item {
456
+      width: 710rpx;
457
+      height: 68rpx;
458
+      line-height: 68rpx;
459
+      position: fixed;
460
+      left: 20rpx;
461
+      bottom: 160rpx;
462
+      border-radius: 8rpx;
463
+      background: linear-gradient(to right, #72c172, #3bb197);
464
+      font-size: 36rpx;
465
+      color: #fff;
466
+      text-align: center;
467
+    }
468
+
469
+    .btn-wrap {
470
+      width: 100%;
471
+      display: flex;
472
+      justify-content: space-between;
473
+      position: fixed;
474
+      left: 0;
475
+      bottom: 160rpx;
476
+    }
477
+
478
+    .cube-toolbar-item1 {
479
+      flex: 1;
480
+      height: 68rpx;
481
+      line-height: 68rpx;
482
+      border-radius: 8rpx;
483
+      margin: 0 1%;
484
+      background: linear-gradient(to right, #72c172, #3bb197);
485
+      font-size: 36rpx;
486
+      color: #fff;
487
+      text-align: center;
488
+    }
489
+  }
490
+</style>

+ 1 - 0
pages/pharmacyDetails/pharmacyDetails.vue

@@ -244,6 +244,7 @@
244 244
         });
245 245
         post("/drugsBag/replaceOperator", {
246 246
           packId: this.infoDATA.packid,
247
+          drugsBagId: this.infoDATA.id,
247 248
         }).then((result) => {
248 249
           this.isTLoading = false;
249 250
           uni.hideLoading();

+ 7 - 0
pages/receipt_infopage/receipt_infopage.vue

@@ -387,6 +387,7 @@
387 387
           infoDATA.taskType.associationType.value == 'specimen' ||
388 388
           infoDATA.taskType.associationType.value == 'specimenPlan'
389 389
         " hover-class="seimin-btn-hover">查看标本</view>
390
+      <view class="btn3" @click="viewDrugsBag(infoDATA)" v-if="infoDATA.taskType.associationType.value == 'drugsBag'" hover-class="seimin-btn-hover">查看业务流程</view>
390 391
       <view class="btn3" @click="viewBlood(infoDATA)" v-if="infoDATA.taskType.associationType.value == 'ordinary' && infoDATA.taskType.ordinaryField.value == 'blood'" hover-class="seimin-btn-hover">查看血制品</view>
391 392
       <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>
392 393
     </view>
@@ -477,6 +478,12 @@
477 478
           url: `../specimenDetail/specimenDetail?workOrderId=${workOrder.id}&associationTypeValue=${workOrder.taskType.associationType.value}`,
478 479
         });
479 480
       },
481
+      // 查看药品业务数据
482
+      viewDrugsBag(workOrder) {
483
+        uni.navigateTo({
484
+          url: `../drugsBagHistory/drugsBagHistory?id=${workOrder.drugs.id}&packid=${workOrder.drugs.packid}`,
485
+        });
486
+      },
480 487
       // 查看血制品
481 488
       viewBlood(workOrder) {
482 489
         uni.showLoading({