Browse Source

血制品二次整改

seimin 2 years ago
parent
commit
6c387622ad

+ 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.16');
7
+console.info('v2.4.17');
8 8
 Vue.prototype.wx = wx //声明扫码
9 9
 Vue.prototype.audios = [] //待播放的语音集合
10 10
 // #endif

+ 7 - 0
pages.json

@@ -361,6 +361,13 @@
361 361
           "titleNView": false
362 362
         }
363 363
       }
364
+    }, {
365
+      "path": "pages/searchMuti/searchMuti",
366
+      "style": {
367
+        "h5": {
368
+          "titleNView": false
369
+        }
370
+      }
364 371
     }
365 372
   ],
366 373
   "globalStyle": {

+ 44 - 8
pages/check_blood/check_blood.vue

@@ -36,7 +36,7 @@
36 36
       </view>
37 37
     </block>
38 38
     <view class="foot_btn_spe">
39
-      <view class="btn1" @click="Scanning_again()"> 继续扫描 </view>
39
+      <view class="btn1" @click="Scanning_again()" v-if="configs.checkType.value == 1"> 继续扫描 </view>
40 40
       <view class="btn3" @click="checkComplete()">核对完成</view>
41 41
     </view>
42 42
   </view>
@@ -52,6 +52,8 @@
52 52
   export default {
53 53
     data() {
54 54
       return {
55
+        configs: {},
56
+        hosId: null,
55 57
         queryObj: {},
56 58
         SMFlag: true,
57 59
         // 接收数量
@@ -103,7 +105,35 @@
103 105
           "key": "blood_trans_type"
104 106
         }).then(res => {
105 107
           this.bloodTypes = res;
108
+          this.getTaskConfig();
109
+        })
110
+      },
111
+      //获取血制品配置页面
112
+      getTaskConfig(){
113
+        let postData = {
114
+            "idx": 0,
115
+            "sum": 1,
116
+            "taskTypeConfig": {
117
+                "taskTypeDTO": {
118
+                    "hosId": {
119
+                        "id": this.hosId
120
+                    },
121
+                    "ordinaryField": {
122
+                        "value": "blood"
123
+                    }
124
+                }
125
+            }
126
+        };
127
+        post('/simple/data/fetchDataList/taskTypeConfig', postData).then(result => {
106 128
           this.getInfo();
129
+          if(result.status == 200){
130
+            this.configs = result.list[0] || {};
131
+          }else{
132
+            uni.showToast({
133
+              icon: "none",
134
+              title: "请求失败!",
135
+            });
136
+          }
107 137
         })
108 138
       },
109 139
       //获取页面信息
@@ -207,7 +237,15 @@
207 237
                 title: "加载中",
208 238
                 mask: true,
209 239
               });
210
-              post("/transflow/checkComplete", postData).then((ress) => {
240
+              let postName = '';
241
+              if(this.configs.checkType.value == 1){
242
+                // 起点终点科室按照血制品类型进行核对
243
+                postName = '/transflow/checkComplete';
244
+              }else if(this.configs.checkType.value == 2){
245
+                // 终点科室无需扫码进行核对
246
+                postName = '/transflow/complete';
247
+              }
248
+              post(postName, postData).then((ress) => {
211 249
                 uni.hideLoading();
212 250
                 if (ress.state == 200) {
213 251
                   uni.navigateTo({
@@ -236,6 +274,9 @@
236 274
     onShow() {
237 275
       this.SMFlag = true;
238 276
     },
277
+    created(){
278
+      this.hosId = uni.getStorageSync('userData').user.currentHospital.id;
279
+    }
239 280
   }
240 281
 </script>
241 282
 
@@ -346,14 +387,9 @@
346 387
     justify-content: space-between;
347 388
     flex-wrap: wrap;
348 389
   
349
-    &::after {
350
-      content: '';
351
-      flex: 1;
352
-    }
353
-  
354 390
     view {
355 391
       height: 88rpx;
356
-      width: 48%;
392
+      flex: 1;
357 393
       margin: 0 1%;
358 394
       background-image: linear-gradient(to right, #72c172, #3bb197);
359 395
       color: #fff;

+ 49 - 2
pages/scanning_all/scanning_all.vue

@@ -184,6 +184,7 @@
184 184
   export default {
185 185
     data() {
186 186
       return {
187
+        hosId: null,
187 188
         currentCode: '', //当前小扫描的科室二维码
188 189
         SMFlag: true,
189 190
         // 填写交接人账号弹窗model
@@ -391,9 +392,52 @@
391 392
           if (this.userId.ids.length > 0) {
392 393
             if (this.tabType == "blood") {
393 394
               // 万能交接服务的血制品
394
-              uni.navigateTo({
395
-                url: `../signIn_blood/signIn_blood?deptName=${this.deptName}&orderId=${this.userId.ids[0]}`,
395
+              let postData = {
396
+                  "idx": 0,
397
+                  "sum": 1,
398
+                  "taskTypeConfig": {
399
+                      "taskTypeDTO": {
400
+                          "hosId": {
401
+                              "id": this.hosId
402
+                          },
403
+                          "ordinaryField": {
404
+                              "value": "blood"
405
+                          }
406
+                      }
407
+                  }
408
+              };
409
+              uni.showLoading({
410
+                title: "加载中",
411
+                mask: true,
396 412
               });
413
+              post("/simple/data/fetchDataList/taskTypeConfig", postData).then((result) => {
414
+                uni.hideLoading();
415
+                if(result.status == 200){
416
+                  if(result.list[0].checkType){
417
+                    if(result.list[0].checkType.value == 1){
418
+                      // 起点终点科室按照血制品类型进行核对
419
+                      uni.navigateTo({
420
+                        url: `../signIn_blood/signIn_blood?deptName=${this.deptName}&orderId=${this.userId.ids[0]}`,
421
+                      });
422
+                    }else if(result.list[0].checkType.value == 2){
423
+                      // 终点科室无需扫码进行核对
424
+                      uni.navigateTo({
425
+                        url: `../check_blood/check_blood?orderId=${this.userId.ids[0]}`,
426
+                      });
427
+                    }
428
+                  }else{
429
+                    uni.showToast({
430
+                      icon: "none",
431
+                      title: "请前往血制品配置页面配置核对方式!",
432
+                    });
433
+                  }
434
+                }else{
435
+                  uni.showToast({
436
+                    icon: "none",
437
+                    title: "请求失败!",
438
+                  });
439
+                }
440
+              })
397 441
             }else if (
398 442
               this.tabType == "drugsBag" ||
399 443
               this.tabType == "jPBag" ||
@@ -696,6 +740,9 @@
696 740
       // 页面关闭后清空数据
697 741
       this.animationData = {};
698 742
     },
743
+    created(){
744
+      this.hosId = uni.getStorageSync('userData').user.currentHospital.id;
745
+    }
699 746
   };
700 747
 </script>
701 748
 <style lang="less">

+ 2 - 0
pages/search/search.vue

@@ -89,6 +89,7 @@
89 89
       }
90 90
     },
91 91
     onLoad(options) {
92
+      console.log(options, 'options');
92 93
       this.type = options.type;
93 94
       if (this.type == "setDept") {
94 95
         this.configName = options.configName;
@@ -311,6 +312,7 @@
311 312
           } else if (this.type == "setDept") {
312 313
             //上班添加科室进入
313 314
             let obj = uni.getStorageSync("setDepts");
315
+            console.log(arr,obj)
314 316
             if (obj) {
315 317
               let i = obj.findIndex((item) => item.id == arr[0].id);
316 318
               if (i < 0) {

+ 374 - 0
pages/searchMuti/searchMuti.vue

@@ -0,0 +1,374 @@
1
+<template>
2
+  <view class="content">
3
+    <view class="search-keyword">
4
+      <scroll-view class="keyword-list-box" scroll-y>
5
+        <checkbox-group @change="checkboxChange">
6
+          <label v-for="(row, index) in dataList" :key="row.id">
7
+            <view class="keyword-entry" hover-class="keyword-entry-tap">
8
+              <view class="keyword-text">
9
+                <checkbox color="#42b983" :value="row.id" :checked="row.checked" />
10
+                <rich-text :nodes="row.buildingName"></rich-text>
11
+              </view>
12
+              <view class="keyword-img">
13
+                <image src="/static/HM-search/back.png"></image>
14
+              </view>
15
+            </view>
16
+          </label>
17
+        </checkbox-group>
18
+      </scroll-view>
19
+    </view>
20
+    <view class="toolbar" @click="determine()" hover-class="seimin-btn-hover">
21
+      <text class="toolbar-sao">确定</text>
22
+    </view>
23
+    <!-- 弹窗 -->
24
+    <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content" @know="know" :operate="models.operate"></showModel>
25
+  </view>
26
+</template>
27
+
28
+<script>
29
+  import {
30
+    post,
31
+    webHandle
32
+  } from "../../http/http.js";
33
+  export default {
34
+    data() {
35
+      return {
36
+        type: "", //进入该页面的类型
37
+        configName: "", //快速组合名称
38
+        id: "", //快速组合id
39
+        changedept: 0, //是否从列表过来的切换负责科室
40
+        hosId: "",
41
+        dataList: [],
42
+        //系统设置的科室类型
43
+        sysDeptType: 0,
44
+        // 弹窗model
45
+        models: {
46
+          disjunctor: false,
47
+        },
48
+      };
49
+    },
50
+    onLoad(options) {
51
+      this.hosId = uni.getStorageSync("userData").user.currentHospital.id;
52
+      console.log(options, 'options');
53
+      this.type = options.type;
54
+      if (this.type == "setBuilding") {
55
+        this.configName = options.configName;
56
+        this.id = options.id;
57
+        this.changedept = options.changedept;
58
+        this.getSysDeptType();
59
+      } else {
60
+        this.getSysDeptType();
61
+      }
62
+      // this.init();
63
+      // #ifdef APP-PLUS
64
+      webHandle("no", "app");
65
+      // #endif
66
+      // #ifdef H5
67
+      webHandle("no", "wx");
68
+      // #endif
69
+    },
70
+    methods: {
71
+      //知道了
72
+      know() {
73
+        this.models.disjunctor = false;
74
+      },
75
+      // 确认
76
+      determine() {
77
+        console.log(this.dataList);
78
+        const dataList = this.dataList.filter(v => v.checked);
79
+        if (dataList.length === 0) {
80
+          this.models = {
81
+            disjunctor: true,
82
+            title: "提示",
83
+            content: "请选择至少一个楼栋",
84
+            icon: "warn",
85
+            operate: {
86
+              know: "知道了",
87
+            },
88
+          };
89
+        } else {
90
+          let postData = {
91
+            "idx": 0,
92
+            "sum": 1000,
93
+            department: {
94
+              hospital: {id: this.hosId},
95
+              type: {id: this.sysDeptType},
96
+              buildIds: dataList.map(v => v.id).toString()
97
+            }
98
+          }
99
+          uni.showLoading({
100
+            title: "加载中",
101
+          });
102
+          post("/data/fetchDataList/department", postData).then((res) => {
103
+            uni.hideLoading();
104
+            if (res.status == 200) {
105
+              let obj = uni.getStorageSync("setDepts");
106
+              console.log(res.list,obj)
107
+              if (obj) {
108
+                let list = [...res.list, ...obj];
109
+                let newArr = [];
110
+                let obj1 = {};
111
+                for (let i = 0; i < list.length; i++) {
112
+                  if (!obj1[list[i].id]) {
113
+                    newArr.push(list[i]);
114
+                    obj1[list[i].id] = true;
115
+                  }
116
+                }
117
+                console.log(newArr);
118
+                uni.setStorageSync("setDepts", newArr);
119
+              } else {
120
+                uni.setStorageSync("setDepts", res.list);
121
+              }
122
+              uni.navigateTo({
123
+                url: `../setDept/setDept?configName=${this.configName}&id=${this.id}&changedept=${this.changedept}`,//不知道
124
+              });
125
+            } else {
126
+              uni.showToast({
127
+                icon: "none",
128
+                title: "请求失败!",
129
+              });
130
+            }
131
+          })
132
+        }
133
+      },
134
+      // 选择楼栋
135
+      checkboxChange: function(e) {
136
+        var dataList = this.dataList,
137
+            values = e.detail.value;
138
+        for (var i = 0, lenI = dataList.length; i < lenI; ++i) {
139
+          const item = dataList[i]
140
+          if (values.includes(item.id)) {
141
+            this.$set(item, 'checked', true)
142
+          } else {
143
+            this.$set(item, 'checked', false)
144
+          }
145
+        }
146
+      },
147
+      //获取系统设置的科室类型
148
+      getSysDeptType() {
149
+        uni.showLoading({
150
+          title: "加载中",
151
+        });
152
+        let postData = {
153
+          "idx": 0,
154
+          "sum": 1,
155
+          systemConfiguration: {
156
+            keyconfig: "busiViewDeptId"
157
+          }
158
+        }
159
+        post("/simple/data/fetchDataList/systemConfiguration", postData).then((res) => {
160
+          this.getBuildings();
161
+          if (res.status == 200) {
162
+            this.sysDeptType = res.list[0].valueconfig
163
+          } else {
164
+            uni.showToast({
165
+              icon: "none",
166
+              title: "请求失败!",
167
+            });
168
+          }
169
+        })
170
+      },
171
+      //获取楼栋列表
172
+      getBuildings() {
173
+        let postData = {
174
+          "idx": 0,
175
+          "sum": 100,
176
+          building: {
177
+            hosId: this.hosId
178
+          }
179
+        }
180
+        post("/simple/data/fetchDataList/building", postData).then((res) => {
181
+          uni.hideLoading();
182
+          if (res.status == 200) {
183
+            this.dataList = res.list || [];
184
+          } else {
185
+            uni.showToast({
186
+              icon: "none",
187
+              title: "请求失败!",
188
+            });
189
+          }
190
+        })
191
+      },
192
+    },
193
+  };
194
+</script>
195
+<style scoped lang="less">
196
+  view {
197
+    display: block;
198
+  }
199
+  // 底部
200
+  .toolbar {
201
+    position: fixed;
202
+    left: 0;
203
+    right: 0;
204
+    bottom: 0;
205
+    z-index: 9999;
206
+    height: 88rpx;
207
+    display: flex;
208
+    justify-content: center;
209
+    align-items: center;
210
+    box-sizing: border-box;
211
+    border-radius: 4rpx;
212
+    box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.24);
213
+    background-color: #e5e9ed;
214
+  
215
+    .toolbar-sao {
216
+      font-size: 36rpx;
217
+      color: #49b856;
218
+    }
219
+  }
220
+
221
+  .search-box {
222
+    width: 95%;
223
+    background-color: rgb(242, 242, 242);
224
+    padding: 15upx 2.5%;
225
+    display: flex;
226
+    justify-content: space-between;
227
+    position: sticky;
228
+    top: 0;
229
+  }
230
+
231
+  .search-box .mSearch-input-box {
232
+    width: 100%;
233
+  }
234
+
235
+  .search-box .input-box {
236
+    width: 85%;
237
+    flex-shrink: 1;
238
+    display: flex;
239
+    justify-content: center;
240
+    align-items: center;
241
+  }
242
+
243
+  .search-box .search-btn {
244
+    width: 15%;
245
+    margin: 0 0 0 2%;
246
+    display: flex;
247
+    justify-content: center;
248
+    align-items: center;
249
+    flex-shrink: 0;
250
+    font-size: 28upx;
251
+    color: #fff;
252
+    background: linear-gradient(to right, #ff9801, #ff570a);
253
+    border-radius: 60upx;
254
+  }
255
+
256
+  .search-box .input-box>input {
257
+    width: 100%;
258
+    height: 60upx;
259
+    font-size: 32upx;
260
+    border: 0;
261
+    border-radius: 60upx;
262
+    -webkit-appearance: none;
263
+    -moz-appearance: none;
264
+    appearance: none;
265
+    padding: 0 3%;
266
+    margin: 0;
267
+    background-color: #ffffff;
268
+  }
269
+
270
+  .placeholder-class {
271
+    color: #9e9e9e;
272
+  }
273
+
274
+  .search-keyword {
275
+    width: 100%;
276
+    background-color: rgb(242, 242, 242);
277
+  }
278
+
279
+  .keyword-list-box {
280
+    height: calc(100vh - 110upx);
281
+    padding-top: 10upx;
282
+    border-radius: 20upx 20upx 0 0;
283
+    background-color: #fff;
284
+  }
285
+
286
+  .keyword-entry-tap {
287
+    background-color: #eee;
288
+  }
289
+
290
+  .keyword-entry {
291
+    width: 94%;
292
+    height: 80upx;
293
+    margin: 0 3%;
294
+    font-size: 30upx;
295
+    color: #333;
296
+    display: flex;
297
+    justify-content: space-between;
298
+    align-items: center;
299
+    border-bottom: solid 1upx #e7e7e7;
300
+  }
301
+
302
+  .keyword-entry image {
303
+    width: 60upx;
304
+    height: 60upx;
305
+  }
306
+
307
+  .keyword-entry .keyword-text,
308
+  .keyword-entry .keyword-img {
309
+    height: 80upx;
310
+    display: flex;
311
+    align-items: center;
312
+  }
313
+
314
+  .keyword-entry .keyword-text {
315
+    width: 90%;
316
+  }
317
+
318
+  .keyword-entry .keyword-img {
319
+    width: 10%;
320
+    justify-content: center;
321
+  }
322
+
323
+  .keyword-box {
324
+    height: calc(100vh - 110upx);
325
+    border-radius: 20upx 20upx 0 0;
326
+    background-color: #fff;
327
+  }
328
+
329
+  .keyword-box .keyword-block {
330
+    padding: 10upx 0;
331
+  }
332
+
333
+  .keyword-box .keyword-block .keyword-list-header {
334
+    width: 94%;
335
+    padding: 10upx 3%;
336
+    font-size: 27upx;
337
+    color: #333;
338
+    display: flex;
339
+    justify-content: space-between;
340
+  }
341
+
342
+  .keyword-box .keyword-block .keyword-list-header image {
343
+    width: 40upx;
344
+    height: 40upx;
345
+  }
346
+
347
+  .keyword-box .keyword-block .keyword {
348
+    width: 94%;
349
+    padding: 3px 3%;
350
+    display: flex;
351
+    flex-flow: wrap;
352
+    justify-content: flex-start;
353
+  }
354
+
355
+  .keyword-box .keyword-block .hide-hot-tis {
356
+    display: flex;
357
+    justify-content: center;
358
+    font-size: 28upx;
359
+    color: #6b6b6b;
360
+  }
361
+
362
+  .keyword-box .keyword-block .keyword>view {
363
+    display: flex;
364
+    justify-content: center;
365
+    align-items: center;
366
+    border-radius: 60upx;
367
+    padding: 0 20upx;
368
+    margin: 10upx 20upx 10upx 0;
369
+    height: 60upx;
370
+    font-size: 28upx;
371
+    background-color: rgb(242, 242, 242);
372
+    color: #6b6b6b;
373
+  }
374
+</style>

+ 23 - 3
pages/setDept/setDept.vue

@@ -2,10 +2,15 @@
2 2
   <view class="setDept">
3 3
     <view class="page_tab">
4 4
       <view class="page_tab_bar active">
5
-        <view class="tab_dept">{{ configName
6
-          }}<button type="default" size="mini" class="addDept" @click="addDeptClick">
5
+        <view class="tab_dept">
6
+          {{ configName}}
7
+          <button type="default" size="mini" class="addDept" @click="addDeptClick">
7 8
             添加科室
8
-          </button></view>
9
+          </button>
10
+          <button type="default" size="mini" class="addBuilding" @click="addBuildingClick">
11
+            楼栋选择
12
+          </button>
13
+        </view>
9 14
       </view>
10 15
     </view>
11 16
     <view v-if="zxzData.length == 0" class="zwsj">
@@ -91,6 +96,12 @@
91 96
           url: `../search/search?type=setDept&configName=${this.configName}&id=${this.id}&changedept=${this.changedept}`,
92 97
         });
93 98
       },
99
+      // 楼栋选择
100
+      addBuildingClick() {
101
+        uni.navigateTo({
102
+          url: `../searchMuti/searchMuti?type=setBuilding&configName=${this.configName}&id=${this.id}&changedept=${this.changedept}`,
103
+        });
104
+      },
94 105
       // 删除科室
95 106
       deleteDept(id) {
96 107
         this.delId = id;
@@ -351,6 +362,15 @@
351 362
             padding: 0 0.5em;
352 363
             line-height: 2;
353 364
           }
365
+          .addBuilding{
366
+            white-space: nowrap;
367
+            margin: 0;
368
+            position: absolute;
369
+            top: 50%;
370
+            transform: translate(105%, -50%);
371
+            padding: 0 0.5em;
372
+            line-height: 2;
373
+          }
354 374
         }
355 375
 
356 376
         &.active {