Browse Source

被服洗涤

seimin 1 year ago
parent
commit
e29b192eb3

+ 3 - 7
components/selectNum/selectNum.vue

@@ -13,7 +13,7 @@
13 13
             {{dataName}}:
14 14
           </view>
15 15
           <view class="uni-list-cell-db">
16
-            <input class="uni-input" auto-focus="true" placeholder="请填写数量" type="number" v-model="num" @input="onKeyInput" />
16
+            <input class="uni-input" focus placeholder="请填写数量" type="number" v-model="num" @input="onKeyInput" />
17 17
           </view>
18 18
         </view>
19 19
       </view>
@@ -75,11 +75,7 @@
75 75
       },
76 76
       // 确定
77 77
       ok() {
78
-        let e = {};
79
-        if (this.num) {
80
-          e.num = this.num;
81
-        }
82
-        this.$emit("ok", e);
78
+        this.$emit("ok", {num: this.num || 0});
83 79
       },
84 80
       // 取消
85 81
       cancel() {
@@ -88,7 +84,7 @@
88 84
     },
89 85
     created() {
90 86
       this.hosId = uni.getStorageSync('userData').user.currentHospital.id;
91
-    }
87
+    },
92 88
   };
93 89
 </script>
94 90
 

+ 14 - 1
pages.json

@@ -490,7 +490,20 @@
490 490
           "titleNView": false
491 491
         }
492 492
       }
493
-
493
+    }, {
494
+      "path": "pages/quiltWashing/quiltWashingException/quiltWashingException",
495
+      "style": {
496
+        "h5": {
497
+          "titleNView": false
498
+        }
499
+      }
500
+    }, {
501
+      "path": "pages/quiltWashing/quiltWashingSendSignIn/quiltWashingSendSignIn",
502
+      "style": {
503
+        "h5": {
504
+          "titleNView": false
505
+        }
506
+      }
494 507
     }
495 508
   ],
496 509
   "globalStyle": {

+ 193 - 0
pages/quiltWashing/quiltWashingException/quiltWashingException.vue

@@ -0,0 +1,193 @@
1
+<template>
2
+  <view class="Scanning_Result">
3
+    <view class="Scanning_top">
4
+      <view class="Scanning_top_icon">
5
+        <text class="cubeic-close icon_transport transport-chaoshi"></text>
6
+        <view class="text1"> {{queryObj.clothesTypeName}}-异常详情 </view>
7
+      </view>
8
+    </view>
9
+
10
+    <view class="Scanning_cont">
11
+      <view class="Scanning_cont_list">
12
+        <scroll-view scroll-y="true" class="Scanning_cont_list_scroll">
13
+          <view class="Scanning_cont_list_item" v-for="(item, j) in dataList" :key="item.id">
14
+            <view class="row">
15
+              <view class="row_item">
16
+                调整数量:<text class="red">{{item.changeNum}}</text>
17
+              </view>
18
+              <view class="row_item">
19
+                原因:<text class="red">{{item.clothesExceptionRe ? item.clothesExceptionRe.name : ''}}</text>
20
+              </view>
21
+            </view>
22
+            <view class="row">
23
+              <view class="row_item">
24
+                备注:{{item.remarks}}
25
+              </view>
26
+            </view>
27
+            <view class="row">
28
+              <view class="row_item">
29
+                调整人:{{item.changerDTO ? item.changerDTO.name : ''}}
30
+              </view>
31
+              <view class="row_item">
32
+                调整时间:{{item.changeTime | formatDate('yyyy-MM-dd hh:mm:ss')}}
33
+              </view>
34
+            </view>
35
+          </view>
36
+        </scroll-view>
37
+      </view>
38
+    </view>
39
+
40
+    <view class="foot_btn">
41
+      <view class="btn" @click="goBack()"> 返回 </view>
42
+    </view>
43
+  </view>
44
+</template>
45
+<script>
46
+  import {
47
+    get,
48
+    post,
49
+    SM,
50
+    webHandle
51
+  } from "../../../http/http.js";
52
+  export default {
53
+    data() {
54
+      return {
55
+        hosId: uni.getStorageSync('userData').user.currentHospital.id,
56
+        queryObj: {}, //路由传递过来的数据
57
+        dataList: [],
58
+        // 弹窗model
59
+        models1: {
60
+          disjunctor: false,
61
+        },
62
+      };
63
+    },
64
+    methods: {
65
+      goBack(){
66
+        uni.navigateBack();
67
+      },
68
+      getInfo(){
69
+        uni.showLoading({
70
+          title: "加载中",
71
+          mask: true,
72
+        });
73
+        post("/simple/data/fetchDataList/clothesException", {
74
+            "idx": 0,
75
+            "sum": 9999,
76
+            "clothesException": {
77
+                "hosId": this.hosId,
78
+                "batchId": this.queryObj.batchId,
79
+                "clothesType": {
80
+                  id: this.queryObj.clothesTypeId,
81
+                },
82
+                "clothesDept": this.queryObj.relatedDept,
83
+            }
84
+        }).then((result) => {
85
+          uni.hideLoading();
86
+          if (result.status == 200) {
87
+            this.dataList = result.list || [];
88
+          } else {
89
+            uni.showToast({
90
+              icon: "none",
91
+              title: result.msg || "接口获取数据失败!",
92
+            });
93
+          }
94
+        });
95
+      },
96
+    },
97
+    onLoad(options) {
98
+      console.log(options, "result");
99
+      this.queryObj = options;
100
+      this.getInfo();
101
+      // #ifdef APP-PLUS
102
+      webHandle("no", "app");
103
+      // #endif
104
+      // #ifdef H5
105
+      webHandle("no", "wx");
106
+      // #endif
107
+    },
108
+  };
109
+</script>
110
+<style lang="less" scoped>
111
+  .Scanning_Result {
112
+    height: 100vh;
113
+    display: flex;
114
+    flex-direction: column;
115
+    background-color: #fff;
116
+    .Scanning_top {
117
+      flex-shrink: 0;
118
+      .Scanning_top_icon {
119
+        padding-top: 26rpx;
120
+        display: flex;
121
+        justify-content: center;
122
+        align-items: center;
123
+
124
+        .cubeic-ok {
125
+          font-size: 140rpx;
126
+          color: #35b34a;
127
+        }
128
+        
129
+        .cubeic-close {
130
+          font-size: 48rpx;
131
+          color: #ff3b53;
132
+        }
133
+
134
+        .text1 {
135
+          font-size: 48rpx;
136
+          font-weight: bold;
137
+        }
138
+      }
139
+    }
140
+
141
+    .Scanning_cont {
142
+      flex: 1;
143
+      min-height: 0;
144
+      display: flex;
145
+      flex-direction: column;
146
+      width: 710rpx;
147
+      margin: 0 20rpx;
148
+      
149
+      .Scanning_cont_list{
150
+        flex: 1;
151
+        min-height: 0;
152
+        display: flex;
153
+        flex-direction: column;
154
+        .Scanning_cont_list_scroll{
155
+          flex: 1;
156
+          min-height: 0;
157
+        }
158
+        .Scanning_cont_list_item{
159
+          margin-top: 15rpx;
160
+          padding: 30rpx;
161
+          font-size: 28rpx;
162
+          background-color: #FAFBFD;
163
+          .row{
164
+            display: flex;
165
+            justify-content: space-between;
166
+            margin-top: 20rpx;
167
+          }
168
+        }
169
+      }
170
+    }
171
+
172
+    .foot_btn {
173
+      flex-shrink: 0;
174
+      line-height: 66rpx;
175
+      display: flex;
176
+      justify-content: center;
177
+
178
+      .btn {
179
+        height: 66rpx;
180
+        flex: 1;
181
+        margin-right: 1%;
182
+        background-image: linear-gradient(to right, #72c172, #3bb197);
183
+        color: #fff;
184
+        border-radius: 8rpx;
185
+        font-size: 28rpx;
186
+        text-align: center;
187
+        &:last-of-type{
188
+          margin-right: 0;
189
+        }
190
+      }
191
+    }
192
+  }
193
+</style>

+ 10 - 10
pages/quiltWashing/quiltWashingGetEndCheck/quiltWashingGetEndCheck.vue

@@ -18,7 +18,7 @@
18 18
           </view>
19 19
           <view class="value">
20 20
             <view>
21
-              被服种类数量<text class="red">({{total}})</text>
21
+              被服总数<text class="red">({{total}})</text>
22 22
             </view>
23 23
           </view>
24 24
         </view>
@@ -178,13 +178,13 @@
178 178
         align-items: center;
179 179
 
180 180
         .cubeic-ok {
181
-          font-size: 128rpx;
181
+          font-size: 140rpx;
182 182
           color: #35b34a;
183 183
         }
184 184
 
185 185
         .text1 {
186 186
           margin-top: 30rpx;
187
-          font-size: 38rpx;
187
+          font-size: 48rpx;
188 188
           font-weight: bold;
189 189
         }
190 190
       }
@@ -213,7 +213,7 @@
213 213
         border-bottom: 1rpx solid #EEEEEE;
214 214
         .Scanning_cont_head_item{
215 215
           flex: 1;
216
-          font-size: 24rpx;
216
+          font-size: 28rpx;
217 217
           font-weight: bold;
218 218
           display: flex;
219 219
           justify-content: center;
@@ -262,17 +262,17 @@
262 262
           height: 70rpx;
263 263
           display: flex;
264 264
           align-items: center;
265
-          font-size: 23rpx;
265
+          font-size: 28rpx;
266 266
           border-bottom: 1rpx solid #CCCCCC;
267 267
           &.Scanning_cont_list_head{
268 268
             font-weight: bold;
269
-            font-size: 24rpx;
269
+            font-size: 28rpx;
270 270
             border-bottom: none;
271 271
             flex-shrink: 0;
272 272
           }
273 273
           .name,
274 274
           .value{
275
-            padding: 0 67rpx;
275
+            padding: 0 40rpx;
276 276
             flex: 1;
277 277
           }
278 278
           .value {
@@ -287,18 +287,18 @@
287 287
 
288 288
     .foot_btn {
289 289
       flex-shrink: 0;
290
-      line-height: 64rpx;
290
+      line-height: 66rpx;
291 291
       display: flex;
292 292
       justify-content: center;
293 293
 
294 294
       .btn {
295
-        height: 64rpx;
295
+        height: 66rpx;
296 296
         flex: 1;
297 297
         margin-right: 1%;
298 298
         background-image: linear-gradient(to right, #72c172, #3bb197);
299 299
         color: #fff;
300 300
         border-radius: 8rpx;
301
-        font-size: 24rpx;
301
+        font-size: 28rpx;
302 302
         text-align: center;
303 303
         &:last-of-type{
304 304
           margin-right: 0;

+ 12 - 12
pages/quiltWashing/quiltWashingGetSignIn/quiltWashingGetSignIn.vue

@@ -20,7 +20,7 @@
20 20
       <view class="Scanning_cont_list">
21 21
         <view class="Scanning_cont_list_item Scanning_cont_list_head">
22 22
           <view class="name">
23
-            被服
23
+            被服类
24 24
           </view>
25 25
           <view class="value">
26 26
             <view>
@@ -114,7 +114,7 @@
114 114
           }else{
115 115
             uni.showToast({
116 116
               icon: "none",
117
-              title: result.msg || "接口获取数据失败!",
117
+              title: res.msg || "接口获取数据失败!",
118 118
             });
119 119
           }
120 120
         });
@@ -130,7 +130,7 @@
130 130
         this.models1 = {
131 131
           disjunctor: true,
132 132
           title: "提示",
133
-          content: `${this.queryObj.startDeptName}已与${this.queryObj.name}交接${num}件被服,交接人为${this.queryObj.name},您确认交接吗?`,
133
+          content: `<strong class="red">${this.queryObj.startDeptName}</strong>已与<strong class="red">${this.queryObj.name}</strong>交接<strong class="red">${num}件</strong>被服,交接人为<strong class="red">${this.queryObj.name}</strong>,您确认交接吗?`,
134 134
           icon: "warn",
135 135
           operate: {
136 136
             ok: "确定",
@@ -219,12 +219,12 @@
219 219
         align-items: center;
220 220
 
221 221
         .cubeic-ok {
222
-          font-size: 48rpx;
222
+          font-size: 58rpx;
223 223
           color: #35b34a;
224 224
         }
225 225
 
226 226
         .text1 {
227
-          font-size: 38rpx;
227
+          font-size: 48rpx;
228 228
           font-weight: bold;
229 229
         }
230 230
       }
@@ -253,7 +253,7 @@
253 253
         border-bottom: 1rpx solid #EEEEEE;
254 254
         .Scanning_cont_head_item{
255 255
           flex: 1;
256
-          font-size: 24rpx;
256
+          font-size: 28rpx;
257 257
           font-weight: bold;
258 258
           display: flex;
259 259
           justify-content: center;
@@ -302,17 +302,17 @@
302 302
           height: 70rpx;
303 303
           display: flex;
304 304
           align-items: center;
305
-          font-size: 23rpx;
305
+          font-size: 28rpx;
306 306
           border-bottom: 1rpx solid #CCCCCC;
307 307
           &.Scanning_cont_list_head{
308 308
             font-weight: bold;
309
-            font-size: 24rpx;
309
+            font-size: 28rpx;
310 310
             border-bottom: none;
311 311
             flex-shrink: 0;
312 312
           }
313 313
           .name,
314 314
           .value{
315
-            padding: 0 67rpx;
315
+            padding: 0 40rpx;
316 316
             flex: 1;
317 317
           }
318 318
           .value {
@@ -327,18 +327,18 @@
327 327
 
328 328
     .foot_btn {
329 329
       flex-shrink: 0;
330
-      line-height: 64rpx;
330
+      line-height: 66rpx;
331 331
       display: flex;
332 332
       justify-content: center;
333 333
 
334 334
       .btn {
335
-        height: 64rpx;
335
+        height: 66rpx;
336 336
         flex: 1;
337 337
         margin-right: 1%;
338 338
         background-image: linear-gradient(to right, #72c172, #3bb197);
339 339
         color: #fff;
340 340
         border-radius: 8rpx;
341
-        font-size: 24rpx;
341
+        font-size: 28rpx;
342 342
         text-align: center;
343 343
         &:last-of-type{
344 344
           margin-right: 0;

+ 333 - 0
pages/quiltWashing/quiltWashingSendSignIn/quiltWashingSendSignIn.vue

@@ -0,0 +1,333 @@
1
+<template>
2
+  <view class="Scanning_Result">
3
+    <view class="Scanning_top">
4
+      <view class="Scanning_top_icon">
5
+        <text class="cubeic-ok icon_transport transport-duigou"></text>
6
+        <view class="text1"> 签到成功 </view>
7
+      </view>
8
+      <view class="Scanning_top_text">
9
+        您已到达{{queryObj.endDeptName}},请核对填写以下物品数量
10
+      </view>
11
+    </view>
12
+
13
+    <view class="Scanning_cont">
14
+      <view class="Scanning_cont_head">
15
+        <view class="Scanning_cont_head_item" :class="{active: parentIndex == i}" v-for="(item, i) in dataList" :key="item.id" @click="parentIndex = i">
16
+          {{item.name}}
17
+        </view>
18
+      </view>
19
+      
20
+      <view class="Scanning_cont_list">
21
+        <view class="Scanning_cont_list_item Scanning_cont_list_head">
22
+          <view class="name">
23
+            被服类型
24
+          </view>
25
+          <view class="value">
26
+            <view>
27
+              回收数量
28
+            </view>
29
+          </view>
30
+          <view class="value">
31
+            <view>
32
+              送回数量
33
+            </view>
34
+          </view>
35
+        </view>
36
+        <scroll-view scroll-y="true" class="Scanning_cont_list_scroll" v-if="dataList[parentIndex]">
37
+          <view class="Scanning_cont_list_item" @click="clickRow(item)" v-for="(item, j) in dataList[parentIndex].children" :key="item.id" :class="{red: item.clothesWashingDTO.exception == 1}">
38
+            <view class="name">
39
+              {{item.name}}
40
+            </view>
41
+            <view class="value">
42
+              <view>
43
+                {{item.clothesWashingDTO ? item.clothesWashingDTO.recyclingNum : ''}}
44
+              </view>
45
+            </view>
46
+            <view class="value">
47
+              <view>
48
+                {{item.clothesWashingDTO ? item.clothesWashingDTO.sendBackNum : ''}}
49
+              </view>
50
+            </view>
51
+          </view>
52
+        </scroll-view>
53
+      </view>
54
+    </view>
55
+
56
+    <view class="foot_btn">
57
+      <view class="btn" @click="onClick()"> 核对完成 </view>
58
+    </view>
59
+  </view>
60
+</template>
61
+<script>
62
+  import {
63
+    get,
64
+    post,
65
+    SM,
66
+    webHandle
67
+  } from "../../../http/http.js";
68
+  export default {
69
+    data() {
70
+      return {
71
+        SMFlag: true,
72
+        hosId: uni.getStorageSync('userData').user.currentHospital.id,
73
+        queryObj: {}, //路由传递过来的数据
74
+        dataList: [],
75
+        parentIndex: 0,
76
+      };
77
+    },
78
+    methods: {
79
+      onClick(){
80
+        this.quiltScan();
81
+      },
82
+      // 扫描工牌-被服洗涤
83
+      quiltScan() {
84
+        if (!this.SMFlag) {
85
+          return;
86
+        }
87
+        this.SMFlag = false;
88
+        SM().then((content) => {
89
+          uni.showLoading({
90
+            title: "加载中",
91
+            mask: true,
92
+          });
93
+          //检验二维码的有效性(扫码前必须验证)
94
+          post("/dept/scanning", {
95
+              content,
96
+            })
97
+            .then((result) => {
98
+              let accountCode = result.code;
99
+              this.SMFlag = true;
100
+              // 200检测通过,201没有有效期也通过。
101
+              if (result.state == 200 || result.state == 201) {
102
+                let data = {
103
+                  code: accountCode, //二维码
104
+                };
105
+                post("/transflow/checkComplete", { 
106
+                    type: 'clothingSend',
107
+                    orderId: this.queryObj.orderId,
108
+                    code: accountCode,
109
+                  })
110
+                  .then((res) => {
111
+                    uni.hideLoading();
112
+                    if (res.data && res.data.state == 200) {
113
+                      uni.showModal({
114
+                        title: "提示",
115
+                        content: "操作成功",
116
+                        showCancel: false,
117
+                        success: (result) => {
118
+                          if (result.confirm) {
119
+                            console.log("用户点击确定");
120
+                            uni.navigateTo({
121
+                              url: `../../receiptpage/receiptpage`,
122
+                            });
123
+                          }
124
+                        },
125
+                      });
126
+                    } else {
127
+                      uni.navigateTo({
128
+                        url: `../../scanning_Result/scanning_Result?status=${res.data ? res.data.state : ''}&msg=${res.data ? res.data.msg : ''}&qrcode=${accountCode}`,
129
+                      });
130
+                    }
131
+                  });
132
+              } else {
133
+                uni.hideLoading();
134
+                uni.showToast({
135
+                  icon: "none",
136
+                  title: result.info || "接口获取数据失败!",
137
+                });
138
+              }
139
+            })
140
+        }).catch(err => {
141
+          this.SMFlag = true;
142
+        });
143
+      },
144
+      clickRow(data){
145
+        uni.navigateTo({
146
+          url: `../quiltWashingException/quiltWashingException?clothesTypeId=${data.id}&clothesTypeName=${data.name}&batchId=${data.clothesWashingDTO.batchId}&relatedDept=${data.clothesWashingDTO.relatedDept}`,
147
+        });
148
+      },
149
+      getInfo(){
150
+        uni.showLoading({
151
+          title: "加载中",
152
+          mask: true,
153
+        });
154
+        post("/transflow/scanInfo", {
155
+          type: 'clothingSend',
156
+          hosId: this.hosId,
157
+          endDeptId: this.queryObj.endDeptId,
158
+          orderId: this.queryObj.orderId,
159
+          id: 0,
160
+        }).then((result) => {
161
+          uni.hideLoading();
162
+          if (result.state == 200) {
163
+            let dataList = result.data.treeList || [];
164
+            dataList.forEach(v => {
165
+              v.children = v.children.sort((a, b) => b.clothesWashingDTO.exception - a.clothesWashingDTO.exception)
166
+            })
167
+            console.log(dataList);
168
+            this.dataList = dataList.slice(0, 3);
169
+          } else {
170
+            uni.showToast({
171
+              icon: "none",
172
+              title: result.msg || "接口获取数据失败!",
173
+            });
174
+          }
175
+        });
176
+      },
177
+    },
178
+    onLoad(options) {
179
+      console.log(options, "result");
180
+      this.queryObj = options;
181
+      this.getInfo();
182
+      // #ifdef APP-PLUS
183
+      webHandle("no", "app");
184
+      // #endif
185
+      // #ifdef H5
186
+      webHandle("no", "wx");
187
+      // #endif
188
+    },
189
+  };
190
+</script>
191
+<style lang="less" scoped>
192
+  .Scanning_Result {
193
+    height: 100vh;
194
+    display: flex;
195
+    flex-direction: column;
196
+    background-color: #fafbfd;
197
+    .Scanning_top {
198
+      flex-shrink: 0;
199
+      .Scanning_top_icon {
200
+        padding-top: 26rpx;
201
+        display: flex;
202
+        justify-content: center;
203
+        align-items: center;
204
+
205
+        .cubeic-ok {
206
+          font-size: 58rpx;
207
+          color: #35b34a;
208
+        }
209
+
210
+        .text1 {
211
+          font-size: 48rpx;
212
+          font-weight: bold;
213
+        }
214
+      }
215
+      .Scanning_top_text{
216
+        text-align: center;
217
+        font-size: 28rpx;
218
+        font-weight: bold;
219
+        padding: 8rpx 0 23rpx 0;
220
+      }
221
+    }
222
+
223
+    .Scanning_cont {
224
+      flex: 1;
225
+      min-height: 0;
226
+      display: flex;
227
+      flex-direction: column;
228
+      width: 710rpx;
229
+      margin: 0 20rpx;
230
+      background-color: #fff;
231
+      
232
+      .Scanning_cont_head{
233
+        flex-shrink: 0;
234
+        height: 78rpx;
235
+        display: flex;
236
+        border-top: 1rpx solid #EEEEEE;
237
+        border-bottom: 1rpx solid #EEEEEE;
238
+        .Scanning_cont_head_item{
239
+          flex: 1;
240
+          font-size: 28rpx;
241
+          font-weight: bold;
242
+          display: flex;
243
+          justify-content: center;
244
+          align-items: center;
245
+          position: relative;
246
+          &.active{
247
+            color: #49B856;
248
+            &::before{
249
+              content: '';
250
+              width: 70rpx;
251
+              height: 10rpx;
252
+              background-color: #49B856;
253
+              position: absolute;
254
+              left: 50%;
255
+              bottom: 0;
256
+              transform: translateX(-50%);
257
+              border-radius: 6rpx;
258
+            }
259
+          }
260
+          &::after{
261
+            content: '';
262
+            width: 2rpx;
263
+            height: 44rpx;
264
+            background-color: #D1D1D1;
265
+            position: absolute;
266
+            right: 0;
267
+            top: 50%;
268
+            transform: translateY(-50%);
269
+          }
270
+          &:last-of-type::after{
271
+            opacity: 0;
272
+          }
273
+        }
274
+      }
275
+      
276
+      .Scanning_cont_list{
277
+        flex: 1;
278
+        min-height: 0;
279
+        display: flex;
280
+        flex-direction: column;
281
+        .Scanning_cont_list_scroll{
282
+          flex: 1;
283
+          min-height: 0;
284
+        }
285
+        .Scanning_cont_list_item{
286
+          height: 70rpx;
287
+          display: flex;
288
+          align-items: center;
289
+          font-size: 28rpx;
290
+          border-bottom: 1rpx solid #CCCCCC;
291
+          &.Scanning_cont_list_head{
292
+            font-weight: bold;
293
+            font-size: 28rpx;
294
+            border-bottom: none;
295
+            flex-shrink: 0;
296
+          }
297
+          .name,
298
+          .value{
299
+            padding: 0 10rpx;
300
+            flex: 1;
301
+          }
302
+          .value {
303
+            view{
304
+              width: 4em;
305
+              text-align: center;
306
+            }
307
+          }
308
+        }
309
+      }
310
+    }
311
+
312
+    .foot_btn {
313
+      flex-shrink: 0;
314
+      line-height: 66rpx;
315
+      display: flex;
316
+      justify-content: center;
317
+
318
+      .btn {
319
+        height: 66rpx;
320
+        flex: 1;
321
+        margin-right: 1%;
322
+        background-image: linear-gradient(to right, #72c172, #3bb197);
323
+        color: #fff;
324
+        border-radius: 8rpx;
325
+        font-size: 28rpx;
326
+        text-align: center;
327
+        &:last-of-type{
328
+          margin-right: 0;
329
+        }
330
+      }
331
+    }
332
+  }
333
+</style>

+ 22 - 2
pages/receiptpage/receiptpage.vue

@@ -244,6 +244,16 @@
244 244
               <!-- 待送达 -->
245 245
               <text class="red" v-if="item.gdState.value == 5">请扫描终点科室码,并扫描患者腕带</text>
246 246
             </view>
247
+            <view v-if="item.taskType.associationType.value == 'ordinary' && item.taskType.ordinaryField.value == 'clothingGet'">
248
+              <!-- 待送达 -->
249
+              <text class="red" v-if="item.gdState.value == 5">请扫描终点科室二维码</text>
250
+            </view>
251
+            <view v-if="item.taskType.associationType.value == 'ordinary' && item.taskType.ordinaryField.value == 'clothingSend'">
252
+              <!-- 待到达 -->
253
+              <text class="red" v-if="item.gdState.value == 4">请扫描起点科室二维码</text>
254
+              <!-- 待送达 -->
255
+              <text class="red" v-if="item.gdState.value == 5">请扫描终点科室二维码</text>
256
+            </view>
247 257
             <view v-else-if="item.taskType.associationType.value == 'other'">
248 258
               <!-- 待到达 -->
249 259
               <text class="red" v-if="item.gdState.value == 4 && item.taskType.carryingCourses[0].checkoutMethod.value == 1">可通过扫描科室码或者拍照进行签到</text>
@@ -286,6 +296,11 @@
286 296
               <view class="page_item_btn" @click="goTobloodEnd(item)" hover-class="seimin-btn-hover">送达交接</view>
287 297
             </view>
288 298
             
299
+            <!-- 如果是万能交接-被服洗涤送回 -->
300
+            <view class="page_item_btn" v-if="item.taskType.associationType.value == 'ordinary' && item.taskType.ordinaryField.value == 'clothingSend' && item.gdState.value == 5" hover-class="seimin-btn-hover">
301
+              <view class="page_item_btn" @click="goToWashingEnd(item)" hover-class="seimin-btn-hover">核对被服</view>
302
+            </view>
303
+            
289 304
             <view class="page_item_btn" v-if="selectedLabelSlots == '待接单'" @click="showAlerts(item)" hover-class="seimin-btn-hover">接单</view>
290 305
           </view>
291 306
           <view class="L-l"></view>
@@ -541,6 +556,11 @@
541 556
           url: `../endOrderSignBlood/endOrderSignBlood?orderIds=${order.id}&deptName=${order.endDepts[0].dept}&deptId=${order.endDepts[0].id}&type=delivery`,
542 557
         });
543 558
       },
559
+      goToWashingEnd(order){
560
+        uni.navigateTo({
561
+          url: `../quiltWashing/quiltWashingSendSignIn/quiltWashingSendSignIn?orderId=${order.id}&endDeptId=${order.endDepts[0].id}&endDeptName=${order.endDepts[0].dept}`,
562
+        });
563
+      },
544 564
       async initList(){
545 565
         uni.showLoading({
546 566
           title: "加载中",
@@ -1475,7 +1495,7 @@
1475 1495
           hosId: this.hosId,
1476 1496
         }).then((res) => {
1477 1497
           uni.hideLoading();
1478
-          if (res.state == 200) {
1498
+          if (res.data && res.data.state == 200) {
1479 1499
             uni.showModal({
1480 1500
               title: "提示",
1481 1501
               content: "建单成功",
@@ -1492,7 +1512,7 @@
1492 1512
           }else{
1493 1513
             uni.showToast({
1494 1514
               icon: "none",
1495
-              title: result.msg || "接口获取数据失败!",
1515
+              title: res.data ? res.data.msg : "接口获取数据失败!",
1496 1516
             });
1497 1517
           }
1498 1518
         });

+ 23 - 3
pages/scanning_all/scanning_all.vue

@@ -493,9 +493,29 @@
493 493
               uni.navigateTo({
494 494
                 url: `../quiltWashing/quiltWashingGetEndCheck/quiltWashingGetEndCheck?orderIds=${this.userId.ids.toString()}&endDeptName=${this.deptName}`
495 495
               })
496
-            }else if (this.tabType == "clothingSend") {
497
-              // todo
498
-            }else if (
496
+            } else if (this.tabType == "clothingSend") {
497
+              let postData = {
498
+                ids: this.userId.ids,
499
+                type: 'clothingSend',
500
+              };
501
+              uni.showLoading({
502
+                title: "加载中",
503
+                mask: true,
504
+              });
505
+              post("/transflow/bigScan", postData).then((res) => {
506
+                uni.hideLoading();
507
+                if (res.status == 200) {
508
+                  uni.navigateTo({
509
+                    url: "../receiptpage/receiptpage",
510
+                  });
511
+                } else {
512
+                  uni.showToast({
513
+                    icon: "none",
514
+                    title: res.msg || "接口获取数据失败!",
515
+                  });
516
+                }
517
+              });
518
+            } else if (
499 519
               this.tabType == "drugsBag" ||
500 520
               this.tabType == "jPBag" ||
501 521
               this.tabType == "other" ||