浏览代码

送回交接和送回发起

seimin 1 年之前
父节点
当前提交
0d84b8f3ef

+ 21 - 0
pages.json

@@ -484,6 +484,27 @@
484 484
         }
485 485
       }
486 486
     }, {
487
+      "path": "pages/quiltWashing/quiltWashingSendSelectDept/quiltWashingSendSelectDept",
488
+      "style": {
489
+        "h5": {
490
+          "titleNView": false
491
+        }
492
+      }
493
+    }, {
494
+      "path": "pages/quiltWashing/quiltWashingSendHandover/quiltWashingSendHandover",
495
+      "style": {
496
+        "h5": {
497
+          "titleNView": false
498
+        }
499
+      }
500
+    }, {
501
+      "path": "pages/quiltWashing/quiltWashingSendsendHandover/quiltWashingSendsendHandover",
502
+      "style": {
503
+        "h5": {
504
+          "titleNView": false
505
+        }
506
+      }
507
+    }, {
487 508
       "path": "pages/quiltWashing/quiltWashingGetEndCheck/quiltWashingGetEndCheck",
488 509
       "style": {
489 510
         "h5": {

+ 360 - 0
pages/quiltWashing/quiltWashingSendHandover/quiltWashingSendHandover.vue

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

+ 251 - 0
pages/quiltWashing/quiltWashingSendSelectDept/quiltWashingSendSelectDept.vue

@@ -0,0 +1,251 @@
1
+<template>
2
+  <view class="Scanning_Result">
3
+    <view class="Scanning_top">
4
+      <view class="Scanning_top_icon">
5
+        <view class="text1"> 科室选择 </view>
6
+      </view>
7
+      <view class="Scanning_top_text">
8
+        发起送回需要指定送回科室,请您点击以下科室
9
+      </view>
10
+    </view>
11
+
12
+    <view class="Scanning_cont">
13
+      <view class="Scanning_cont_list">
14
+        <scroll-view scroll-y="true" class="Scanning_cont_list_scroll" v-if="true">
15
+          <view class="Scanning_cont_list_item" @click="clickRow(item)" v-for="item in clothingBackDepts" :key="item.id">
16
+            <view class="name">
17
+              {{item.dept}}
18
+            </view>
19
+          </view>
20
+        </scroll-view>
21
+      </view>
22
+    </view>
23
+
24
+    <view class="foot_btn">
25
+      <view class="btn" @click="goBack()"> 返回 </view>
26
+    </view>
27
+  </view>
28
+</template>
29
+<script>
30
+  import {
31
+    get,
32
+    post,
33
+    SM,
34
+    webHandle
35
+  } from "../../../http/http.js";
36
+  export default {
37
+    data() {
38
+      return {
39
+        hosId: uni.getStorageSync('userData').user.currentHospital.id,
40
+        queryObj: {}, //路由传递过来的数据
41
+        clothingBackDepts: [],
42
+      };
43
+    },
44
+    methods: {
45
+      goBack(){
46
+        uni.navigateBack();
47
+      },
48
+      clickRow(data){
49
+        uni.navigateTo({
50
+          url: `/pages/quiltWashing/quiltWashingSendHandover/quiltWashingSendHandover?endDeptName=${data.dept}&endDeptId=${data.id}`,
51
+        });
52
+      },
53
+      getInfo(){
54
+        uni.showLoading({
55
+          title: "加载中",
56
+          mask: true,
57
+        });
58
+        post("/simple/data/fetchDataList/taskTypeConfig", {
59
+            "idx": 0,
60
+            "sum": 1,
61
+            "taskTypeConfig": {
62
+                "taskTypeDTO": {
63
+                    "hosId": {
64
+                        "id": this.hosId
65
+                    },
66
+                    "ordinaryField": {
67
+                        "key": "ordinary_field",
68
+                        "value": "clothingSend"
69
+                    }
70
+                }
71
+            }
72
+        }).then((result) => {
73
+          uni.hideLoading();
74
+          if (result.status == 200) {
75
+            this.clothingBackDepts = result.list[0].clothingBackDepts || [];
76
+          } else {
77
+            uni.showToast({
78
+              icon: "none",
79
+              title: result.msg || "接口获取数据失败!",
80
+            });
81
+          }
82
+        });
83
+      },
84
+    },
85
+    onLoad(options) {
86
+      console.log(options, "result");
87
+      this.queryObj = options;
88
+      this.getInfo();
89
+      // #ifdef APP-PLUS
90
+      webHandle("no", "app");
91
+      // #endif
92
+      // #ifdef H5
93
+      webHandle("no", "wx");
94
+      // #endif
95
+    },
96
+  };
97
+</script>
98
+<style lang="less" scoped>
99
+  .Scanning_Result {
100
+    height: 100vh;
101
+    display: flex;
102
+    flex-direction: column;
103
+    background-color: #fff;
104
+    .Scanning_top {
105
+      flex-shrink: 0;
106
+      .Scanning_top_icon {
107
+        padding-top: 26rpx;
108
+        display: flex;
109
+        justify-content: center;
110
+        align-items: center;
111
+
112
+        .cubeic-ok {
113
+          font-size: 58rpx;
114
+          color: #35b34a;
115
+        }
116
+
117
+        .text1 {
118
+          font-size: 40rpx;
119
+          font-weight: bold;
120
+        }
121
+      }
122
+      .Scanning_top_text{
123
+        text-align: center;
124
+        font-size: 30rpx;
125
+        font-weight: bold;
126
+        padding: 8rpx 0 23rpx 0;
127
+      }
128
+    }
129
+
130
+    .Scanning_cont {
131
+      flex: 1;
132
+      min-height: 0;
133
+      display: flex;
134
+      flex-direction: column;
135
+      margin: 0 45rpx;
136
+
137
+      .Scanning_cont_head{
138
+        flex-shrink: 0;
139
+        height: 78rpx;
140
+        display: flex;
141
+        border-top: 1rpx solid #EEEEEE;
142
+        border-bottom: 1rpx solid #EEEEEE;
143
+        .Scanning_cont_head_item{
144
+          flex: 1;
145
+          font-size: 32rpx;
146
+          font-weight: bold;
147
+          display: flex;
148
+          justify-content: center;
149
+          align-items: center;
150
+          position: relative;
151
+          &.active{
152
+            color: #49B856;
153
+            &::before{
154
+              content: '';
155
+              width: 70rpx;
156
+              height: 10rpx;
157
+              background-color: #49B856;
158
+              position: absolute;
159
+              left: 50%;
160
+              bottom: 0;
161
+              transform: translateX(-50%);
162
+              border-radius: 6rpx;
163
+            }
164
+          }
165
+          &::after{
166
+            content: '';
167
+            width: 2rpx;
168
+            height: 44rpx;
169
+            background-color: #D1D1D1;
170
+            position: absolute;
171
+            right: 0;
172
+            top: 50%;
173
+            transform: translateY(-50%);
174
+          }
175
+          &:last-of-type::after{
176
+            opacity: 0;
177
+          }
178
+        }
179
+      }
180
+
181
+      .Scanning_cont_list{
182
+        flex: 1;
183
+        min-height: 0;
184
+        display: flex;
185
+        flex-direction: column;
186
+        .Scanning_cont_list_scroll{
187
+          flex: 1;
188
+          min-height: 0;
189
+          border: 1rpx solid #E9E9E9;
190
+        }
191
+        .Scanning_cont_list_item{
192
+          height: 100rpx;
193
+          display: flex;
194
+          align-items: center;
195
+          font-size: 30rpx;
196
+          border-bottom: 2rpx solid #D3D3D3;
197
+          border-top: none;
198
+          background: #F3FAF7;
199
+          &:last-of-type{
200
+            border-bottom: 1rpx solid #E9E9E9;
201
+          }
202
+          &.Scanning_cont_list_head{
203
+            font-weight: bold;
204
+            font-size: 28rpx;
205
+            border-top: 1rpx solid #272727;
206
+            flex-shrink: 0;
207
+          }
208
+          .name,
209
+          .value{
210
+            padding: 0 45rpx;
211
+            flex: 1;
212
+            display: flex;
213
+            justify-content: center;
214
+            align-items: center;
215
+            height: 100%;
216
+            // border-right: 1rpx solid #272727;
217
+          }
218
+          .value {
219
+            view{
220
+              width: 4em;
221
+              text-align: center;
222
+            }
223
+          }
224
+        }
225
+      }
226
+    }
227
+
228
+    .foot_btn {
229
+      margin: 57rpx 30rpx 0;
230
+      flex-shrink: 0;
231
+      line-height: 88rpx;
232
+      display: flex;
233
+      justify-content: center;
234
+
235
+      .btn {
236
+        height: 88rpx;
237
+        flex: 1;
238
+        margin-right: 1%;
239
+        background-image: linear-gradient(to right, #72c172, #3bb197);
240
+        color: #fff;
241
+        border-radius: 8rpx;
242
+        font-size: 34rpx;
243
+        font-weight: bold;
244
+        text-align: center;
245
+        &:last-of-type{
246
+          margin-right: 0;
247
+        }
248
+      }
249
+    }
250
+  }
251
+</style>

+ 346 - 0
pages/quiltWashing/quiltWashingSendsendHandover/quiltWashingSendsendHandover.vue

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

+ 52 - 2
pages/receiptpage/receiptpage.vue

@@ -1644,9 +1644,11 @@
1644 1644
         } else if (e.item.text === "被服回收") {
1645 1645
           this.quiltScan();
1646 1646
         } else if (e.item.text === "送回发起") {
1647
-          // this.showHandViewDrugsbag();
1647
+          uni.navigateTo({
1648
+            url: "/pages/quiltWashing/quiltWashingSendSelectDept/quiltWashingSendSelectDept",
1649
+          });
1648 1650
         } else if (e.item.text === "领取交接") {
1649
-          // this.showHandViewDrugsbag();
1651
+          this.quiltScan_send();
1650 1652
         }
1651 1653
       },
1652 1654
       //确定
@@ -1913,6 +1915,54 @@
1913 1915
           this.SMFlag = true;
1914 1916
         });
1915 1917
       },
1918
+      // 扫描工牌-被服洗涤
1919
+      quiltScan_send() {
1920
+        if (!this.SMFlag) {
1921
+          return;
1922
+        }
1923
+        this.SMFlag = false;
1924
+        SM().then((content) => {
1925
+          uni.showLoading({
1926
+            title: "加载中",
1927
+            mask: true,
1928
+          });
1929
+          //检验二维码的有效性(扫码前必须验证)
1930
+          post("/dept/scanning", {
1931
+              content,
1932
+            })
1933
+            .then((result) => {
1934
+              this.quiltCode = result.code;
1935
+              this.SMFlag = true;
1936
+              // 200检测通过,201没有有效期也通过。
1937
+              if (result.state == 200 || result.state == 201) {
1938
+                let data = {
1939
+                  code: this.quiltCode, //二维码
1940
+                };
1941
+                post("/transflow/extra", { type: 'clothingSend', receiveAndHandover: true, code: this.quiltCode }).then((res) => {
1942
+                  uni.hideLoading();
1943
+                  if (res.data && res.data.state == 200) {
1944
+                    uni.navigateTo({
1945
+                      url: `../quiltWashing/quiltWashingSendsendHandover/quiltWashingSendsendHandover?quiltCode=${this.quiltCode}`,
1946
+                    });
1947
+                  } else {
1948
+                    uni.navigateTo({
1949
+                      url: `../scanning_Result/scanning_Result?status=${res.data ? res.data.state : 500}&msg=${res.data ? res.data.msg : ''}&qrcode=${this.quiltCode}`,
1950
+                    });
1951
+                  }
1952
+                });
1953
+                
1954
+              } else {
1955
+                uni.hideLoading();
1956
+                uni.showToast({
1957
+                  icon: "none",
1958
+                  title: result.info || "接口获取数据失败!",
1959
+                });
1960
+              }
1961
+            })
1962
+        }).catch(err => {
1963
+          this.SMFlag = true;
1964
+        });
1965
+      },
1916 1966
       // 我的二维码
1917 1967
       myQrcodeHandler(){
1918 1968
         this.showMyQrcodeModel = {